• Home
  • Raw
  • Download

Lines Matching refs:src_width

38                   int src_width,  in ConvertToARGB()  argument
45 int aligned_src_width = (src_width + 1) & ~1; in ConvertToARGB()
64 if (crop_argb == NULL || sample == NULL || src_width <= 0 || in ConvertToARGB()
95 src = sample + (src_width * crop_y + crop_x) * 3; in ConvertToARGB()
96 r = RGB24ToARGB(src, src_width * 3, crop_argb, argb_stride, crop_width, in ConvertToARGB()
100 src = sample + (src_width * crop_y + crop_x) * 3; in ConvertToARGB()
101 r = RAWToARGB(src, src_width * 3, crop_argb, argb_stride, crop_width, in ConvertToARGB()
106 src = sample + (src_width * crop_y + crop_x) * 4; in ConvertToARGB()
107 r = ARGBToARGB(src, src_width * 4, crop_argb, argb_stride, crop_width, in ConvertToARGB()
112 src = sample + (src_width * crop_y + crop_x) * 4; in ConvertToARGB()
113 r = BGRAToARGB(src, src_width * 4, crop_argb, argb_stride, crop_width, in ConvertToARGB()
117 src = sample + (src_width * crop_y + crop_x) * 4; in ConvertToARGB()
118 r = ABGRToARGB(src, src_width * 4, crop_argb, argb_stride, crop_width, in ConvertToARGB()
122 src = sample + (src_width * crop_y + crop_x) * 4; in ConvertToARGB()
123 r = RGBAToARGB(src, src_width * 4, crop_argb, argb_stride, crop_width, in ConvertToARGB()
127 src = sample + (src_width * crop_y + crop_x) * 2; in ConvertToARGB()
128 r = RGB565ToARGB(src, src_width * 2, crop_argb, argb_stride, crop_width, in ConvertToARGB()
132 src = sample + (src_width * crop_y + crop_x) * 2; in ConvertToARGB()
133 r = ARGB1555ToARGB(src, src_width * 2, crop_argb, argb_stride, crop_width, in ConvertToARGB()
137 src = sample + (src_width * crop_y + crop_x) * 2; in ConvertToARGB()
138 r = ARGB4444ToARGB(src, src_width * 2, crop_argb, argb_stride, crop_width, in ConvertToARGB()
142 src = sample + src_width * crop_y + crop_x; in ConvertToARGB()
143 r = I400ToARGB(src, src_width, crop_argb, argb_stride, crop_width, in ConvertToARGB()
149 src = sample + (src_width * crop_y + crop_x); in ConvertToARGB()
151 r = NV12ToARGB(src, src_width, src_uv, aligned_src_width, crop_argb, in ConvertToARGB()
155 src = sample + (src_width * crop_y + crop_x); in ConvertToARGB()
158 r = NV21ToARGB(src, src_width, src_uv, aligned_src_width, crop_argb, in ConvertToARGB()
162 src = sample + (src_width * crop_y) * 12 / 8 + crop_x; in ConvertToARGB()
163 r = M420ToARGB(src, src_width, crop_argb, argb_stride, crop_width, in ConvertToARGB()
169 const uint8* src_y = sample + (src_width * crop_y + crop_x); in ConvertToARGB()
172 int halfwidth = (src_width + 1) / 2; in ConvertToARGB()
175 src_v = sample + src_width * abs_src_height + in ConvertToARGB()
177 src_u = sample + src_width * abs_src_height + in ConvertToARGB()
180 src_u = sample + src_width * abs_src_height + in ConvertToARGB()
182 src_v = sample + src_width * abs_src_height + in ConvertToARGB()
185 r = I420ToARGB(src_y, src_width, src_u, halfwidth, src_v, halfwidth, in ConvertToARGB()
191 const uint8* src_y = sample + (src_width * crop_y + crop_x); in ConvertToARGB()
194 int halfwidth = (src_width + 1) / 2; in ConvertToARGB()
196 src_u = sample + src_width * abs_src_height + in ConvertToARGB()
198 src_v = sample + src_width * abs_src_height + in ConvertToARGB()
200 r = J420ToARGB(src_y, src_width, src_u, halfwidth, src_v, halfwidth, in ConvertToARGB()
207 const uint8* src_y = sample + src_width * crop_y + crop_x; in ConvertToARGB()
210 int halfwidth = (src_width + 1) / 2; in ConvertToARGB()
212 src_v = sample + src_width * abs_src_height + halfwidth * crop_y + in ConvertToARGB()
214 src_u = sample + src_width * abs_src_height + in ConvertToARGB()
217 src_u = sample + src_width * abs_src_height + halfwidth * crop_y + in ConvertToARGB()
219 src_v = sample + src_width * abs_src_height + in ConvertToARGB()
222 r = I422ToARGB(src_y, src_width, src_u, halfwidth, src_v, halfwidth, in ConvertToARGB()
228 const uint8* src_y = sample + src_width * crop_y + crop_x; in ConvertToARGB()
232 src_v = sample + src_width * (abs_src_height + crop_y) + crop_x; in ConvertToARGB()
233 src_u = sample + src_width * (abs_src_height * 2 + crop_y) + crop_x; in ConvertToARGB()
235 src_u = sample + src_width * (abs_src_height + crop_y) + crop_x; in ConvertToARGB()
236 src_v = sample + src_width * (abs_src_height * 2 + crop_y) + crop_x; in ConvertToARGB()
238 r = I444ToARGB(src_y, src_width, src_u, src_width, src_v, src_width, in ConvertToARGB()
244 r = MJPGToARGB(sample, sample_size, crop_argb, argb_stride, src_width, in ConvertToARGB()
259 src = sample + (src_width * crop_y + crop_x) * 4; in ConvertToARGB()
260 r = ARGBRotate(src, src_width * 4, crop_argb, argb_stride, crop_width, in ConvertToARGB()