Home
last modified time | relevance | path

Searched refs:cbpc (Results 1 – 5 of 5) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dituh263enc.c451 int cbpc, cbpy, i, cbp, pred_x, pred_y; in ff_h263_encode_mb() local
474 cbpc = cbp & 3; in ff_h263_encode_mb()
476 if(s->alt_inter_vlc==0 || cbpc!=3) in ff_h263_encode_mb()
478 if(s->dquant) cbpc+= 8; in ff_h263_encode_mb()
481 ff_h263_inter_MCBPC_bits[cbpc], in ff_h263_encode_mb()
482 ff_h263_inter_MCBPC_code[cbpc]); in ff_h263_encode_mb()
508 ff_h263_inter_MCBPC_bits[cbpc+16], in ff_h263_encode_mb()
509 ff_h263_inter_MCBPC_code[cbpc+16]); in ff_h263_encode_mb()
597 cbpc = cbp & 3; in ff_h263_encode_mb()
599 if(s->dquant) cbpc+=4; in ff_h263_encode_mb()
[all …]
Dituh263dec.c340 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()
[all …]
Dmpeg4videoenc.c479 int cbpc, cbpy, pred_x, pred_y; in ff_mpeg4_encode_mb() local
699 cbpc = cbp & 3; in ff_mpeg4_encode_mb()
704 cbpc += 8; in ff_mpeg4_encode_mb()
706 ff_h263_inter_MCBPC_bits[cbpc], in ff_mpeg4_encode_mb()
707 ff_h263_inter_MCBPC_code[cbpc]); in ff_mpeg4_encode_mb()
731 cbpc += 8; in ff_mpeg4_encode_mb()
733 ff_h263_inter_MCBPC_bits[cbpc], in ff_mpeg4_encode_mb()
734 ff_h263_inter_MCBPC_code[cbpc]); in ff_mpeg4_encode_mb()
766 ff_h263_inter_MCBPC_bits[cbpc + 16], in ff_mpeg4_encode_mb()
767 ff_h263_inter_MCBPC_code[cbpc + 16]); in ff_mpeg4_encode_mb()
[all …]
Dh263.h138 int cbpc = (-1), cbpy= (-1); in get_p_cbp() local
149 cbpc= i; in get_p_cbp()
165 cbp= cbpc + 4*cbpy; in get_p_cbp()
Dmpeg4videodec.c700 int cbpc; in mpeg4_decode_partition_a() local
715 cbpc = get_vlc2(&s->gb, ff_h263_intra_MCBPC_vlc.table, INTRA_MCBPC_VLC_BITS, 2); in mpeg4_decode_partition_a()
716 if (cbpc < 0) { in mpeg4_decode_partition_a()
721 } while (cbpc == 8); in mpeg4_decode_partition_a()
723 s->cbp_table[xy] = cbpc & 3; in mpeg4_decode_partition_a()
727 if (cbpc & 4) in mpeg4_decode_partition_a()
787 cbpc = get_vlc2(&s->gb, ff_h263_inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2); in mpeg4_decode_partition_a()
788 if (cbpc < 0) { in mpeg4_decode_partition_a()
793 if (cbpc == 20) in mpeg4_decode_partition_a()
796 s->cbp_table[xy] = cbpc & (8 + 3); // 8 is dquant in mpeg4_decode_partition_a()
[all …]