Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavcodec/
H A Dituh263enc.c498 int cbpc, cbpy, i, cbp, pred_x, pred_y; in ff_h263_encode_mb() local
521 cbpc = cbp & 3; in ff_h263_encode_mb()
523 if(s->alt_inter_vlc==0 || cbpc!=3) in ff_h263_encode_mb()
525 if(s->dquant) cbpc+= 8; in ff_h263_encode_mb()
528 ff_h263_inter_MCBPC_bits[cbpc], in ff_h263_encode_mb()
529 ff_h263_inter_MCBPC_code[cbpc]); in ff_h263_encode_mb()
555 ff_h263_inter_MCBPC_bits[cbpc+16], in ff_h263_encode_mb()
556 ff_h263_inter_MCBPC_code[cbpc+16]); in ff_h263_encode_mb()
644 cbpc = cbp & 3; in ff_h263_encode_mb()
646 if(s->dquant) cbpc in ff_h263_encode_mb()
[all...]
H A Dh263enc.h81 int cbpc = (-1), cbpy = (-1); in get_p_cbp() local
92 cbpc = i; in get_p_cbp()
108 cbp = cbpc + 4 * cbpy; in get_p_cbp()
H A Dituh263dec.c343 int cbpc, i, pred_x, pred_y, mx, my; in preview_obmc() local
368 cbpc = get_vlc2(&s->gb, ff_h263_inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2); in preview_obmc()
369 }while(cbpc == 20); in preview_obmc()
371 if(cbpc & 4){ in preview_obmc()
375 if (cbpc & 8) { in preview_obmc()
383 if ((cbpc & 16) == 0) { in preview_obmc()
789 int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant; in ff_h263_decode_mb() local
811 cbpc = get_vlc2(&s->gb, ff_h263_inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2); in ff_h263_decode_mb()
812 if (cbpc < 0){ in ff_h263_decode_mb()
813 av_log(s->avctx, AV_LOG_ERROR, "cbpc damage in ff_h263_decode_mb()
[all...]
H A Dmpeg4videoenc.c486 int cbpc, cbpy, pred_x, pred_y; in ff_mpeg4_encode_mb() local
700 cbpc = cbp & 3; in ff_mpeg4_encode_mb()
705 cbpc += 8; in ff_mpeg4_encode_mb()
707 ff_h263_inter_MCBPC_bits[cbpc], in ff_mpeg4_encode_mb()
708 ff_h263_inter_MCBPC_code[cbpc]); in ff_mpeg4_encode_mb()
732 cbpc += 8; in ff_mpeg4_encode_mb()
734 ff_h263_inter_MCBPC_bits[cbpc], in ff_mpeg4_encode_mb()
735 ff_h263_inter_MCBPC_code[cbpc]); in ff_mpeg4_encode_mb()
767 ff_h263_inter_MCBPC_bits[cbpc + 16], in ff_mpeg4_encode_mb()
768 ff_h263_inter_MCBPC_code[cbpc in ff_mpeg4_encode_mb()
[all...]
H A Dmpeg4videodec.c771 int cbpc; in mpeg4_decode_partition_a() local
786 cbpc = get_vlc2(&s->gb, ff_h263_intra_MCBPC_vlc.table, INTRA_MCBPC_VLC_BITS, 2); in mpeg4_decode_partition_a()
787 if (cbpc < 0) { in mpeg4_decode_partition_a()
792 } while (cbpc == 8); in mpeg4_decode_partition_a()
794 s->cbp_table[xy] = cbpc & 3; in mpeg4_decode_partition_a()
798 if (cbpc & 4) in mpeg4_decode_partition_a()
858 cbpc = get_vlc2(&s->gb, ff_h263_inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2); in mpeg4_decode_partition_a()
859 if (cbpc < 0) { in mpeg4_decode_partition_a()
864 if (cbpc == 20) in mpeg4_decode_partition_a()
867 s->cbp_table[xy] = cbpc in mpeg4_decode_partition_a()
1474 int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant; mpeg4_decode_mb() local
[all...]

Completed in 7 milliseconds