Lines Matching refs:cbpc
340 int cbpc, i, pred_x, pred_y, mx, my; in preview_obmc() local
365 cbpc = get_vlc2(&s->gb, ff_h263_inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2); in preview_obmc()
366 }while(cbpc == 20); in preview_obmc()
368 if(cbpc & 4){ in preview_obmc()
372 if (cbpc & 8) { in preview_obmc()
380 if ((cbpc & 16) == 0) { in preview_obmc()
699 int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant; in ff_h263_decode_mb() local
721 cbpc = get_vlc2(&s->gb, ff_h263_inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2); in ff_h263_decode_mb()
722 if (cbpc < 0){ in ff_h263_decode_mb()
726 }while(cbpc == 20); in ff_h263_decode_mb()
730 dquant = cbpc & 8; in ff_h263_decode_mb()
731 s->mb_intra = ((cbpc & 4) != 0); in ff_h263_decode_mb()
743 if(s->alt_inter_vlc==0 || (cbpc & 3)!=3) in ff_h263_decode_mb()
746 cbp = (cbpc & 3) | (cbpy << 2); in ff_h263_decode_mb()
752 if ((cbpc & 16) == 0) { in ff_h263_decode_mb()
829 cbpc = get_vlc2(&s->gb, cbpc_b_vlc.table, CBPC_B_VLC_BITS, 1); in ff_h263_decode_mb()
842 if(s->alt_inter_vlc==0 || (cbpc & 3)!=3) in ff_h263_decode_mb()
845 cbp = (cbpc & 3) | (cbpy << 2); in ff_h263_decode_mb()
921 cbpc = get_vlc2(&s->gb, ff_h263_intra_MCBPC_vlc.table, INTRA_MCBPC_VLC_BITS, 2); in ff_h263_decode_mb()
922 if (cbpc < 0){ in ff_h263_decode_mb()
926 }while(cbpc == 8); in ff_h263_decode_mb()
930 dquant = cbpc & 4; in ff_h263_decode_mb()
951 cbp = (cbpc & 3) | (cbpy << 2); in ff_h263_decode_mb()