Searched refs:cbpy (Results 1 – 6 of 6) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | ituh263enc.c | 451 int cbpc, cbpy, i, cbp, pred_x, pred_y; in ff_h263_encode_mb() local 475 cbpy = cbp >> 2; in ff_h263_encode_mb() 477 cbpy ^= 0xF; in ff_h263_encode_mb() 484 put_bits(&s->pb, ff_h263_cbpy_tab[cbpy][1], ff_h263_cbpy_tab[cbpy][0]); in ff_h263_encode_mb() 510 put_bits(&s->pb, ff_h263_cbpy_tab[cbpy][1], ff_h263_cbpy_tab[cbpy][0]); in ff_h263_encode_mb() 614 cbpy = cbp >> 2; in ff_h263_encode_mb() 615 put_bits(&s->pb, ff_h263_cbpy_tab[cbpy][1], ff_h263_cbpy_tab[cbpy][0]); in ff_h263_encode_mb()
|
D | h263.h | 138 int cbpc = (-1), cbpy= (-1); in get_p_cbp() local 162 cbpy= i; in get_p_cbp() 165 cbp= cbpc + 4*cbpy; in get_p_cbp()
|
D | ituh263dec.c | 699 int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant; in ff_h263_decode_mb() local 736 cbpy = get_vlc2(&s->gb, ff_h263_cbpy_vlc.table, CBPY_VLC_BITS, 1); in ff_h263_decode_mb() 738 if (cbpy < 0) { in ff_h263_decode_mb() 744 cbpy ^= 0xF; in ff_h263_decode_mb() 746 cbp = (cbpc & 3) | (cbpy << 2); in ff_h263_decode_mb() 835 cbpy = get_vlc2(&s->gb, ff_h263_cbpy_vlc.table, CBPY_VLC_BITS, 1); in ff_h263_decode_mb() 837 if (cbpy < 0){ in ff_h263_decode_mb() 843 cbpy ^= 0xF; in ff_h263_decode_mb() 845 cbp = (cbpc & 3) | (cbpy << 2); in ff_h263_decode_mb() 946 cbpy = get_vlc2(&s->gb, ff_h263_cbpy_vlc.table, CBPY_VLC_BITS, 1); in ff_h263_decode_mb() [all …]
|
D | mpeg4videoenc.c | 479 int cbpc, cbpy, pred_x, pred_y; in ff_mpeg4_encode_mb() local 700 cbpy = cbp >> 2; in ff_mpeg4_encode_mb() 701 cbpy ^= 0xf; in ff_mpeg4_encode_mb() 709 put_bits(pb2, ff_h263_cbpy_tab[cbpy][1], ff_h263_cbpy_tab[cbpy][0]); in ff_mpeg4_encode_mb() 736 put_bits(pb2, ff_h263_cbpy_tab[cbpy][1], ff_h263_cbpy_tab[cbpy][0]); in ff_mpeg4_encode_mb() 768 put_bits(pb2, ff_h263_cbpy_tab[cbpy][1], ff_h263_cbpy_tab[cbpy][0]); in ff_mpeg4_encode_mb() 837 cbpy = cbp >> 2; in ff_mpeg4_encode_mb() 838 put_bits(pb2, ff_h263_cbpy_tab[cbpy][1], ff_h263_cbpy_tab[cbpy][0]); in ff_mpeg4_encode_mb()
|
D | mpeg4videodec.c | 901 int cbpy = get_vlc2(&s->gb, ff_h263_cbpy_vlc.table, CBPY_VLC_BITS, 1); in mpeg4_decode_partition_b() local 902 if (cbpy < 0) { in mpeg4_decode_partition_b() 908 s->cbp_table[xy] |= cbpy << 2; in mpeg4_decode_partition_b() 915 int cbpy = get_vlc2(&s->gb, ff_h263_cbpy_vlc.table, CBPY_VLC_BITS, 1); in mpeg4_decode_partition_b() local 917 if (cbpy < 0) { in mpeg4_decode_partition_b() 940 s->cbp_table[xy] |= cbpy << 2; in mpeg4_decode_partition_b() 947 int cbpy = get_vlc2(&s->gb, ff_h263_cbpy_vlc.table, CBPY_VLC_BITS, 1); in mpeg4_decode_partition_b() local 949 if (cbpy < 0) { in mpeg4_decode_partition_b() 960 s->cbp_table[xy] |= (cbpy ^ 0xf) << 2; in mpeg4_decode_partition_b() 1401 int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant; in mpeg4_decode_mb() local [all …]
|
D | msmpeg4dec.c | 149 int mx, my, cbpy; in msmpeg4v12_decode_mb() local 151 cbpy= get_vlc2(&s->gb, ff_h263_cbpy_vlc.table, CBPY_VLC_BITS, 1); in msmpeg4v12_decode_mb() 152 if(cbpy<0){ in msmpeg4v12_decode_mb() 157 cbp|= cbpy<<2; in msmpeg4v12_decode_mb()
|