Home | History | Annotate | Download | only in libvpx

Lines Matching refs:_dst

188 static void y4m_42xmpeg2_42xjpeg_helper(unsigned char *_dst,
197 _dst[x] = (unsigned char)OC_CLAMPI(
207 _dst[x] = (unsigned char)OC_CLAMPI(
215 _dst[x] = (unsigned char)OC_CLAMPI(
223 _dst += _c_w;
229 static void y4m_convert_42xmpeg2_42xjpeg(y4m_input *_y4m, unsigned char *_dst,
236 _dst += _y4m->pic_w * _y4m->pic_h;
242 y4m_42xmpeg2_42xjpeg_helper(_dst, _aux, c_w, c_h);
243 _dst += c_sz;
291 static void y4m_convert_42xpaldv_42xjpeg(y4m_input *_y4m, unsigned char *_dst,
301 _dst += _y4m->pic_w * _y4m->pic_h;
319 _dst[y * c_w] = (unsigned char)OC_CLAMPI(
329 _dst[y * c_w] = (unsigned char)OC_CLAMPI(
338 _dst[y * c_w] = (unsigned char)OC_CLAMPI(
347 _dst++;
350 _dst += c_sz - c_w;
359 _dst[y * c_w] = (unsigned char)OC_CLAMPI(
369 _dst[y * c_w] = (unsigned char)OC_CLAMPI(
378 _dst[y * c_w] = (unsigned char)OC_CLAMPI(
387 _dst++;
405 static void y4m_422jpeg_420jpeg_helper(unsigned char *_dst,
413 _dst[(y >> 1) * _c_w] =
422 _dst[(y >> 1) * _c_w] =
431 _dst[(y >> 1) * _c_w] = OC_CLAMPI(
441 _dst++;
483 static void y4m_convert_422jpeg_420jpeg(y4m_input *_y4m, unsigned char *_dst,
493 _dst += _y4m->pic_w * _y4m->pic_h;
502 y4m_422jpeg_420jpeg_helper(_dst, _aux, c_w, c_h);
504 _dst += dst_c_sz;
548 static void y4m_convert_422_420jpeg(y4m_input *_y4m, unsigned char *_dst,
558 _dst += _y4m->pic_w * _y4m->pic_h;
573 y4m_422jpeg_420jpeg_helper(_dst, tmp, c_w, c_h);
575 _dst += dst_c_sz;
620 static void y4m_convert_411_420jpeg(y4m_input *_y4m, unsigned char *_dst,
634 _dst += _y4m->pic_w * _y4m->pic_h;
701 y4m_422jpeg_420jpeg_helper(_dst, tmp, dst_c_w, c_h);
702 _dst += dst_c_sz;
707 static void y4m_convert_444_420jpeg(y4m_input *_y4m, unsigned char *_dst,
721 _dst += _y4m->pic_w * _y4m->pic_h;
764 y4m_422jpeg_420jpeg_helper(_dst, tmp, dst_c_w, c_h);
765 _dst += dst_c_sz;
770 static void y4m_convert_mono_420jpeg(y4m_input *_y4m, unsigned char *_dst,
774 _dst += _y4m->pic_w * _y4m->pic_h;
777 memset(_dst, 128, c_sz * 2);
781 static void y4m_convert_null(y4m_input *_y4m, unsigned char *_dst,
784 (void)_dst;