]> git.sesse.net Git - ffmpeg/commitdiff
lavc: deprecate FF_DEBUG_VIS_*
authorAnton Khirnov <anton@khirnov.net>
Sun, 27 Oct 2013 10:28:51 +0000 (11:28 +0100)
committerAnton Khirnov <anton@khirnov.net>
Thu, 31 Oct 2013 19:23:08 +0000 (20:23 +0100)
Those flags have no effect since
37045e422903695e610cca6ecb753df643ab9380.

libavcodec/avcodec.h
libavcodec/options_table.h

index 81bf8c6e0aade5d566637a31231644a50a3d51b2..fb8ca4b0cddffc9791ff5579ea50575ed0736f74 100644 (file)
@@ -2319,8 +2319,10 @@ typedef struct AVCodecContext {
 #define FF_DEBUG_ER          0x00000400
 #define FF_DEBUG_MMCO        0x00000800
 #define FF_DEBUG_BUGS        0x00001000
+#if FF_API_DEBUG_MV
 #define FF_DEBUG_VIS_QP      0x00002000
 #define FF_DEBUG_VIS_MB_TYPE 0x00004000
+#endif
 #define FF_DEBUG_BUFFERS     0x00008000
 #define FF_DEBUG_THREADS     0x00010000
 
index 0e1aa60e8008de57cac9f589c465391af03be63b..5be447e4b6f012969e67849b693318b1a10171af 100644 (file)
@@ -219,8 +219,10 @@ static const AVOption avcodec_options[] = {
 {"er", "error recognition", 0, AV_OPT_TYPE_CONST, {.i64 = FF_DEBUG_ER }, INT_MIN, INT_MAX, V|D, "debug"},
 {"mmco", "memory management control operations (H.264)", 0, AV_OPT_TYPE_CONST, {.i64 = FF_DEBUG_MMCO }, INT_MIN, INT_MAX, V|D, "debug"},
 {"bugs", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_DEBUG_BUGS }, INT_MIN, INT_MAX, V|D, "debug"},
+#if FF_API_DEBUG_MV
 {"vis_qp", "visualize quantization parameter (QP), lower QP are tinted greener", 0, AV_OPT_TYPE_CONST, {.i64 = FF_DEBUG_VIS_QP }, INT_MIN, INT_MAX, V|D, "debug"},
 {"vis_mb_type", "visualize block types", 0, AV_OPT_TYPE_CONST, {.i64 = FF_DEBUG_VIS_MB_TYPE }, INT_MIN, INT_MAX, V|D, "debug"},
+#endif
 {"buffers", "picture buffer allocations", 0, AV_OPT_TYPE_CONST, {.i64 = FF_DEBUG_BUFFERS }, INT_MIN, INT_MAX, V|D, "debug"},
 {"thread_ops", "threading operations", 0, AV_OPT_TYPE_CONST, {.i64 = FF_DEBUG_THREADS }, INT_MIN, INT_MAX, V|D, "debug"},
 #if FF_API_DEBUG_MV