comparison avcodec.h @ 1706:3ba5c493db6f libavcodec

motion vector vissualization improvements patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
author michael
date Tue, 30 Dec 2003 02:12:12 +0000
parents f5af91b8be17
children dea5b2946999
comparison
equal deleted inserted replaced
1705:954593137d37 1706:3ba5c493db6f
1131 #define FF_DEBUG_RC 2 1131 #define FF_DEBUG_RC 2
1132 #define FF_DEBUG_BITSTREAM 4 1132 #define FF_DEBUG_BITSTREAM 4
1133 #define FF_DEBUG_MB_TYPE 8 1133 #define FF_DEBUG_MB_TYPE 8
1134 #define FF_DEBUG_QP 16 1134 #define FF_DEBUG_QP 16
1135 #define FF_DEBUG_MV 32 1135 #define FF_DEBUG_MV 32
1136 #define FF_DEBUG_VIS_MV 0x00000040 1136 //#define FF_DEBUG_VIS_MV 0x00000040
1137 #define FF_DEBUG_SKIP 0x00000080 1137 #define FF_DEBUG_SKIP 0x00000080
1138 #define FF_DEBUG_STARTCODE 0x00000100 1138 #define FF_DEBUG_STARTCODE 0x00000100
1139 #define FF_DEBUG_PTS 0x00000200 1139 #define FF_DEBUG_PTS 0x00000200
1140 #define FF_DEBUG_ER 0x00000400 1140 #define FF_DEBUG_ER 0x00000400
1141 #define FF_DEBUG_MMCO 0x00000800 1141 #define FF_DEBUG_MMCO 0x00000800
1142 #define FF_DEBUG_BUGS 0x00001000 1142 #define FF_DEBUG_BUGS 0x00001000
1143 #define FF_DEBUG_VIS_QP 0x00002000 1143 #define FF_DEBUG_VIS_QP 0x00002000
1144 #define FF_DEBUG_VIS_MB_TYPE 0x00004000 1144 #define FF_DEBUG_VIS_MB_TYPE 0x00004000
1145 1145
1146 /**
1147 * debug.
1148 * - encoding: set by user.
1149 * - decoding: set by user.
1150 */
1151 int debug_mv;
1152 #define FF_DEBUG_VIS_MV_P_FOR 0x00000001 //visualize forward predicted MVs of P frames
1153 #define FF_DEBUG_VIS_MV_B_FOR 0x00000002 //visualize forward predicted MVs of B frames
1154 #define FF_DEBUG_VIS_MV_B_BACK 0x00000004 //visualize backward predicted MVs of B frames
1155
1146 /** 1156 /**
1147 * error. 1157 * error.
1148 * - encoding: set by lavc if flags&CODEC_FLAG_PSNR 1158 * - encoding: set by lavc if flags&CODEC_FLAG_PSNR
1149 * - decoding: unused 1159 * - decoding: unused
1150 */ 1160 */