Lines Matching defs:cbpy
789 int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant;
826 cbpy = get_vlc2(&s->gb, ff_h263_cbpy_vlc.table, CBPY_VLC_BITS, 1);
828 if (cbpy < 0) {
829 av_log(s->avctx, AV_LOG_ERROR, "cbpy damaged at %d %d\n", s->mb_x, s->mb_y);
834 cbpy ^= 0xF;
836 cbp = (cbpc & 3) | (cbpy << 2);
925 cbpy = get_vlc2(&s->gb, ff_h263_cbpy_vlc.table, CBPY_VLC_BITS, 1);
927 if (cbpy < 0){
928 av_log(s->avctx, AV_LOG_ERROR, "b cbpy damaged at %d %d\n", s->mb_x, s->mb_y);
933 cbpy ^= 0xF;
935 cbp = (cbpc & 3) | (cbpy << 2);
1036 cbpy = get_vlc2(&s->gb, ff_h263_cbpy_vlc.table, CBPY_VLC_BITS, 1);
1037 if(cbpy<0){
1038 av_log(s->avctx, AV_LOG_ERROR, "I cbpy damaged at %d %d\n", s->mb_x, s->mb_y);
1041 cbp = (cbpc & 3) | (cbpy << 2);