diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-05-20 22:37:59 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-07-10 17:07:12 +0200 |
commit | 9b83919f44eb1c87dc9431112944f0cccf6a599f (patch) | |
tree | d5dc047b684367ed16ec2124467bc4fc315dec04 /libavcodec/version.h | |
parent | a67c061e0f3b55ffcc96f336fc0998e44b86c8e4 (diff) | |
download | ffmpeg-9b83919f44eb1c87dc9431112944f0cccf6a599f.tar.gz |
ac3dec: add a drc_scale private option
Deprecate corresponding AVCodecContext option.
This is the first test of decoder private options.
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 f4a0ecd868..7e4c02d91e 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -71,5 +71,8 @@ #ifndef FF_API_AVCODEC_OPEN #define FF_API_AVCODEC_OPEN (LIBAVCODEC_VERSION_MAJOR < 54) #endif +#ifndef FF_API_DRC_SCALE +#define FF_API_DRC_SCALE (LIBAVCODEC_VERSION_MAJOR < 54) +#endif #endif /* AVCODEC_VERSION_H */ |