diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-01-19 16:09:52 -0500 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-01-21 15:33:19 -0500 |
commit | d43a165bda0eae95f4c7a168c7d13d94966c1a09 (patch) | |
tree | e37d7ad940c26cde2abad49eb6da63be107d98e0 /libavcodec/version.h | |
parent | f7168d7016f7d1034ec90223fa91a90711704e11 (diff) | |
download | ffmpeg-d43a165bda0eae95f4c7a168c7d13d94966c1a09.tar.gz |
imgconvert: Add the proper API guards to a deprecated function
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 303c112046..75d99bc441 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -48,6 +48,9 @@ * the public API and may change, break or disappear at any time. */ +#ifndef FF_API_GETCHROMA +#define FF_API_GETCHROMA (LIBAVCODEC_VERSION_MAJOR < 58) +#endif #ifndef FF_API_MISSING_SAMPLE #define FF_API_MISSING_SAMPLE (LIBAVCODEC_VERSION_MAJOR < 58) #endif |