Home | History | Annotate | Download | only in util

Lines Matching refs:dst_width

32 int dst_width = 0, dst_height = 0;  // new width and height
95 dst_width = atoi(argv[++c]); // NOLINT
147 if (dst_width == 0 || dst_height == 0) {
149 dst_width = rec_width;
152 dst_width = Abs(image_width);
164 int dst_width, int dst_height,
167 for (int x = 0; x < dst_width; x += kTileX) {
169 if (x + clip_width > dst_width) {
170 clip_width = dst_width - x;
179 dst_width, dst_height,
230 const int dst_size = dst_width * dst_height * 4; // ARGB scaled
231 const int y_size = dst_width * dst_height;
232 const int uv_size = ((dst_width + 1) / 2) * ((dst_height + 1) / 2);
260 dst_width, dst_height);
291 int half_dst_width = (dst_width + 1) / 2;
298 ch_rec, dst_width,
299 ch_rec + dst_width * dst_height, half_dst_width,
300 ch_rec + dst_width * dst_height +
302 dst_width, dst_height,
307 ch_dst, dst_width * 4,
308 dst_width, dst_height,
322 int half_width = (dst_width + 1) / 2;
324 libyuv::ARGBToI420(ch_dst, dst_width * 4,
325 ch_rec, dst_width,
326 ch_rec + dst_width * dst_height, half_width,
327 ch_rec + dst_width * dst_height +
329 dst_width, dst_height);