Lines Matching refs:cbpc
343 int cbpc, i, pred_x, pred_y, mx, my;
368 cbpc = get_vlc2(&s->gb, ff_h263_inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2);
369 }while(cbpc == 20);
371 if(cbpc & 4){
375 if (cbpc & 8) {
383 if ((cbpc & 16) == 0) {
789 int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant;
811 cbpc = get_vlc2(&s->gb, ff_h263_inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2);
812 if (cbpc < 0){
813 av_log(s->avctx, AV_LOG_ERROR, "cbpc damaged at %d %d\n", s->mb_x, s->mb_y);
816 }while(cbpc == 20);
820 dquant = cbpc & 8;
821 s->mb_intra = ((cbpc & 4) != 0);
833 if(s->alt_inter_vlc==0 || (cbpc & 3)!=3)
836 cbp = (cbpc & 3) | (cbpy << 2);
842 if ((cbpc & 16) == 0) {
919 cbpc = get_vlc2(&s->gb, cbpc_b_vlc.table, CBPC_B_VLC_BITS, 1);
932 if(s->alt_inter_vlc==0 || (cbpc & 3)!=3)
935 cbp = (cbpc & 3) | (cbpy << 2);
1011 cbpc = get_vlc2(&s->gb, ff_h263_intra_MCBPC_vlc.table, INTRA_MCBPC_VLC_BITS, 2);
1012 if (cbpc < 0){
1013 av_log(s->avctx, AV_LOG_ERROR, "I cbpc damaged at %d %d\n", s->mb_x, s->mb_y);
1016 }while(cbpc == 8);
1020 dquant = cbpc & 4;
1041 cbp = (cbpc & 3) | (cbpy << 2);