Searched refs:cbp_table (Results 1 - 21 of 21) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dh264_mvpred.h586 h->top_cbp = h->cbp_table[top_xy];
591 h->left_cbp = (h->cbp_table[left_xy[LTOP]] & 0x7F0) |
592 ((h->cbp_table[left_xy[LTOP]] >> (left_block[0] & (~1))) & 2) |
593 (((h->cbp_table[left_xy[LBOT]] >> (left_block[2] & (~1))) & 2) << 2);
H A Dh264_loopfilter.c501 bS[0]= 1+((h->cbp_table[mbn_xy] & 0x4000)||h->non_zero_count_cache[scan8[0]+0]);
502 bS[1]= 1+((h->cbp_table[mbn_xy] & 0x4000)||h->non_zero_count_cache[scan8[0]+1]);
503 bS[2]= 1+((h->cbp_table[mbn_xy] & 0x8000)||h->non_zero_count_cache[scan8[0]+2]);
504 bS[3]= 1+((h->cbp_table[mbn_xy] & 0x8000)||h->non_zero_count_cache[scan8[0]+3]);
755 (h->cbp_table[mbn_xy] & (((MB_FIELD(h) ? (i&2) : (mb_y&1)) ? 8 : 2) << 12))
H A Dmpeg4videodec.c623 s->cbp_table[xy] = cbpc & 3;
696 s->cbp_table[xy] = cbpc & (8 + 3); // 8 is dquant
808 s->cbp_table[xy] |= cbpy << 2;
823 if (s->cbp_table[xy] & 8)
839 s->cbp_table[xy] &= 3; // remove dquant
840 s->cbp_table[xy] |= cbpy << 2;
845 s->cbp_table[xy] = 0;
855 if (s->cbp_table[xy] & 8)
859 s->cbp_table[xy] &= 3; // remove dquant
860 s->cbp_table[x
[all...]
H A Dh264_cabac.c1679 h->cbp_table[h->mb_xy] |= 0x40 << (n - CHROMA_DC_BLOCK_INDEX);
1681 h->cbp_table[h->mb_xy] |= 0x100 << (n - LUMA_DC_BLOCK_INDEX);
1913 h->cbp_table[mb_xy] = 0;
2021 h->cbp_table[mb_xy] = 0xf7ef;
2300 h->cbp_table[mb_xy] = h->cbp = cbp;
H A Dh264_slice.c429 dst->cbp_table = src->cbp_table;
2173 h->cbp = h->cbp_table[mb_xy];
2193 nnz_cache[5 + 8 * 0] = (h->cbp_table[top_xy] & 0x4000) >> 12;
2195 nnz_cache[7 + 8 * 0] = (h->cbp_table[top_xy] & 0x8000) >> 12;
2199 nnz_cache[3 + 8 * 2] = (h->cbp_table[left_xy[LTOP]] & 0x2000) >> 12; // FIXME check MBAFF
2203 nnz_cache[3 + 8 * 4] = (h->cbp_table[left_xy[LBOT]] & 0x8000) >> 12; // FIXME check MBAFF
H A Dh264.h510 uint16_t *cbp_table; member in struct:H264Context
H A Dmpegvideo.h338 uint8_t *cbp_table; ///< used to store cbp, ac_pred for partitioned decoding member in struct:MpegEncContext
H A Dvaapi_vc1.c193 pic_param->cbp_table = v->cbpcy_vlc ? v->cbpcy_vlc - ff_vc1_cbpcy_p_vlc : 0;
H A Dh264_cavlc.c1086 h->cbp_table[mb_xy]= cbp;
1124 h->cbp_table[mb_xy] |= ret << 12;
H A Dh264.c375 av_freep(&h->cbp_table);
441 FF_ALLOCZ_OR_GOTO(h->avctx, h->cbp_table,
H A Dmpegvideo.c1234 FF_ALLOCZ_OR_GOTO(s->avctx, s->cbp_table , mb_array_size * sizeof(uint8_t), fail);
1417 av_freep(&s->cbp_table);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dh264_mvpred.h559 h->top_cbp = h->cbp_table[top_xy];
565 h->left_cbp = (h->cbp_table[left_xy[LTOP]] & 0x7F0)
566 | ((h->cbp_table[left_xy[LTOP]]>>(left_block[0]&(~1)))&2)
567 | (((h->cbp_table[left_xy[LBOT]]>>(left_block[2]&(~1)))&2) << 2);
H A Dh264_loopfilter.c506 bS[0]= 1+((h->cbp_table[mbn_xy] & 0x4000)||h->non_zero_count_cache[scan8[0]+0]);
507 bS[1]= 1+((h->cbp_table[mbn_xy] & 0x4000)||h->non_zero_count_cache[scan8[0]+1]);
508 bS[2]= 1+((h->cbp_table[mbn_xy] & 0x8000)||h->non_zero_count_cache[scan8[0]+2]);
509 bS[3]= 1+((h->cbp_table[mbn_xy] & 0x8000)||h->non_zero_count_cache[scan8[0]+3]);
761 (h->cbp_table[mbn_xy] & (((MB_FIELD ? (i&2) : (mb_y&1)) ? 8 : 2) << 12))
H A Dmpeg4videodec.c572 s->cbp_table[xy]= cbpc & 3;
632 s->cbp_table[xy]= cbpc&(8+3); //8 is dquant
727 s->cbp_table[xy]|= cbpy<<2;
740 if(s->cbp_table[xy] & 8) {
755 s->cbp_table[xy]&= 3; //remove dquant
756 s->cbp_table[xy]|= cbpy<<2;
761 s->cbp_table[xy]= 0;
770 if(s->cbp_table[xy] & 8) {
775 s->cbp_table[xy]&= 3; //remove dquant
776 s->cbp_table[x
[all...]
H A Dh264_cabac.c1685 h->cbp_table[h->mb_xy] |= 0x40 << (n - CHROMA_DC_BLOCK_INDEX);
1687 h->cbp_table[h->mb_xy] |= 0x100 << (n - LUMA_DC_BLOCK_INDEX);
1899 h->cbp_table[mb_xy] = 0;
2006 h->cbp_table[mb_xy] = 0xf7ef;
2281 h->cbp_table[mb_xy] = h->cbp = cbp;
H A Dh264.h404 uint16_t *cbp_table; member in struct:H264Context
H A Dmpegvideo.h317 uint8_t *cbp_table; ///< used to store cbp, ac_pred for partitioned decoding member in struct:MpegEncContext
H A Dvaapi_vc1.c193 pic_param->cbp_table = v->cbpcy_vlc ? v->cbpcy_vlc - ff_vc1_cbpcy_p_vlc : 0;
H A Dh264_cavlc.c1079 h->cbp_table[mb_xy]= cbp;
1117 h->cbp_table[mb_xy] |= ret << 12;
H A Dh264.c848 av_freep(&h->cbp_table);
954 FF_ALLOCZ_OR_GOTO(h->s.avctx, h->cbp_table, big_mb_num * sizeof(uint16_t), fail)
996 dst->cbp_table = src->cbp_table;
3508 h->cbp= h->cbp_table[mb_xy];
3527 nnz_cache[5+8*0]= (h->cbp_table[top_xy] & 0x4000) >> 12;
3529 nnz_cache[7+8*0]= (h->cbp_table[top_xy] & 0x8000) >> 12;
3533 nnz_cache[3+8*2]= (h->cbp_table[left_xy[LTOP]]&0x2000) >> 12; //FIXME check MBAFF
3537 nnz_cache[3+8*4]= (h->cbp_table[left_xy[LBOT]]&0x8000) >> 12; //FIXME check MBAFF
H A Dmpegvideo.c851 FF_ALLOCZ_OR_GOTO(s->avctx, s->cbp_table,
969 av_freep(&s->cbp_table);

Completed in 209 milliseconds