diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-04-02 13:18:00 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-03 08:43:09 +0200 |
commit | 4a49d2d59cce5d10b8ac40ca0185ccf1f8deb99c (patch) | |
tree | 43618059cb7df6bcc183385236abf189f4c3d3a1 /libavcodec/avcodec.h | |
parent | bc154882e11f4a218cc8cfb10ae0b4cbc83b5f9f (diff) | |
download | ffmpeg-4a49d2d59cce5d10b8ac40ca0185ccf1f8deb99c.tar.gz |
lavc: mark mb_qmin/mb_qmax for removal on next major bump.
They've been unused and deprecated for about five years.
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 83e0e56555..eb355b0b33 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1818,19 +1818,21 @@ typedef struct AVCodecContext { */ uint64_t error[4]; +#if FF_API_MB_Q /** * minimum MB quantizer * - encoding: unused * - decoding: unused */ - int mb_qmin; + attribute_deprecated int mb_qmin; /** * maximum MB quantizer * - encoding: unused * - decoding: unused */ - int mb_qmax; + attribute_deprecated int mb_qmax; +#endif /** * motion estimation comparison function |