Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavcodec/
Drv30.c192 int cur_cbp, left_cbp = 0; in rv30_loop_filter() local
195 left_cbp = (r->cbp_chroma[mb_pos - 1] >> (k*4)) & 0xF; in rv30_loop_filter()
203 else if(!i && left_cbp & (1 << (ij + 1))) in rv30_loop_filter()
Dh264_cabac.c1407 cbp_a = sl->left_cbp; in decode_cabac_mb_cbp_luma()
1425 cbp_a = (sl->left_cbp>>4)&0x03; in decode_cabac_mb_cbp_chroma()
1560 nza = (sl->left_cbp>>(6+idx))&0x01; in get_cabac_cbf_ctx()
1564 nza = sl->left_cbp&(0x100<<idx); in get_cabac_cbf_ctx()
Dvc1_loopfilter.c369 uint32_t left_cbp = cbp[0] >> (block_num * 4), right_cbp; in vc1_p_h_loop_filter() local
399 idx = (left_cbp | (right_cbp >> 1)) & 5; in vc1_p_h_loop_filter()
409 if (left_cbp & 3) in vc1_p_h_loop_filter()
411 if (left_cbp & 12) in vc1_p_h_loop_filter()
Dh264_mvpred.h598 sl->left_cbp = (h->cbp_table[left_xy[LTOP]] & 0x7F0) | in fill_decode_caches()
602 sl->left_cbp = IS_INTRA(mb_type) ? 0x7CF : 0x00F; in fill_decode_caches()
Dh264dec.h264 int left_cbp; member