diff options
author | James Almer <jamrial@gmail.com> | 2021-01-24 20:45:18 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-01-25 19:31:04 -0300 |
commit | 56709ca8aaffed529b62b2afa4288325d64dae57 (patch) | |
tree | b086c1d2b87a6dc49651808a64be26b1dc8281a9 /libavcodec/avcodec.h | |
parent | c3f3b562c92ed8422f2db085f7d2a4a618e1e2d4 (diff) | |
download | ffmpeg-56709ca8aaffed529b62b2afa4288325d64dae57.tar.gz |
avcodec: deprecate AVCodecContext.debug_mv
It's been unused for almost three years now.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index dc8738c819..eafc2e84e3 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2141,15 +2141,16 @@ typedef struct AVCodecContext { */ int seek_preroll; +#if FF_API_DEBUG_MV /** - * debug motion vectors - * - encoding: Set by user. - * - decoding: Set by user. + * @deprecated unused */ + attribute_deprecated int debug_mv; #define FF_DEBUG_VIS_MV_P_FOR 0x00000001 //visualize forward predicted MVs of P frames #define FF_DEBUG_VIS_MV_B_FOR 0x00000002 //visualize forward predicted MVs of B frames #define FF_DEBUG_VIS_MV_B_BACK 0x00000004 //visualize backward predicted MVs of B frames +#endif /** * custom intra quantization matrix |