12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- From 37825bca4dc6e64e7f919e1cdf8654a352d7a69a Mon Sep 17 00:00:00 2001
- From: Thomas Guillem <thomas@gllm.fr>
- Date: Tue, 27 Mar 2018 16:52:35 +0200
- Subject: [PATCH 17/26] chromecast: use vt encoder from avcodec
- ---
- modules/stream_out/chromecast/cast.cpp | 13 +++++++++++++
- 1 file changed, 13 insertions(+)
- diff --git a/modules/stream_out/chromecast/cast.cpp b/modules/stream_out/chromecast/cast.cpp
- index 5d2aefc139..ab40a04c66 100644
- --- a/modules/stream_out/chromecast/cast.cpp
- +++ b/modules/stream_out/chromecast/cast.cpp
- @@ -950,12 +950,25 @@ static std::string GetVencX264Option( sout_stream_t * /* p_stream */,
- return ssout.str();
- }
-
- +#ifdef __APPLE__
- +static std::string GetVencAvcodecVTOption( sout_stream_t * /* p_stream */,
- + const video_format_t * p_vid,
- + int i_quality )
- +{
- + std::stringstream ssout;
- + ssout << "venc=avcodec{codec=h264_videotoolbox,options{realtime=1}}";
- + return ssout.str();
- +}
- +#endif
-
- static struct
- {
- vlc_fourcc_t fcc;
- std::string (*get_opt)( sout_stream_t *, const video_format_t *, int);
- } venc_opt_list[] = {
- +#ifdef __APPLE__
- + { .fcc = VLC_CODEC_H264, .get_opt = GetVencAvcodecVTOption },
- +#endif
- { .fcc = VLC_CODEC_H264, .get_opt = GetVencX264Option },
- { .fcc = VLC_CODEC_VP8, .get_opt = GetVencVPXOption },
- { .fcc = VLC_CODEC_H264, .get_opt = NULL },
- --
- 2.20.1
|