# HG changeset patch # User michaelni # Date 1035025393 0 # Node ID d031d1575ceb590247e3ecec713c10813bdaeb5f # Parent f2644bb12a43f03074ca3838288f1ffc306f9dca fixing interlaced dct with 4mv diff -r f2644bb12a43 -r d031d1575ceb h263.c --- a/h263.c Sat Oct 19 01:31:26 2002 +0000 +++ b/h263.c Sat Oct 19 11:03:13 2002 +0000 @@ -619,6 +619,11 @@ 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;