Commit 4f83fe56 authored by michaelni's avatar michaelni

fixing interlaced dct with 4mv


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@1050 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1fe569ca
......@@ -619,6 +619,11 @@ void mpeg4_encode_mb(MpegEncContext * s,
cbpy ^= 0xf;
put_bits(pb2, cbpy_tab[cbpy][1], cbpy_tab[cbpy][0]);
if(!s->progressive_sequence){
if(cbp)
put_bits(pb2, 1, s->interlaced_dct);
}
if(interleaved_stats){
bits= get_bit_count(&s->pb);
s->misc_bits+= bits - s->last_bits;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment