2pass stats fix (by ffdshow cvslog)

Originally committed as revision 1822 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2003-04-25 19:46:00 +00:00
parent d7b8e4b622
commit a0c8317396
1 changed files with 2 additions and 0 deletions

View File

@ -550,6 +550,7 @@ void msmpeg4_encode_mb(MpegEncContext * s,
put_bits(&s->pb, 1, 1);
s->last_bits++;
s->misc_bits++;
s->skip_count++;
return;
}
@ -652,6 +653,7 @@ void msmpeg4_encode_mb(MpegEncContext * s,
msmpeg4_encode_block(s, block[i], i);
}
s->i_tex_bits += get_bits_diff(s);
s->i_count++;
}
}