Lines Matching refs:dc
135 ptrdiff_t dst_stride, int dc)
137 int level = av_clip_uint8((dc*s->qtable[0] + 2056) >> 4);
144 int mb_x, int mb_y, const int8_t *dc)
150 tgq_dconly(s, dest_y, linesize, dc[0]);
151 tgq_dconly(s, dest_y + 8, linesize, dc[1]);
152 tgq_dconly(s, dest_y + 8 * linesize, linesize, dc[2]);
153 tgq_dconly(s, dest_y + 8 * linesize + 8, linesize, dc[3]);
155 tgq_dconly(s, dest_cb, frame->linesize[1], dc[4]);
156 tgq_dconly(s, dest_cr, frame->linesize[2], dc[5]);
164 int8_t dc[6];
182 memset(dc, bytestream2_get_byte(&s->gb), 4);
183 dc[4] = bytestream2_get_byte(&s->gb);
184 dc[5] = bytestream2_get_byte(&s->gb);
186 bytestream2_get_buffer(&s->gb, dc, 6);
189 dc[i] = bytestream2_get_byte(&s->gb);
196 tgq_idct_put_mb_dconly(s, frame, mb_x, mb_y, dc);