Lines Matching refs:_dst

188 static void y4m_42xmpeg2_42xjpeg_helper(unsigned char *_dst,
196 _dst[x] = (unsigned char)OC_CLAMPI(0, (4 * _src[0] - 17 * _src[OC_MAXI(x - 1, 0)] +
201 _dst[x] = (unsigned char)OC_CLAMPI(0, (4 * _src[x - 2] - 17 * _src[x - 1] +
205 _dst[x] = (unsigned char)OC_CLAMPI(0, (4 * _src[x - 2] - 17 * _src[x - 1] +
209 _dst += _c_w;
215 static void y4m_convert_42xmpeg2_42xjpeg(y4m_input *_y4m, unsigned char *_dst,
222 _dst += _y4m->pic_w * _y4m->pic_h;
228 y4m_42xmpeg2_42xjpeg_helper(_dst, _aux, c_w, c_h);
229 _dst += c_sz;
277 static void y4m_convert_42xpaldv_42xjpeg(y4m_input *_y4m, unsigned char *_dst,
287 _dst += _y4m->pic_w * _y4m->pic_h;
305 _dst[y * c_w] = (unsigned char)OC_CLAMPI(0, (tmp[0]
311 _dst[y * c_w] = (unsigned char)OC_CLAMPI(0, (tmp[(y - 3) * c_w]
316 _dst[y * c_w] = (unsigned char)OC_CLAMPI(0, (tmp[(y - 3) * c_w]
320 _dst++;
323 _dst += c_sz - c_w;
332 _dst[y * c_w] = (unsigned char)OC_CLAMPI(0, (4 * tmp[0]
338 _dst[y * c_w] = (unsigned char)OC_CLAMPI(0, (4 * tmp[(y - 2) * c_w]
343 _dst[y * c_w] = (unsigned char)OC_CLAMPI(0, (4 * tmp[(y - 2) * c_w]
347 _dst++;
365 static void y4m_422jpeg_420jpeg_helper(unsigned char *_dst,
372 _dst[(y >> 1)*_c_w] = OC_CLAMPI(0, (64 * _src[0]
378 _dst[(y >> 1)*_c_w] = OC_CLAMPI(0, (3 * (_src[(y - 2) * _c_w] + _src[(y + 3) * _c_w])
383 _dst[(y >> 1)*_c_w] = OC_CLAMPI(0, (3 * (_src[(y - 2) * _c_w]
389 _dst++;
431 static void y4m_convert_422jpeg_420jpeg(y4m_input *_y4m, unsigned char *_dst,
441 _dst += _y4m->pic_w * _y4m->pic_h;
450 y4m_422jpeg_420jpeg_helper(_dst, _aux, c_w, c_h);
452 _dst += dst_c_sz;
496 static void y4m_convert_422_420jpeg(y4m_input *_y4m, unsigned char *_dst,
506 _dst += _y4m->pic_w * _y4m->pic_h;
521 y4m_422jpeg_420jpeg_helper(_dst, tmp, c_w, c_h);
523 _dst += dst_c_sz;
568 static void y4m_convert_411_420jpeg(y4m_input *_y4m, unsigned char *_dst,
582 _dst += _y4m->pic_w * _y4m->pic_h;
625 y4m_422jpeg_420jpeg_helper(_dst, tmp, dst_c_w, c_h);
626 _dst += dst_c_sz;
631 static void y4m_convert_444_420jpeg(y4m_input *_y4m, unsigned char *_dst,
645 _dst += _y4m->pic_w * _y4m->pic_h;
677 y4m_422jpeg_420jpeg_helper(_dst, tmp, dst_c_w, c_h);
678 _dst += dst_c_sz;
683 static void y4m_convert_mono_420jpeg(y4m_input *_y4m, unsigned char *_dst,
687 _dst += _y4m->pic_w * _y4m->pic_h;
690 memset(_dst, 128, c_sz * 2);
694 static void y4m_convert_null(y4m_input *_y4m, unsigned char *_dst,
697 (void)_dst;