Lines Matching refs:dc
129 ptrdiff_t dst_stride, int dc) in tgq_dconly() argument
131 int level = av_clip_uint8((dc*s->qtable[0] + 2056) >> 4); in tgq_dconly()
138 int mb_x, int mb_y, const int8_t *dc) in tgq_idct_put_mb_dconly() argument
144 tgq_dconly(s, dest_y, linesize, dc[0]); in tgq_idct_put_mb_dconly()
145 tgq_dconly(s, dest_y + 8, linesize, dc[1]); in tgq_idct_put_mb_dconly()
146 tgq_dconly(s, dest_y + 8 * linesize, linesize, dc[2]); in tgq_idct_put_mb_dconly()
147 tgq_dconly(s, dest_y + 8 * linesize + 8, linesize, dc[3]); in tgq_idct_put_mb_dconly()
149 tgq_dconly(s, dest_cb, frame->linesize[1], dc[4]); in tgq_idct_put_mb_dconly()
150 tgq_dconly(s, dest_cr, frame->linesize[2], dc[5]); in tgq_idct_put_mb_dconly()
158 int8_t dc[6]; in tgq_decode_mb() local
173 memset(dc, bytestream2_get_byte(&s->gb), 4); in tgq_decode_mb()
174 dc[4] = bytestream2_get_byte(&s->gb); in tgq_decode_mb()
175 dc[5] = bytestream2_get_byte(&s->gb); in tgq_decode_mb()
177 bytestream2_get_buffer(&s->gb, dc, 6); in tgq_decode_mb()
180 dc[i] = bytestream2_get_byte(&s->gb); in tgq_decode_mb()
187 tgq_idct_put_mb_dconly(s, frame, mb_x, mb_y, dc); in tgq_decode_mb()