comparison h264_cavlc.c @ 10998:b2e1b3baef0a libavcodec

Remove cruft.
author michael
date Sun, 24 Jan 2010 20:52:49 +0000
parents 26f9c146ef2a
children 7cfb7bb6e554
comparison
equal deleted inserted replaced
10997:9bd48e510bef 10998:b2e1b3baef0a
916 int i8x8, i4x4, chroma_idx; 916 int i8x8, i4x4, chroma_idx;
917 int dquant; 917 int dquant;
918 GetBitContext *gb= IS_INTRA(mb_type) ? h->intra_gb_ptr : h->inter_gb_ptr; 918 GetBitContext *gb= IS_INTRA(mb_type) ? h->intra_gb_ptr : h->inter_gb_ptr;
919 const uint8_t *scan, *scan8x8, *dc_scan; 919 const uint8_t *scan, *scan8x8, *dc_scan;
920 920
921 // fill_non_zero_count_cache(h);
922
923 if(IS_INTERLACED(mb_type)){ 921 if(IS_INTERLACED(mb_type)){
924 scan8x8= s->qscale ? h->field_scan8x8_cavlc : h->field_scan8x8_cavlc_q0; 922 scan8x8= s->qscale ? h->field_scan8x8_cavlc : h->field_scan8x8_cavlc_q0;
925 scan= s->qscale ? h->field_scan : h->field_scan_q0; 923 scan= s->qscale ? h->field_scan : h->field_scan_q0;
926 dc_scan= luma_dc_field_scan; 924 dc_scan= luma_dc_field_scan;
927 }else{ 925 }else{