Home | History | Annotate | Download | only in libvpx

Lines Matching refs:_dst

147 static void y4m_42xmpeg2_42xjpeg_helper(unsigned char *_dst,
156 _dst[x]=(unsigned char)OC_CLAMPI(0,(4*_src[0]-17*_src[OC_MAXI(x-1,0)]+
161 _dst[x]=(unsigned char)OC_CLAMPI(0,(4*_src[x-2]-17*_src[x-1]+
165 _dst[x]=(unsigned char)OC_CLAMPI(0,(4*_src[x-2]-17*_src[x-1]+
169 _dst+=_c_w;
175 static void y4m_convert_42xmpeg2_42xjpeg(y4m_input *_y4m,unsigned char *_dst,
184 _dst+=_y4m->pic_w*_y4m->pic_h;
190 y4m_42xmpeg2_42xjpeg_helper(_dst,_aux,c_w,c_h);
191 _dst+=c_sz;
239 static void y4m_convert_42xpaldv_42xjpeg(y4m_input *_y4m,unsigned char *_dst,
249 _dst+=_y4m->pic_w*_y4m->pic_h;
267 _dst[y*c_w]=(unsigned char)OC_CLAMPI(0,(tmp[0]
273 _dst[y*c_w]=(unsigned char)OC_CLAMPI(0,(tmp[(y-3)*c_w]
278 _dst[y*c_w]=(unsigned char)OC_CLAMPI(0,(tmp[(y-3)*c_w]
282 _dst++;
285 _dst+=c_sz-c_w;
293 _dst[y*c_w]=(unsigned char)OC_CLAMPI(0,(4*tmp[0]
299 _dst[y*c_w]=(unsigned char)OC_CLAMPI(0,(4*tmp[(y-2)*c_w]
304 _dst[y*c_w]=(unsigned char)OC_CLAMPI(0,(4*tmp[(y-2)*c_w]
308 _dst++;
325 static void y4m_422jpeg_420jpeg_helper(unsigned char *_dst,
332 _dst[(y>>1)*_c_w]=OC_CLAMPI(0,(64*_src[0]
338 _dst[(y>>1)*_c_w]=OC_CLAMPI(0,(3*(_src[(y-2)*_c_w]+_src[(y+3)*_c_w])
343 _dst[(y>>1)*_c_w]=OC_CLAMPI(0,(3*(_src[(y-2)*_c_w]
349 _dst++;
391 static void y4m_convert_422jpeg_420jpeg(y4m_input *_y4m,unsigned char *_dst,
403 _dst+=_y4m->pic_w*_y4m->pic_h;
412 y4m_422jpeg_420jpeg_helper(_dst,_aux,c_w,c_h);
414 _dst+=dst_c_sz;
458 static void y4m_convert_422_420jpeg(y4m_input *_y4m,unsigned char *_dst,
471 _dst+=_y4m->pic_w*_y4m->pic_h;
486 y4m_422jpeg_420jpeg_helper(_dst,tmp,c_w,c_h);
488 _dst+=dst_c_sz;
533 static void y4m_convert_411_420jpeg(y4m_input *_y4m,unsigned char *_dst,
547 _dst+=_y4m->pic_w*_y4m->pic_h;
590 y4m_422jpeg_420jpeg_helper(_dst,tmp,dst_c_w,c_h);
591 _dst+=dst_c_sz;
596 static void y4m_convert_444_420jpeg(y4m_input *_y4m,unsigned char *_dst,
610 _dst+=_y4m->pic_w*_y4m->pic_h;
642 y4m_422jpeg_420jpeg_helper(_dst,tmp,dst_c_w,c_h);
643 _dst+=dst_c_sz;
648 static void y4m_convert_mono_420jpeg(y4m_input *_y4m,unsigned char *_dst,
651 _dst+=_y4m->pic_w*_y4m->pic_h;
654 memset(_dst,128,c_sz*2);
658 static void y4m_convert_null(y4m_input *_y4m,unsigned char *_dst,