diff options
author | Sebastien Zwickert <dilaroga@gmail.com> | 2012-08-14 11:45:29 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-08-14 12:47:27 +0200 |
commit | 3c37970637c0e3f1576cae58feed05497e383fc4 (patch) | |
tree | 2c75c5b770d105d5f1f1e487292171b8924e2fcd /libavcodec/version.h | |
parent | cfc680ab3982f5c9e4240a9bb69859a49f420113 (diff) | |
download | ffmpeg-3c37970637c0e3f1576cae58feed05497e383fc4.tar.gz |
vda: support synchronous decoding
Note that the symbols used to run the hardware decoder in asynchronous mode
have been marked deprecated and will be dropped at a future version bump.
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec/version.h')
-rw-r--r-- | libavcodec/version.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/version.h b/libavcodec/version.h index a57369a9c4..a5ff119806 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -79,5 +79,8 @@ #ifndef FF_API_CODEC_ID #define FF_API_CODEC_ID (LIBAVCODEC_VERSION_MAJOR < 55) #endif +#ifndef FF_API_VDA_ASYNC +#define FF_API_VDA_ASYNC (LIBAVCODEC_VERSION_MAJOR < 55) +#endif #endif /* AVCODEC_VERSION_H */ |