comparison h263.c @ 757:d031d1575ceb libavcodec

fixing interlaced dct with 4mv
author michaelni
date Sat, 19 Oct 2002 11:03:13 +0000
parents 8e1f0939d15d
children 7f4cc2f6d642
comparison
equal deleted inserted replaced
756:f2644bb12a43 757:d031d1575ceb
617 inter_MCBPC_code[cbpc]); 617 inter_MCBPC_code[cbpc]);
618 cbpy = cbp >> 2; 618 cbpy = cbp >> 2;
619 cbpy ^= 0xf; 619 cbpy ^= 0xf;
620 put_bits(pb2, cbpy_tab[cbpy][1], cbpy_tab[cbpy][0]); 620 put_bits(pb2, cbpy_tab[cbpy][1], cbpy_tab[cbpy][0]);
621 621
622 if(!s->progressive_sequence){
623 if(cbp)
624 put_bits(pb2, 1, s->interlaced_dct);
625 }
626
622 if(interleaved_stats){ 627 if(interleaved_stats){
623 bits= get_bit_count(&s->pb); 628 bits= get_bit_count(&s->pb);
624 s->misc_bits+= bits - s->last_bits; 629 s->misc_bits+= bits - s->last_bits;
625 s->last_bits=bits; 630 s->last_bits=bits;
626 } 631 }