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

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dituh263dec.c316 int cbpc, i, pred_x, pred_y, mx, my; local
341 cbpc = get_vlc2(&s->gb, ff_h263_inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2);
342 }while(cbpc == 20);
344 if(cbpc & 4){
348 if (cbpc & 8) {
356 if ((cbpc & 16) == 0) {
584 int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant; local
606 cbpc = get_vlc2(&s->gb, ff_h263_inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2);
607 if (cbpc < 0){
608 av_log(s->avctx, AV_LOG_ERROR, "cbpc damage
[all...]
H A Dituh263enc.c450 int cbpc, cbpy, i, cbp, pred_x, pred_y; local
473 cbpc = cbp & 3;
475 if(s->alt_inter_vlc==0 || cbpc!=3)
477 if(s->dquant) cbpc+= 8;
480 ff_h263_inter_MCBPC_bits[cbpc],
481 ff_h263_inter_MCBPC_code[cbpc]);
507 ff_h263_inter_MCBPC_bits[cbpc+16],
508 ff_h263_inter_MCBPC_code[cbpc+16]);
596 cbpc = cbp & 3;
598 if(s->dquant) cbpc
[all...]
H A Dh263.h163 int cbpc = (-1), cbpy= (-1); local
174 cbpc= i;
190 cbp= cbpc + 4*cbpy;
H A Dmpeg4videoenc.c506 int cbpc, cbpy, pred_x, pred_y; local
726 cbpc = cbp & 3;
731 cbpc += 8;
733 ff_h263_inter_MCBPC_bits[cbpc],
734 ff_h263_inter_MCBPC_code[cbpc]);
758 cbpc += 8;
760 ff_h263_inter_MCBPC_bits[cbpc],
761 ff_h263_inter_MCBPC_code[cbpc]);
793 ff_h263_inter_MCBPC_bits[cbpc + 16],
794 ff_h263_inter_MCBPC_code[cbpc
[all...]
H A Dmpeg4videodec.c600 int cbpc; local
615 cbpc = get_vlc2(&s->gb, ff_h263_intra_MCBPC_vlc.table, INTRA_MCBPC_VLC_BITS, 2);
616 if (cbpc < 0) {
621 } while (cbpc == 8);
623 s->cbp_table[xy] = cbpc & 3;
627 if (cbpc & 4)
687 cbpc = get_vlc2(&s->gb, ff_h263_inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2);
688 if (cbpc < 0) {
693 if (cbpc == 20)
696 s->cbp_table[xy] = cbpc
1297 int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dituh263dec.c339 int cbpc, i, pred_x, pred_y, mx, my; local
364 cbpc = get_vlc2(&s->gb, ff_h263_inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2);
365 }while(cbpc == 20);
367 if(cbpc & 4){
371 if (cbpc & 8) {
379 if ((cbpc & 16) == 0) {
604 int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant; local
626 cbpc = get_vlc2(&s->gb, ff_h263_inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2);
627 if (cbpc < 0){
628 av_log(s->avctx, AV_LOG_ERROR, "cbpc damage
[all...]
H A Dituh263enc.c461 int cbpc, cbpy, i, cbp, pred_x, pred_y; local
484 cbpc = cbp & 3;
486 if(s->alt_inter_vlc==0 || cbpc!=3)
488 if(s->dquant) cbpc+= 8;
491 ff_h263_inter_MCBPC_bits[cbpc],
492 ff_h263_inter_MCBPC_code[cbpc]);
518 ff_h263_inter_MCBPC_bits[cbpc+16],
519 ff_h263_inter_MCBPC_code[cbpc+16]);
609 cbpc = cbp & 3;
611 if(s->dquant) cbpc
[all...]
H A Dh263.h154 int cbpc = (-1), cbpy= (-1); local
165 cbpc= i;
181 cbp= cbpc + 4*cbpy;
H A Dmpeg4videoenc.c475 int cbpc, cbpy, pred_x, pred_y; local
672 cbpc = cbp & 3;
676 if(s->dquant) cbpc+= 8;
678 ff_h263_inter_MCBPC_bits[cbpc],
679 ff_h263_inter_MCBPC_code[cbpc]);
701 if(s->dquant) cbpc+= 8;
703 ff_h263_inter_MCBPC_bits[cbpc],
704 ff_h263_inter_MCBPC_code[cbpc]);
733 ff_h263_inter_MCBPC_bits[cbpc+16],
734 ff_h263_inter_MCBPC_code[cbpc
[all...]
H A Dmpeg4videodec.c549 int cbpc; local
565 cbpc = get_vlc2(&s->gb, ff_h263_intra_MCBPC_vlc.table, INTRA_MCBPC_VLC_BITS, 2);
566 if (cbpc < 0){
567 av_log(s->avctx, AV_LOG_ERROR, "cbpc corrupted at %d %d\n", s->mb_x, s->mb_y);
570 }while(cbpc == 8);
572 s->cbp_table[xy]= cbpc & 3;
576 if(cbpc & 4) {
624 cbpc = get_vlc2(&s->gb, ff_h263_inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2);
625 if (cbpc < 0){
626 av_log(s->avctx, AV_LOG_ERROR, "cbpc corrupte
1152 int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant; local
[all...]

Completed in 189 milliseconds