• Home
  • Raw
  • Download

Lines Matching refs:dst_argb

42                   uint8_t* dst_argb,  in ConvertToARGB()  argument
66 (rotation && format != FOURCC_ARGB) || dst_argb == sample; in ConvertToARGB()
67 uint8_t* dest_argb = dst_argb; in ConvertToARGB()
72 if (dst_argb == NULL || sample == NULL || src_width <= 0 || crop_width <= 0 || in ConvertToARGB()
86 dst_argb = rotate_buffer; in ConvertToARGB()
94 r = YUY2ToARGB(src, aligned_src_width * 2, dst_argb, dst_stride_argb, in ConvertToARGB()
99 r = UYVYToARGB(src, aligned_src_width * 2, dst_argb, dst_stride_argb, in ConvertToARGB()
104 r = RGB24ToARGB(src, src_width * 3, dst_argb, dst_stride_argb, crop_width, in ConvertToARGB()
109 r = RAWToARGB(src, src_width * 3, dst_argb, dst_stride_argb, crop_width, in ConvertToARGB()
115 r = ARGBToARGB(src, src_width * 4, dst_argb, dst_stride_argb, in ConvertToARGB()
121 r = BGRAToARGB(src, src_width * 4, dst_argb, dst_stride_argb, crop_width, in ConvertToARGB()
126 r = ABGRToARGB(src, src_width * 4, dst_argb, dst_stride_argb, crop_width, in ConvertToARGB()
131 r = RGBAToARGB(src, src_width * 4, dst_argb, dst_stride_argb, crop_width, in ConvertToARGB()
136 r = AR30ToARGB(src, src_width * 4, dst_argb, dst_stride_argb, crop_width, in ConvertToARGB()
141 r = AB30ToARGB(src, src_width * 4, dst_argb, dst_stride_argb, crop_width, in ConvertToARGB()
146 r = RGB565ToARGB(src, src_width * 2, dst_argb, dst_stride_argb, in ConvertToARGB()
151 r = ARGB1555ToARGB(src, src_width * 2, dst_argb, dst_stride_argb, in ConvertToARGB()
156 r = ARGB4444ToARGB(src, src_width * 2, dst_argb, dst_stride_argb, in ConvertToARGB()
161 r = I400ToARGB(src, src_width, dst_argb, dst_stride_argb, crop_width, in ConvertToARGB()
170 r = NV12ToARGB(src, src_width, src_uv, aligned_src_width, dst_argb, in ConvertToARGB()
178 r = NV21ToARGB(src, src_width, src_uv, aligned_src_width, dst_argb, in ConvertToARGB()
183 r = M420ToARGB(src, src_width, dst_argb, dst_stride_argb, crop_width, in ConvertToARGB()
207 dst_argb, dst_stride_argb, crop_width, inv_crop_height); in ConvertToARGB()
220 dst_argb, dst_stride_argb, crop_width, inv_crop_height); in ConvertToARGB()
233 dst_argb, dst_stride_argb, crop_width, inv_crop_height); in ConvertToARGB()
255 dst_argb, dst_stride_argb, crop_width, inv_crop_height); in ConvertToARGB()
267 dst_argb, dst_stride_argb, crop_width, inv_crop_height); in ConvertToARGB()
284 dst_argb, dst_stride_argb, crop_width, inv_crop_height); in ConvertToARGB()
289 r = MJPGToARGB(sample, sample_size, dst_argb, dst_stride_argb, src_width, in ConvertToARGB()
299 r = ARGBRotate(dst_argb, dst_stride_argb, dest_argb, dest_dst_stride_argb, in ConvertToARGB()
305 r = ARGBRotate(src, src_width * 4, dst_argb, dst_stride_argb, crop_width, in ConvertToARGB()