diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-12-03 17:43:39 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-12-03 17:43:39 +0000 |
commit | 289e8fd00132a7e25320a55e6fa09cc04c7a33ed (patch) | |
tree | 1ee9abaa9c85babac1c24878dede70aeb7f2a4a2 /libavcodec/mpegvideo.h | |
parent | b8cf645bd27f473c00ef3f864f3d492c64fda62c (diff) | |
download | ffmpeg-289e8fd00132a7e25320a55e6fa09cc04c7a33ed.tar.gz |
Implement complexity estimation parsing and try to detect an incorrectly set
complexity estimation flag.
Originally committed as revision 15993 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 4ddd30c483..c57a76164c 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -546,6 +546,9 @@ typedef struct MpegEncContext { int mpeg_quant; int t_frame; ///< time distance of first I -> B, used for interlaced b frames int padding_bug_score; ///< used to detect the VERY common padding bug in MPEG4 + int cplx_estimation_trash_i; + int cplx_estimation_trash_p; + int cplx_estimation_trash_b; /* divx specific, used to workaround (many) bugs in divx5 */ int divx_version; |