Lines Matching refs:cbpy
972 int cbpy = get_vlc2(&s->gb, ff_h263_cbpy_vlc.table, CBPY_VLC_BITS, 1);
973 if (cbpy < 0) {
975 "cbpy corrupted at %d %d\n", s->mb_x, s->mb_y);
979 s->cbp_table[xy] |= cbpy << 2;
986 int cbpy = get_vlc2(&s->gb, ff_h263_cbpy_vlc.table, CBPY_VLC_BITS, 1);
988 if (cbpy < 0) {
990 "I cbpy corrupted at %d %d\n", s->mb_x, s->mb_y);
1011 s->cbp_table[xy] |= cbpy << 2;
1018 int cbpy = get_vlc2(&s->gb, ff_h263_cbpy_vlc.table, CBPY_VLC_BITS, 1);
1020 if (cbpy < 0) {
1022 "P cbpy corrupted at %d %d\n", s->mb_x, s->mb_y);
1031 s->cbp_table[xy] |= (cbpy ^ 0xf) << 2;
1474 int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant;
1532 cbpy = get_vlc2(&s->gb, ff_h263_cbpy_vlc.table, CBPY_VLC_BITS, 1) ^ 0x0F;
1533 if (cbpy < 0) {
1535 "P cbpy damaged at %d %d\n", s->mb_x, s->mb_y);
1539 cbp = (cbpc & 3) | (cbpy << 2);
1793 cbpy = get_vlc2(&s->gb, ff_h263_cbpy_vlc.table, CBPY_VLC_BITS, 1);
1794 if (cbpy < 0) {
1796 "I cbpy damaged at %d %d\n", s->mb_x, s->mb_y);
1799 cbp = (cbpc & 3) | (cbpy << 2);