diff options
author | Clément Bœsch <cboesch@gopro.com> | 2017-09-05 15:58:13 +0200 |
---|---|---|
committer | Clément Bœsch <cboesch@gopro.com> | 2017-10-23 11:56:15 +0200 |
commit | 2b320318273b74df6e1b712fb33544d6a1b26be1 (patch) | |
tree | 0cc5c6a275835ef0d56d5b94a26c2287fd347fc0 /libavcodec/videotoolbox.c | |
parent | 3605b312f65c4a009301d2d165e2db8d68063acb (diff) | |
download | ffmpeg-2b320318273b74df6e1b712fb33544d6a1b26be1.tar.gz |
lavc: drop VDA
Deprecated (aka removed) in OSX 10.11, and we have a replacement for it
(VideoToolbox).
Diffstat (limited to 'libavcodec/videotoolbox.c')
-rw-r--r-- | libavcodec/videotoolbox.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/libavcodec/videotoolbox.c b/libavcodec/videotoolbox.c index ec8b6d885c..3bdc1f7d1f 100644 --- a/libavcodec/videotoolbox.c +++ b/libavcodec/videotoolbox.c @@ -21,13 +21,9 @@ */ #include "config.h" -#if CONFIG_VIDEOTOOLBOX -# include "videotoolbox.h" -# include "libavutil/hwcontext_videotoolbox.h" -#else -# include "vda.h" -#endif -#include "vda_vt_internal.h" +#include "videotoolbox.h" +#include "libavutil/hwcontext_videotoolbox.h" +#include "vt_internal.h" #include "libavutil/avutil.h" #include "libavutil/hwcontext.h" #include "bytestream.h" |