/third_party/ffmpeg/libavcodec/ |
D | h263.c | 181 const int chroma_qp= s->chroma_qscale_table[qp_tc]; in ff_h263_loop_filter() local 185 s->h263dsp.h263_v_loop_filter(dest_cb, uvlinesize, chroma_qp); in ff_h263_loop_filter() 186 s->h263dsp.h263_v_loop_filter(dest_cr, uvlinesize, chroma_qp); in ff_h263_loop_filter() 199 const int chroma_qp= s->chroma_qscale_table[qp_dt]; in ff_h263_loop_filter() local 201 s->h263dsp.h263_h_loop_filter(dest_cb - 8 * uvlinesize, uvlinesize, chroma_qp); in ff_h263_loop_filter() 202 s->h263dsp.h263_h_loop_filter(dest_cr - 8 * uvlinesize, uvlinesize, chroma_qp); in ff_h263_loop_filter() 223 const int chroma_qp= s->chroma_qscale_table[qp_lc]; in ff_h263_loop_filter() local 225 s->h263dsp.h263_h_loop_filter(dest_cb, uvlinesize, chroma_qp); in ff_h263_loop_filter() 226 s->h263dsp.h263_h_loop_filter(dest_cr, uvlinesize, chroma_qp); in ff_h263_loop_filter()
|
D | h264_loopfilter.c | 534 …chroma_qp_avg[0] = (sl->chroma_qp[0] + get_chroma_qp(h->ps.pps, 0, h->cur_pic.qscale_table[mbn_xy]… in filter_mb_dir() 535 …chroma_qp_avg[1] = (sl->chroma_qp[1] + get_chroma_qp(h->ps.pps, 1, h->cur_pic.qscale_table[mbn_xy]… in filter_mb_dir() 599 …chroma_qp_avg[0] = (sl->chroma_qp[0] + get_chroma_qp(h->ps.pps, 0, h->cur_pic.qscale_table[mbm_xy]… in filter_mb_dir() 600 …chroma_qp_avg[1] = (sl->chroma_qp[1] + get_chroma_qp(h->ps.pps, 1, h->cur_pic.qscale_table[mbm_xy]… in filter_mb_dir() 688 …filter_mb_edgev ( &img_cb[4*edge << h->pixel_shift], uvlinesize, bS, sl->chroma_qp[0], a, b, h, 0); in filter_mb_dir() 689 …filter_mb_edgev ( &img_cr[4*edge << h->pixel_shift], uvlinesize, bS, sl->chroma_qp[1], a, b, h, 0); in filter_mb_dir() 691 …filter_mb_edgecv( &img_cb[2*edge << h->pixel_shift], uvlinesize, bS, sl->chroma_qp[0], a, b, h, 0); in filter_mb_dir() 692 …filter_mb_edgecv( &img_cr[2*edge << h->pixel_shift], uvlinesize, bS, sl->chroma_qp[1], a, b, h, 0); in filter_mb_dir() 700 … filter_mb_edgech(&img_cb[4*edge*uvlinesize], uvlinesize, bS, sl->chroma_qp[0], a, b, h, 0); in filter_mb_dir() 701 … filter_mb_edgech(&img_cr[4*edge*uvlinesize], uvlinesize, bS, sl->chroma_qp[1], a, b, h, 0); in filter_mb_dir() [all …]
|
D | h264_mb_template.c | 230 qp[0] = sl->chroma_qp[0] + 3; in FUNC() 231 qp[1] = sl->chroma_qp[1] + 3; in FUNC() 233 qp[0] = sl->chroma_qp[0]; in FUNC() 234 qp[1] = sl->chroma_qp[1]; in FUNC()
|
D | h264_cavlc.c | 633 int qscale = p == 0 ? sl->qscale : sl->chroma_qp[p - 1]; in decode_luma_residual() 1120 sl->chroma_qp[0] = get_chroma_qp(h->ps.pps, 0, sl->qscale); in ff_h264_decode_mb_cavlc() 1121 sl->chroma_qp[1] = get_chroma_qp(h->ps.pps, 1, sl->qscale); in ff_h264_decode_mb_cavlc() 1157 …l = h->ps.pps->dequant4_coeff[chroma_idx+1+(IS_INTRA( mb_type ) ? 0:3)][sl->chroma_qp[chroma_idx]]; in ff_h264_decode_mb_cavlc()
|
D | h264_cabac.c | 1868 int qscale = p == 0 ? sl->qscale : sl->chroma_qp[p - 1]; in decode_cabac_luma_residual() 2414 sl->chroma_qp[0] = get_chroma_qp(h->ps.pps, 0, sl->qscale); in ff_h264_decode_mb_cabac() 2415 sl->chroma_qp[1] = get_chroma_qp(h->ps.pps, 1, sl->qscale); in ff_h264_decode_mb_cabac() 2444 … qmul = h->ps.pps->dequant4_coeff[c+1+(IS_INTRA( mb_type ) ? 0:3)][sl->chroma_qp[c]]; in ff_h264_decode_mb_cabac() 2468 … qmul = h->ps.pps->dequant4_coeff[c+1+(IS_INTRA( mb_type ) ? 0:3)][sl->chroma_qp[c]]; in ff_h264_decode_mb_cabac()
|
D | h264_slice.c | 1910 sl->chroma_qp[0] = get_chroma_qp(pps, 0, sl->qscale); in h264_slice_header_parse() 1911 sl->chroma_qp[1] = get_chroma_qp(pps, 1, sl->qscale); in h264_slice_header_parse() 2511 sl->chroma_qp[0] = get_chroma_qp(h->ps.pps, 0, h->cur_pic.qscale_table[mb_xy]); in loop_filter() 2512 sl->chroma_qp[1] = get_chroma_qp(h->ps.pps, 1, h->cur_pic.qscale_table[mb_xy]); in loop_filter() 2526 sl->chroma_qp[0] = get_chroma_qp(h->ps.pps, 0, sl->qscale); in loop_filter() 2527 sl->chroma_qp[1] = get_chroma_qp(h->ps.pps, 1, sl->qscale); in loop_filter()
|
D | h264dec.h | 195 int chroma_qp[2]; // QPc member
|
D | h264_mb.c | 625 int qscale = p == 0 ? sl->qscale : sl->chroma_qp[p - 1]; in hl_decode_mb_predict_luma()
|