diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-10-27 11:26:17 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-10-31 20:22:51 +0100 |
commit | a1504eee41b39f62dbfe0a0ca6b96c2716bf7577 (patch) | |
tree | e0703f03564323da1db5ef9dca359bcfd91c31ad /libavcodec/avcodec.h | |
parent | fae753af709537fc75ff1c4ce21fc1f4429af929 (diff) | |
download | ffmpeg-a1504eee41b39f62dbfe0a0ca6b96c2716bf7577.tar.gz |
lavc: deprecate AVCodecContext.debug_mv
It has been unused since 37045e422903695e610cca6ecb753df643ab9380.
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 87d04348eb..81bf8c6e0a 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2324,15 +2324,16 @@ typedef struct AVCodecContext { #define FF_DEBUG_BUFFERS 0x00008000 #define FF_DEBUG_THREADS 0x00010000 +#if FF_API_DEBUG_MV /** - * debug - * - encoding: Set by user. - * - decoding: Set by user. + * @deprecated this option does not have any effect */ + 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 /** * Error recognition; may misdetect some more or less valid parts as errors. |