diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-09-12 12:26:09 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-09-12 12:26:09 +0000 |
commit | 66370d3fca1ce0628d83ff34f47e11515ff7eb9f (patch) | |
tree | 79d9884a5496e9ad754da5845e33a887f5391eb5 /libavcodec/mpegvideo.h | |
parent | 7866eeff46f3807696100d1061b6cd07af0dd9eb (diff) | |
download | ffmpeg-66370d3fca1ce0628d83ff34f47e11515ff7eb9f.tar.gz |
statistics for forw & back p-MBs instead of just one counter for both
Originally committed as revision 925 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 611671bf65..7d62e4fc2b 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -301,7 +301,8 @@ typedef struct MpegEncContext { int i_tex_bits; int p_tex_bits; int i_count; - int p_count; + int f_count; + int b_count; int skip_count; int misc_bits; // cbp, mb_type int last_bits; //temp var used for calculating the above vars |