specific debug output support

Originally committed as revision 1305 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer
2002-12-04 12:09:27 +00:00
parent ce3bcaeda1
commit c8c437bc23
2 changed files with 26 additions and 10 deletions

View File

@@ -5,8 +5,8 @@
#define LIBAVCODEC_VERSION_INT 0x000406
#define LIBAVCODEC_VERSION "0.4.6"
#define LIBAVCODEC_BUILD 4641
#define LIBAVCODEC_BUILD_STR "4641"
#define LIBAVCODEC_BUILD 4642
#define LIBAVCODEC_BUILD_STR "4642"
enum CodecID {
CODEC_ID_NONE,
@@ -812,6 +812,20 @@ typedef struct AVCodecContext {
* decoding: set by lavc
*/
AVVideoFrame *coded_picture;
/**
* debug
* encoding: set by user.
* decoding: set by user.
*/
int debug;
#define FF_DEBUG_PICT_INFO 1
#define FF_DEBUG_RC 2
#define FF_DEBUG_BITSTREAM 4
#define FF_DEBUG_MB_TYPE 8
#define FF_DEBUG_QP 16
#define FF_DEBUG_MV 32
#define FF_DEBUG_VIS_MV 64
} AVCodecContext;
typedef struct AVCodec {