Coverage Report

Created: 2026-07-25 07:03

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libavif/third_party/libyuv/source/scale.c
Line
Count
Source
1
/*
2
 *  Copyright 2011 The LibYuv Project Authors. All rights reserved.
3
 *
4
 *  Use of this source code is governed by a BSD-style license
5
 *  that can be found in the LICENSE file in the root of the source
6
 *  tree. An additional intellectual property rights grant can be found
7
 *  in the file PATENTS. All contributing project authors may
8
 *  be found in the AUTHORS file in the root of the source tree.
9
 */
10
11
#include "libyuv/scale.h"
12
13
#include <assert.h>
14
#include <string.h>
15
16
#include "libyuv/planar_functions.h"  // For CopyPlane
17
#include "libyuv/row.h"
18
#include "libyuv/scale_row.h"
19
20
2.66k
static __inline int Abs(int v) {
21
2.66k
  return v >= 0 ? v : -v;
22
2.66k
}
23
24
269
#define CENTERSTART(dx, s) (dx < 0) ? -((-dx >> 1) + s) : ((dx >> 1) + s)
25
26
197k
#define MIN1(x) ((x) < 1 ? 1 : (x))
27
28
67.5k
static __inline uint32_t SumPixels(int iboxwidth, const uint16_t* src_ptr) {
29
67.5k
  uint32_t sum = 0u;
30
67.5k
  int x;
31
67.5k
  assert(iboxwidth > 0);
32
322k
  for (x = 0; x < iboxwidth; ++x) {
33
254k
    sum += src_ptr[x];
34
254k
  }
35
67.5k
  return sum;
36
67.5k
}
37
38
136k
static __inline uint32_t SumPixels_16(int iboxwidth, const uint32_t* src_ptr) {
39
136k
  uint32_t sum = 0u;
40
136k
  int x;
41
136k
  assert(iboxwidth > 0);
42
706k
  for (x = 0; x < iboxwidth; ++x) {
43
570k
    sum += src_ptr[x];
44
570k
  }
45
136k
  return sum;
46
136k
}
47
48
static void ScaleAddCols2_C(int dst_width,
49
                            int boxheight,
50
                            int x,
51
                            int dx,
52
                            const uint16_t* src_ptr,
53
1.99k
                            uint8_t* dst_ptr) {
54
1.99k
  int i;
55
1.99k
  int scaletbl[2];
56
1.99k
  int minboxwidth = dx >> 16;
57
1.99k
  int boxwidth;
58
1.99k
  scaletbl[0] = 65536 / (MIN1(minboxwidth) * boxheight);
59
1.99k
  scaletbl[1] = 65536 / (MIN1(minboxwidth + 1) * boxheight);
60
46.6k
  for (i = 0; i < dst_width; ++i) {
61
44.6k
    int ix = x >> 16;
62
44.6k
    x += dx;
63
44.6k
    boxwidth = MIN1((x >> 16) - ix);
64
44.6k
    int scaletbl_index = boxwidth - minboxwidth;
65
44.6k
    assert((scaletbl_index == 0) || (scaletbl_index == 1));
66
44.6k
    *dst_ptr++ = (uint8_t)(SumPixels(boxwidth, src_ptr + ix) *
67
44.6k
                               scaletbl[scaletbl_index] >>
68
44.6k
                           16);
69
44.6k
  }
70
1.99k
}
71
72
static void ScaleAddCols2_16_C(int dst_width,
73
                               int boxheight,
74
                               int x,
75
                               int dx,
76
                               const uint32_t* src_ptr,
77
3.63k
                               uint16_t* dst_ptr) {
78
3.63k
  int i;
79
3.63k
  int scaletbl[2];
80
3.63k
  int minboxwidth = dx >> 16;
81
3.63k
  int boxwidth;
82
3.63k
  scaletbl[0] = 65536 / (MIN1(minboxwidth) * boxheight);
83
3.63k
  scaletbl[1] = 65536 / (MIN1(minboxwidth + 1) * boxheight);
84
137k
  for (i = 0; i < dst_width; ++i) {
85
133k
    int ix = x >> 16;
86
133k
    x += dx;
87
133k
    boxwidth = MIN1((x >> 16) - ix);
88
133k
    int scaletbl_index = boxwidth - minboxwidth;
89
133k
    assert((scaletbl_index == 0) || (scaletbl_index == 1));
90
133k
    *dst_ptr++ =
91
133k
        SumPixels_16(boxwidth, src_ptr + ix) * scaletbl[scaletbl_index] >> 16;
92
133k
  }
93
3.63k
}
94
95
static void ScaleAddCols0_C(int dst_width,
96
                            int boxheight,
97
                            int x,
98
                            int dx,
99
                            const uint16_t* src_ptr,
100
0
                            uint8_t* dst_ptr) {
101
0
  int scaleval = 65536 / boxheight;
102
0
  int i;
103
0
  (void)dx;
104
0
  src_ptr += (x >> 16);
105
0
  for (i = 0; i < dst_width; ++i) {
106
0
    *dst_ptr++ = (uint8_t)(src_ptr[i] * scaleval >> 16);
107
0
  }
108
0
}
109
110
static void ScaleAddCols1_C(int dst_width,
111
                            int boxheight,
112
                            int x,
113
                            int dx,
114
                            const uint16_t* src_ptr,
115
992
                            uint8_t* dst_ptr) {
116
992
  int boxwidth = MIN1(dx >> 16);
117
992
  int scaleval = 65536 / (boxwidth * boxheight);
118
992
  int i;
119
992
  x >>= 16;
120
23.8k
  for (i = 0; i < dst_width; ++i) {
121
22.8k
    *dst_ptr++ = (uint8_t)(SumPixels(boxwidth, src_ptr + x) * scaleval >> 16);
122
22.8k
    x += boxwidth;
123
22.8k
  }
124
992
}
125
126
static void ScaleAddCols1_16_C(int dst_width,
127
                               int boxheight,
128
                               int x,
129
                               int dx,
130
                               const uint32_t* src_ptr,
131
317
                               uint16_t* dst_ptr) {
132
317
  int boxwidth = MIN1(dx >> 16);
133
317
  int scaleval = 65536 / (boxwidth * boxheight);
134
317
  int i;
135
3.29k
  for (i = 0; i < dst_width; ++i) {
136
2.97k
    *dst_ptr++ = SumPixels_16(boxwidth, src_ptr + x) * scaleval >> 16;
137
2.97k
    x += boxwidth;
138
2.97k
  }
139
317
}
140
141
// Scale plane down to any dimensions, with interpolation.
142
// (boxfilter).
143
//
144
// Same method as SimpleScale, which is fixed point, outputting
145
// one pixel of destination using fixed point (16.16) to step
146
// through source, sampling a box of pixel with simple
147
// averaging.
148
static int ScalePlaneBox(int src_width,
149
                         int src_height,
150
                         int dst_width,
151
                         int dst_height,
152
                         int src_stride,
153
                         int dst_stride,
154
                         const uint8_t* src_ptr,
155
93
                         uint8_t* dst_ptr) {
156
93
  int j, k;
157
  // Initial source x/y coordinate and step values as 16.16 fixed point.
158
93
  int x = 0;
159
93
  int y = 0;
160
93
  int dx = 0;
161
93
  int dy = 0;
162
93
  const int max_y = (src_height << 16);
163
93
  ScaleSlope(src_width, src_height, dst_width, dst_height, kFilterBox, &x, &y,
164
93
             &dx, &dy);
165
93
  src_width = Abs(src_width);
166
93
  {
167
    // Allocate a row buffer of uint16_t.
168
93
    align_buffer_64(row16, src_width * 2);
169
93
    if (!row16)
170
0
      return 1;
171
93
    void (*ScaleAddCols)(int dst_width, int boxheight, int x, int dx,
172
93
                         const uint16_t* src_ptr, uint8_t* dst_ptr) =
173
93
        (dx & 0xffff) ? ScaleAddCols2_C
174
93
                      : ((dx != 0x10000) ? ScaleAddCols1_C : ScaleAddCols0_C);
175
93
    void (*ScaleAddRow)(const uint8_t* src_ptr, uint16_t* dst_ptr,
176
93
                        int src_width) = ScaleAddRow_C;
177
178
3.07k
    for (j = 0; j < dst_height; ++j) {
179
2.98k
      int boxheight;
180
2.98k
      int iy = y >> 16;
181
2.98k
      const uint8_t* src = src_ptr + iy * (int64_t)src_stride;
182
2.98k
      y += dy;
183
2.98k
      if (y > max_y) {
184
0
        y = max_y;
185
0
      }
186
2.98k
      boxheight = MIN1((y >> 16) - iy);
187
2.98k
      memset(row16, 0, src_width * 2);
188
31.8k
      for (k = 0; k < boxheight; ++k) {
189
28.8k
        ScaleAddRow(src, (uint16_t*)(row16), src_width);
190
28.8k
        src += src_stride;
191
28.8k
      }
192
2.98k
      ScaleAddCols(dst_width, boxheight, x, dx, (uint16_t*)(row16), dst_ptr);
193
2.98k
      dst_ptr += dst_stride;
194
2.98k
    }
195
93
    free_aligned_buffer_64(row16);
196
93
  }
197
0
  return 0;
198
93
}
199
200
static int ScalePlaneBox_16(int src_width,
201
                            int src_height,
202
                            int dst_width,
203
                            int dst_height,
204
                            int src_stride,
205
                            int dst_stride,
206
                            const uint16_t* src_ptr,
207
135
                            uint16_t* dst_ptr) {
208
135
  int j, k;
209
  // Initial source x/y coordinate and step values as 16.16 fixed point.
210
135
  int x = 0;
211
135
  int y = 0;
212
135
  int dx = 0;
213
135
  int dy = 0;
214
135
  const int max_y = (src_height << 16);
215
135
  ScaleSlope(src_width, src_height, dst_width, dst_height, kFilterBox, &x, &y,
216
135
             &dx, &dy);
217
135
  src_width = Abs(src_width);
218
135
  {
219
    // Allocate a row buffer of uint32_t.
220
135
    align_buffer_64(row32, src_width * 4);
221
135
    if (!row32)
222
0
      return 1;
223
135
    void (*ScaleAddCols)(int dst_width, int boxheight, int x, int dx,
224
135
                         const uint32_t* src_ptr, uint16_t* dst_ptr) =
225
135
        (dx & 0xffff) ? ScaleAddCols2_16_C : ScaleAddCols1_16_C;
226
135
    void (*ScaleAddRow)(const uint16_t* src_ptr, uint32_t* dst_ptr,
227
135
                        int src_width) = ScaleAddRow_16_C;
228
229
#if defined(HAS_SCALEADDROW_16_SSE2)
230
    if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(src_width, 16)) {
231
      ScaleAddRow = ScaleAddRow_16_SSE2;
232
    }
233
#endif
234
235
4.08k
    for (j = 0; j < dst_height; ++j) {
236
3.95k
      int boxheight;
237
3.95k
      int iy = y >> 16;
238
3.95k
      const uint16_t* src = src_ptr + iy * (int64_t)src_stride;
239
3.95k
      y += dy;
240
3.95k
      if (y > max_y) {
241
0
        y = max_y;
242
0
      }
243
3.95k
      boxheight = MIN1((y >> 16) - iy);
244
3.95k
      memset(row32, 0, src_width * 4);
245
30.2k
      for (k = 0; k < boxheight; ++k) {
246
26.2k
        ScaleAddRow(src, (uint32_t*)(row32), src_width);
247
26.2k
        src += src_stride;
248
26.2k
      }
249
3.95k
      ScaleAddCols(dst_width, boxheight, x, dx, (uint32_t*)(row32), dst_ptr);
250
3.95k
      dst_ptr += dst_stride;
251
3.95k
    }
252
135
    free_aligned_buffer_64(row32);
253
135
  }
254
0
  return 0;
255
135
}
256
257
// Scale plane down with bilinear interpolation.
258
static int ScalePlaneBilinearDown(int src_width,
259
                                  int src_height,
260
                                  int dst_width,
261
                                  int dst_height,
262
                                  int src_stride,
263
                                  int dst_stride,
264
                                  const uint8_t* src_ptr,
265
                                  uint8_t* dst_ptr,
266
318
                                  enum FilterMode filtering) {
267
  // Initial source x/y coordinate and step values as 16.16 fixed point.
268
318
  int x = 0;
269
318
  int y = 0;
270
318
  int dx = 0;
271
318
  int dy = 0;
272
  // TODO(fbarchard): Consider not allocating row buffer for kFilterLinear.
273
  // Allocate a row buffer.
274
318
  align_buffer_64(row, src_width);
275
318
  if (!row)
276
0
    return 1;
277
278
318
  const int max_y = (src_height - 1) << 16;
279
318
  int j;
280
318
  void (*ScaleFilterCols)(uint8_t* dst_ptr, const uint8_t* src_ptr,
281
318
                          int dst_width, int x, int dx) =
282
318
      (src_width >= 32768) ? ScaleFilterCols64_C : ScaleFilterCols_C;
283
318
  void (*InterpolateRow)(uint8_t* dst_ptr, const uint8_t* src_ptr,
284
318
                         ptrdiff_t src_stride, int dst_width,
285
318
                         int source_y_fraction) = InterpolateRow_C;
286
318
  ScaleSlope(src_width, src_height, dst_width, dst_height, filtering, &x, &y,
287
318
             &dx, &dy);
288
318
  src_width = Abs(src_width);
289
290
318
  if (y > max_y) {
291
23
    y = max_y;
292
23
  }
293
294
28.6k
  for (j = 0; j < dst_height; ++j) {
295
28.3k
    int yi = y >> 16;
296
28.3k
    const uint8_t* src = src_ptr + yi * (int64_t)src_stride;
297
28.3k
    if (filtering == kFilterLinear) {
298
3.36k
      ScaleFilterCols(dst_ptr, src, dst_width, x, dx);
299
25.0k
    } else {
300
25.0k
      int yf = (y >> 8) & 255;
301
25.0k
      InterpolateRow(row, src, src_stride, src_width, yf);
302
25.0k
      ScaleFilterCols(dst_ptr, row, dst_width, x, dx);
303
25.0k
    }
304
28.3k
    dst_ptr += dst_stride;
305
28.3k
    y += dy;
306
28.3k
    if (y > max_y) {
307
344
      y = max_y;
308
344
    }
309
28.3k
  }
310
318
  free_aligned_buffer_64(row);
311
318
  return 0;
312
318
}
313
314
static int ScalePlaneBilinearDown_16(int src_width,
315
                                     int src_height,
316
                                     int dst_width,
317
                                     int dst_height,
318
                                     int src_stride,
319
                                     int dst_stride,
320
                                     const uint16_t* src_ptr,
321
                                     uint16_t* dst_ptr,
322
386
                                     enum FilterMode filtering) {
323
  // Initial source x/y coordinate and step values as 16.16 fixed point.
324
386
  int x = 0;
325
386
  int y = 0;
326
386
  int dx = 0;
327
386
  int dy = 0;
328
  // TODO(fbarchard): Consider not allocating row buffer for kFilterLinear.
329
  // Allocate a row buffer.
330
386
  align_buffer_64(row, src_width * 2);
331
386
  if (!row)
332
0
    return 1;
333
334
386
  const int max_y = (src_height - 1) << 16;
335
386
  int j;
336
386
  void (*ScaleFilterCols)(uint16_t* dst_ptr, const uint16_t* src_ptr,
337
386
                          int dst_width, int x, int dx) =
338
386
      (src_width >= 32768) ? ScaleFilterCols64_16_C : ScaleFilterCols_16_C;
339
386
  void (*InterpolateRow)(uint16_t* dst_ptr, const uint16_t* src_ptr,
340
386
                         ptrdiff_t src_stride, int dst_width,
341
386
                         int source_y_fraction) = InterpolateRow_16_C;
342
386
  ScaleSlope(src_width, src_height, dst_width, dst_height, filtering, &x, &y,
343
386
             &dx, &dy);
344
386
  src_width = Abs(src_width);
345
346
386
  if (y > max_y) {
347
8
    y = max_y;
348
8
  }
349
350
24.4k
  for (j = 0; j < dst_height; ++j) {
351
24.0k
    int yi = y >> 16;
352
24.0k
    const uint16_t* src = src_ptr + yi * (int64_t)src_stride;
353
24.0k
    if (filtering == kFilterLinear) {
354
618
      ScaleFilterCols(dst_ptr, src, dst_width, x, dx);
355
23.4k
    } else {
356
23.4k
      int yf = (y >> 8) & 255;
357
23.4k
      InterpolateRow((uint16_t*)row, src, src_stride, src_width, yf);
358
23.4k
      ScaleFilterCols(dst_ptr, (uint16_t*)row, dst_width, x, dx);
359
23.4k
    }
360
24.0k
    dst_ptr += dst_stride;
361
24.0k
    y += dy;
362
24.0k
    if (y > max_y) {
363
399
      y = max_y;
364
399
    }
365
24.0k
  }
366
386
  free_aligned_buffer_64(row);
367
386
  return 0;
368
386
}
369
370
// Scale up down with bilinear interpolation.
371
static int ScalePlaneBilinearUp(int src_width,
372
                                int src_height,
373
                                int dst_width,
374
                                int dst_height,
375
                                int src_stride,
376
                                int dst_stride,
377
                                const uint8_t* src_ptr,
378
                                uint8_t* dst_ptr,
379
373
                                enum FilterMode filtering) {
380
373
  int j;
381
  // Initial source x/y coordinate and step values as 16.16 fixed point.
382
373
  int x = 0;
383
373
  int y = 0;
384
373
  int dx = 0;
385
373
  int dy = 0;
386
373
  const int max_y = (src_height - 1) << 16;
387
373
  void (*InterpolateRow)(uint8_t* dst_ptr, const uint8_t* src_ptr,
388
373
                         ptrdiff_t src_stride, int dst_width,
389
373
                         int source_y_fraction) = InterpolateRow_C;
390
373
  void (*ScaleFilterCols)(uint8_t* dst_ptr, const uint8_t* src_ptr,
391
373
                          int dst_width, int x, int dx) =
392
373
      filtering ? ScaleFilterCols_C : ScaleCols_C;
393
373
  ScaleSlope(src_width, src_height, dst_width, dst_height, filtering, &x, &y,
394
373
             &dx, &dy);
395
373
  src_width = Abs(src_width);
396
397
373
  if (filtering && src_width >= 32768) {
398
0
    ScaleFilterCols = ScaleFilterCols64_C;
399
0
  }
400
373
  if (!filtering && src_width * 2 == dst_width && x < 0x8000) {
401
0
    ScaleFilterCols = ScaleColsUp2_C;
402
0
  }
403
404
373
  if (y > max_y) {
405
63
    y = max_y;
406
63
  }
407
373
  {
408
373
    int yi = y >> 16;
409
373
    const uint8_t* src = src_ptr + yi * (int64_t)src_stride;
410
411
    // Allocate 2 row buffers.
412
373
    const int row_size = (dst_width + 31) & ~31;
413
373
    align_buffer_64(row, row_size * 2);
414
373
    if (!row)
415
0
      return 1;
416
417
373
    uint8_t* rowptr = row;
418
373
    int rowstride = row_size;
419
373
    int lasty = yi;
420
421
373
    ScaleFilterCols(rowptr, src, dst_width, x, dx);
422
373
    if (src_height > 1) {
423
306
      src += src_stride;
424
306
    }
425
373
    ScaleFilterCols(rowptr + rowstride, src, dst_width, x, dx);
426
373
    if (src_height > 2) {
427
272
      src += src_stride;
428
272
    }
429
430
2.76M
    for (j = 0; j < dst_height; ++j) {
431
2.76M
      yi = y >> 16;
432
2.76M
      if (yi != lasty) {
433
34.3k
        if (y > max_y) {
434
0
          y = max_y;
435
0
          yi = y >> 16;
436
0
          src = src_ptr + yi * (int64_t)src_stride;
437
0
        }
438
34.3k
        if (yi != lasty) {
439
34.3k
          ScaleFilterCols(rowptr, src, dst_width, x, dx);
440
34.3k
          rowptr += rowstride;
441
34.3k
          rowstride = -rowstride;
442
34.3k
          lasty = yi;
443
34.3k
          if ((y + 65536) < max_y) {
444
34.1k
            src += src_stride;
445
34.1k
          }
446
34.3k
        }
447
34.3k
      }
448
2.76M
      if (filtering == kFilterLinear) {
449
361k
        InterpolateRow(dst_ptr, rowptr, 0, dst_width, 0);
450
2.40M
      } else {
451
2.40M
        int yf = (y >> 8) & 255;
452
2.40M
        InterpolateRow(dst_ptr, rowptr, rowstride, dst_width, yf);
453
2.40M
      }
454
2.76M
      dst_ptr += dst_stride;
455
2.76M
      y += dy;
456
2.76M
    }
457
373
    free_aligned_buffer_64(row);
458
373
  }
459
0
  return 0;
460
373
}
461
462
// Scale plane, horizontally up by 2 times.
463
// Uses linear filter horizontally, nearest vertically.
464
// This is an optimized version for scaling up a plane to 2 times of
465
// its original width, using linear interpolation.
466
// This is used to scale U and V planes of I422 to I444.
467
static void ScalePlaneUp2_Linear(int src_width,
468
                                 int src_height,
469
                                 int dst_width,
470
                                 int dst_height,
471
                                 int src_stride,
472
                                 int dst_stride,
473
                                 const uint8_t* src_ptr,
474
48
                                 uint8_t* dst_ptr) {
475
48
  void (*ScaleRowUp)(const uint8_t* src_ptr, uint8_t* dst_ptr, int dst_width) =
476
48
      ScaleRowUp2_Linear_Any_C;
477
48
  int i;
478
48
  int y;
479
48
  int dy;
480
481
48
  (void)src_width;
482
  // This function can only scale up by 2 times horizontally.
483
48
  assert(src_width == ((dst_width + 1) / 2));
484
485
48
  if (dst_height == 1) {
486
9
    ScaleRowUp(src_ptr + ((src_height - 1) / 2) * (int64_t)src_stride, dst_ptr,
487
9
               dst_width);
488
39
  } else {
489
39
    dy = FixedDiv(src_height - 1, dst_height - 1);
490
39
    y = (1 << 15) - 1;
491
118k
    for (i = 0; i < dst_height; ++i) {
492
118k
      ScaleRowUp(src_ptr + (y >> 16) * (int64_t)src_stride, dst_ptr, dst_width);
493
118k
      dst_ptr += dst_stride;
494
118k
      y += dy;
495
118k
    }
496
39
  }
497
48
}
498
499
// Scale plane, up by 2 times.
500
// This is an optimized version for scaling up a plane to 2 times of
501
// its original size, using bilinear interpolation.
502
// This is used to scale U and V planes of I420 to I444.
503
static void ScalePlaneUp2_Bilinear(int src_width,
504
                                   int src_height,
505
                                   int dst_width,
506
                                   int dst_height,
507
                                   int src_stride,
508
                                   int dst_stride,
509
                                   const uint8_t* src_ptr,
510
31
                                   uint8_t* dst_ptr) {
511
31
  void (*Scale2RowUp)(const uint8_t* src_ptr, ptrdiff_t src_stride,
512
31
                      uint8_t* dst_ptr, ptrdiff_t dst_stride, int dst_width) =
513
31
      ScaleRowUp2_Bilinear_Any_C;
514
31
  int x;
515
516
31
  (void)src_width;
517
  // This function can only scale up by 2 times.
518
31
  assert(src_width == ((dst_width + 1) / 2));
519
31
  assert(src_height == ((dst_height + 1) / 2));
520
521
31
  Scale2RowUp(src_ptr, 0, dst_ptr, 0, dst_width);
522
31
  dst_ptr += dst_stride;
523
291
  for (x = 0; x < src_height - 1; ++x) {
524
260
    Scale2RowUp(src_ptr, src_stride, dst_ptr, dst_stride, dst_width);
525
260
    src_ptr += src_stride;
526
    // TODO(fbarchard): Test performance of writing one row of destination at a
527
    // time.
528
260
    dst_ptr += 2 * dst_stride;
529
260
  }
530
31
  if (!(dst_height & 1)) {
531
12
    Scale2RowUp(src_ptr, 0, dst_ptr, 0, dst_width);
532
12
  }
533
31
}
534
535
// Scale at most 14 bit plane, horizontally up by 2 times.
536
// This is an optimized version for scaling up a plane to 2 times of
537
// its original width, using linear interpolation.
538
// stride is in count of uint16_t.
539
// This is used to scale U and V planes of I210 to I410 and I212 to I412.
540
static void ScalePlaneUp2_12_Linear(int src_width,
541
                                    int src_height,
542
                                    int dst_width,
543
                                    int dst_height,
544
                                    int src_stride,
545
                                    int dst_stride,
546
                                    const uint16_t* src_ptr,
547
39
                                    uint16_t* dst_ptr) {
548
39
  void (*ScaleRowUp)(const uint16_t* src_ptr, uint16_t* dst_ptr,
549
39
                     int dst_width) = ScaleRowUp2_Linear_16_Any_C;
550
39
  int i;
551
39
  int y;
552
39
  int dy;
553
554
39
  (void)src_width;
555
  // This function can only scale up by 2 times horizontally.
556
39
  assert(src_width == ((dst_width + 1) / 2));
557
558
39
  if (dst_height == 1) {
559
9
    ScaleRowUp(src_ptr + ((src_height - 1) / 2) * (int64_t)src_stride, dst_ptr,
560
9
               dst_width);
561
30
  } else {
562
30
    dy = FixedDiv(src_height - 1, dst_height - 1);
563
30
    y = (1 << 15) - 1;
564
86.5k
    for (i = 0; i < dst_height; ++i) {
565
86.4k
      ScaleRowUp(src_ptr + (y >> 16) * (int64_t)src_stride, dst_ptr, dst_width);
566
86.4k
      dst_ptr += dst_stride;
567
86.4k
      y += dy;
568
86.4k
    }
569
30
  }
570
39
}
571
572
// Scale at most 12 bit plane, up by 2 times.
573
// This is an optimized version for scaling up a plane to 2 times of
574
// its original size, using bilinear interpolation.
575
// stride is in count of uint16_t.
576
// This is used to scale U and V planes of I010 to I410 and I012 to I412.
577
static void ScalePlaneUp2_12_Bilinear(int src_width,
578
                                      int src_height,
579
                                      int dst_width,
580
                                      int dst_height,
581
                                      int src_stride,
582
                                      int dst_stride,
583
                                      const uint16_t* src_ptr,
584
26
                                      uint16_t* dst_ptr) {
585
26
  void (*Scale2RowUp)(const uint16_t* src_ptr, ptrdiff_t src_stride,
586
26
                      uint16_t* dst_ptr, ptrdiff_t dst_stride, int dst_width) =
587
26
      ScaleRowUp2_Bilinear_16_Any_C;
588
26
  int x;
589
590
26
  (void)src_width;
591
  // This function can only scale up by 2 times.
592
26
  assert(src_width == ((dst_width + 1) / 2));
593
26
  assert(src_height == ((dst_height + 1) / 2));
594
595
26
  Scale2RowUp(src_ptr, 0, dst_ptr, 0, dst_width);
596
26
  dst_ptr += dst_stride;
597
79
  for (x = 0; x < src_height - 1; ++x) {
598
53
    Scale2RowUp(src_ptr, src_stride, dst_ptr, dst_stride, dst_width);
599
53
    src_ptr += src_stride;
600
53
    dst_ptr += 2 * dst_stride;
601
53
  }
602
26
  if (!(dst_height & 1)) {
603
19
    Scale2RowUp(src_ptr, 0, dst_ptr, 0, dst_width);
604
19
  }
605
26
}
606
607
static void ScalePlaneUp2_16_Linear(int src_width,
608
                                    int src_height,
609
                                    int dst_width,
610
                                    int dst_height,
611
                                    int src_stride,
612
                                    int dst_stride,
613
                                    const uint16_t* src_ptr,
614
0
                                    uint16_t* dst_ptr) {
615
0
  void (*ScaleRowUp)(const uint16_t* src_ptr, uint16_t* dst_ptr,
616
0
                     int dst_width) = ScaleRowUp2_Linear_16_Any_C;
617
0
  int i;
618
0
  int y;
619
0
  int dy;
620
621
0
  (void)src_width;
622
  // This function can only scale up by 2 times horizontally.
623
0
  assert(src_width == ((dst_width + 1) / 2));
624
625
0
  if (dst_height == 1) {
626
0
    ScaleRowUp(src_ptr + ((src_height - 1) / 2) * (int64_t)src_stride, dst_ptr,
627
0
               dst_width);
628
0
  } else {
629
0
    dy = FixedDiv(src_height - 1, dst_height - 1);
630
0
    y = (1 << 15) - 1;
631
0
    for (i = 0; i < dst_height; ++i) {
632
0
      ScaleRowUp(src_ptr + (y >> 16) * (int64_t)src_stride, dst_ptr, dst_width);
633
0
      dst_ptr += dst_stride;
634
0
      y += dy;
635
0
    }
636
0
  }
637
0
}
638
639
static void ScalePlaneUp2_16_Bilinear(int src_width,
640
                                      int src_height,
641
                                      int dst_width,
642
                                      int dst_height,
643
                                      int src_stride,
644
                                      int dst_stride,
645
                                      const uint16_t* src_ptr,
646
0
                                      uint16_t* dst_ptr) {
647
0
  void (*Scale2RowUp)(const uint16_t* src_ptr, ptrdiff_t src_stride,
648
0
                      uint16_t* dst_ptr, ptrdiff_t dst_stride, int dst_width) =
649
0
      ScaleRowUp2_Bilinear_16_Any_C;
650
0
  int x;
651
652
0
  (void)src_width;
653
  // This function can only scale up by 2 times.
654
0
  assert(src_width == ((dst_width + 1) / 2));
655
0
  assert(src_height == ((dst_height + 1) / 2));
656
657
0
  Scale2RowUp(src_ptr, 0, dst_ptr, 0, dst_width);
658
0
  dst_ptr += dst_stride;
659
0
  for (x = 0; x < src_height - 1; ++x) {
660
0
    Scale2RowUp(src_ptr, src_stride, dst_ptr, dst_stride, dst_width);
661
0
    src_ptr += src_stride;
662
0
    dst_ptr += 2 * dst_stride;
663
0
  }
664
0
  if (!(dst_height & 1)) {
665
0
    Scale2RowUp(src_ptr, 0, dst_ptr, 0, dst_width);
666
0
  }
667
0
}
668
669
static int ScalePlaneBilinearUp_16(int src_width,
670
                                   int src_height,
671
                                   int dst_width,
672
                                   int dst_height,
673
                                   int src_stride,
674
                                   int dst_stride,
675
                                   const uint16_t* src_ptr,
676
                                   uint16_t* dst_ptr,
677
683
                                   enum FilterMode filtering) {
678
683
  int j;
679
  // Initial source x/y coordinate and step values as 16.16 fixed point.
680
683
  int x = 0;
681
683
  int y = 0;
682
683
  int dx = 0;
683
683
  int dy = 0;
684
683
  const int max_y = (src_height - 1) << 16;
685
683
  void (*InterpolateRow)(uint16_t* dst_ptr, const uint16_t* src_ptr,
686
683
                         ptrdiff_t src_stride, int dst_width,
687
683
                         int source_y_fraction) = InterpolateRow_16_C;
688
683
  void (*ScaleFilterCols)(uint16_t* dst_ptr, const uint16_t* src_ptr,
689
683
                          int dst_width, int x, int dx) =
690
683
      filtering ? ScaleFilterCols_16_C : ScaleCols_16_C;
691
683
  ScaleSlope(src_width, src_height, dst_width, dst_height, filtering, &x, &y,
692
683
             &dx, &dy);
693
683
  src_width = Abs(src_width);
694
695
683
  if (filtering && src_width >= 32768) {
696
0
    ScaleFilterCols = ScaleFilterCols64_16_C;
697
0
  }
698
683
  if (!filtering && src_width * 2 == dst_width && x < 0x8000) {
699
0
    ScaleFilterCols = ScaleColsUp2_16_C;
700
0
  }
701
683
  if (y > max_y) {
702
165
    y = max_y;
703
165
  }
704
683
  {
705
683
    int yi = y >> 16;
706
683
    const uint16_t* src = src_ptr + yi * (int64_t)src_stride;
707
708
    // Allocate 2 row buffers.
709
683
    const int row_size = (dst_width + 31) & ~31;
710
683
    align_buffer_64(row, row_size * 4);
711
683
    int rowstride = row_size;
712
683
    int lasty = yi;
713
683
    uint16_t* rowptr = (uint16_t*)row;
714
683
    if (!row)
715
0
      return 1;
716
717
683
    ScaleFilterCols(rowptr, src, dst_width, x, dx);
718
683
    if (src_height > 1) {
719
509
      src += src_stride;
720
509
    }
721
683
    ScaleFilterCols(rowptr + rowstride, src, dst_width, x, dx);
722
683
    if (src_height > 2) {
723
398
      src += src_stride;
724
398
    }
725
726
4.93M
    for (j = 0; j < dst_height; ++j) {
727
4.93M
      yi = y >> 16;
728
4.93M
      if (yi != lasty) {
729
74.1k
        if (y > max_y) {
730
0
          y = max_y;
731
0
          yi = y >> 16;
732
0
          src = src_ptr + yi * (int64_t)src_stride;
733
0
        }
734
74.1k
        if (yi != lasty) {
735
74.1k
          ScaleFilterCols(rowptr, src, dst_width, x, dx);
736
74.1k
          rowptr += rowstride;
737
74.1k
          rowstride = -rowstride;
738
74.1k
          lasty = yi;
739
74.1k
          if ((y + 65536) < max_y) {
740
73.7k
            src += src_stride;
741
73.7k
          }
742
74.1k
        }
743
74.1k
      }
744
4.93M
      if (filtering == kFilterLinear) {
745
1.03M
        InterpolateRow(dst_ptr, rowptr, 0, dst_width, 0);
746
3.89M
      } else {
747
3.89M
        int yf = (y >> 8) & 255;
748
3.89M
        InterpolateRow(dst_ptr, rowptr, rowstride, dst_width, yf);
749
3.89M
      }
750
4.93M
      dst_ptr += dst_stride;
751
4.93M
      y += dy;
752
4.93M
    }
753
683
    free_aligned_buffer_64(row);
754
683
  }
755
0
  return 0;
756
683
}
757
758
// Scale Plane to/from any dimensions, without interpolation.
759
// Fixed point math is used for performance: The upper 16 bits
760
// of x and dx is the integer part of the source position and
761
// the lower 16 bits are the fixed decimal part.
762
763
static void ScalePlaneSimple(int src_width,
764
                             int src_height,
765
                             int dst_width,
766
                             int dst_height,
767
                             int src_stride,
768
                             int dst_stride,
769
                             const uint8_t* src_ptr,
770
414
                             uint8_t* dst_ptr) {
771
414
  int i;
772
414
  void (*ScaleCols)(uint8_t* dst_ptr, const uint8_t* src_ptr, int dst_width,
773
414
                    int x, int dx) = ScaleCols_C;
774
  // Initial source x/y coordinate and step values as 16.16 fixed point.
775
414
  int x = 0;
776
414
  int y = 0;
777
414
  int dx = 0;
778
414
  int dy = 0;
779
414
  ScaleSlope(src_width, src_height, dst_width, dst_height, kFilterNone, &x, &y,
780
414
             &dx, &dy);
781
414
  src_width = Abs(src_width);
782
783
414
  if (src_width * 2 == dst_width && x < 0x8000) {
784
80
    ScaleCols = ScaleColsUp2_C;
785
80
  }
786
787
715k
  for (i = 0; i < dst_height; ++i) {
788
715k
    ScaleCols(dst_ptr, src_ptr + (y >> 16) * (int64_t)src_stride, dst_width, x,
789
715k
              dx);
790
715k
    dst_ptr += dst_stride;
791
715k
    y += dy;
792
715k
  }
793
414
}
794
795
static void ScalePlaneSimple_16(int src_width,
796
                                int src_height,
797
                                int dst_width,
798
                                int dst_height,
799
                                int src_stride,
800
                                int dst_stride,
801
                                const uint16_t* src_ptr,
802
267
                                uint16_t* dst_ptr) {
803
267
  int i;
804
267
  void (*ScaleCols)(uint16_t* dst_ptr, const uint16_t* src_ptr, int dst_width,
805
267
                    int x, int dx) = ScaleCols_16_C;
806
  // Initial source x/y coordinate and step values as 16.16 fixed point.
807
267
  int x = 0;
808
267
  int y = 0;
809
267
  int dx = 0;
810
267
  int dy = 0;
811
267
  ScaleSlope(src_width, src_height, dst_width, dst_height, kFilterNone, &x, &y,
812
267
             &dx, &dy);
813
267
  src_width = Abs(src_width);
814
815
267
  if (src_width * 2 == dst_width && x < 0x8000) {
816
70
    ScaleCols = ScaleColsUp2_16_C;
817
70
  }
818
819
181k
  for (i = 0; i < dst_height; ++i) {
820
181k
    ScaleCols(dst_ptr, src_ptr + (y >> 16) * (int64_t)src_stride, dst_width, x,
821
181k
              dx);
822
181k
    dst_ptr += dst_stride;
823
181k
    y += dy;
824
181k
  }
825
267
}
826
827
// Scale a plane.
828
// This function dispatches to a specialized scaler based on scale factor.
829
int ScalePlane(const uint8_t* src,
830
               int src_stride,
831
               int src_width,
832
               int src_height,
833
               uint8_t* dst,
834
               int dst_stride,
835
               int dst_width,
836
               int dst_height,
837
1.60k
               enum FilterMode filtering) {
838
  // Simplify filtering when possible.
839
1.60k
  filtering = ScaleFilterReduce(src_width, src_height, dst_width, dst_height,
840
1.60k
                                filtering);
841
842
  // Negative height means invert the image.
843
1.60k
  if (src_height < 0) {
844
0
    src_height = -src_height;
845
0
    src = src + (src_height - 1) * (int64_t)src_stride;
846
0
    src_stride = -src_stride;
847
0
  }
848
  // Use specialized scales to improve performance for common resolutions.
849
  // For example, all the 1/2 scalings will use ScalePlaneDown2()
850
1.60k
  if (dst_width == src_width && dst_height == src_height) {
851
    // Straight copy.
852
12
    CopyPlane(src, src_stride, dst, dst_stride, dst_width, dst_height);
853
12
    return 0;
854
12
  }
855
1.59k
  if (dst_width == src_width && filtering != kFilterBox) {
856
313
    int dy = 0;
857
313
    int y = 0;
858
    // When scaling down, use the center 2 rows to filter.
859
    // When scaling up, last row of destination uses the last 2 source rows.
860
313
    if (dst_height <= src_height) {
861
208
      dy = FixedDiv(src_height, dst_height);
862
208
      y = CENTERSTART(dy, -32768);  // Subtract 0.5 (32768) to center filter.
863
208
    } else if (src_height > 1 && dst_height > 1) {
864
43
      dy = FixedDiv1(src_height, dst_height);
865
43
    }
866
    // Arbitrary scale vertically, but unscaled horizontally.
867
313
    ScalePlaneVertical(src_height, dst_width, dst_height, src_stride,
868
313
                       dst_stride, src, dst, 0, y, dy, /*bpp=*/1, filtering);
869
313
    return 0;
870
313
  }
871
1.27k
  if (filtering == kFilterBox && dst_height * 2 < src_height) {
872
93
    return ScalePlaneBox(src_width, src_height, dst_width, dst_height,
873
93
                         src_stride, dst_stride, src, dst);
874
93
  }
875
1.18k
  if ((dst_width + 1) / 2 == src_width && filtering == kFilterLinear) {
876
48
    ScalePlaneUp2_Linear(src_width, src_height, dst_width, dst_height,
877
48
                         src_stride, dst_stride, src, dst);
878
48
    return 0;
879
48
  }
880
1.13k
  if ((dst_height + 1) / 2 == src_height && (dst_width + 1) / 2 == src_width &&
881
51
      (filtering == kFilterBilinear || filtering == kFilterBox)) {
882
31
    ScalePlaneUp2_Bilinear(src_width, src_height, dst_width, dst_height,
883
31
                           src_stride, dst_stride, src, dst);
884
31
    return 0;
885
31
  }
886
1.10k
  if (filtering && dst_height > src_height) {
887
373
    return ScalePlaneBilinearUp(src_width, src_height, dst_width, dst_height,
888
373
                                src_stride, dst_stride, src, dst, filtering);
889
373
  }
890
732
  if (filtering) {
891
318
    return ScalePlaneBilinearDown(src_width, src_height, dst_width, dst_height,
892
318
                                  src_stride, dst_stride, src, dst, filtering);
893
318
  }
894
414
  ScalePlaneSimple(src_width, src_height, dst_width, dst_height, src_stride,
895
414
                   dst_stride, src, dst);
896
414
  return 0;
897
732
}
898
899
int ScalePlane_16(const uint16_t* src,
900
                  int src_stride,
901
                  int src_width,
902
                  int src_height,
903
                  uint16_t* dst,
904
                  int dst_stride,
905
                  int dst_width,
906
                  int dst_height,
907
1.62k
                  enum FilterMode filtering) {
908
  // Simplify filtering when possible.
909
1.62k
  filtering = ScaleFilterReduce(src_width, src_height, dst_width, dst_height,
910
1.62k
                                filtering);
911
912
  // Negative height means invert the image.
913
1.62k
  if (src_height < 0) {
914
0
    src_height = -src_height;
915
0
    src = src + (src_height - 1) * (int64_t)src_stride;
916
0
    src_stride = -src_stride;
917
0
  }
918
  // Use specialized scales to improve performance for common resolutions.
919
  // For example, all the 1/2 scalings will use ScalePlaneDown2()
920
1.62k
  if (dst_width == src_width && dst_height == src_height) {
921
    // Straight copy.
922
12
    CopyPlane_16(src, src_stride, dst, dst_stride, dst_width, dst_height);
923
12
    return 0;
924
12
  }
925
1.60k
  if (dst_width == src_width && filtering != kFilterBox) {
926
138
    int dy = 0;
927
138
    int y = 0;
928
    // When scaling down, use the center 2 rows to filter.
929
    // When scaling up, last row of destination uses the last 2 source rows.
930
138
    if (dst_height <= src_height) {
931
61
      dy = FixedDiv(src_height, dst_height);
932
61
      y = CENTERSTART(dy, -32768);  // Subtract 0.5 (32768) to center filter.
933
      // When scaling up, ensure the last row of destination uses the last
934
      // source. Avoid divide by zero for dst_height but will do no scaling
935
      // later.
936
77
    } else if (src_height > 1 && dst_height > 1) {
937
49
      dy = FixedDiv1(src_height, dst_height);
938
49
    }
939
    // Arbitrary scale vertically, but unscaled horizontally.
940
138
    ScalePlaneVertical_16(src_height, dst_width, dst_height, src_stride,
941
138
                          dst_stride, src, dst, 0, y, dy, /*bpp=*/1, filtering);
942
138
    return 0;
943
138
  }
944
1.47k
  if (filtering == kFilterBox && dst_height * 2 < src_height) {
945
135
    return ScalePlaneBox_16(src_width, src_height, dst_width, dst_height,
946
135
                            src_stride, dst_stride, src, dst);
947
135
  }
948
1.33k
  if ((dst_width + 1) / 2 == src_width && filtering == kFilterLinear) {
949
0
    ScalePlaneUp2_16_Linear(src_width, src_height, dst_width, dst_height,
950
0
                            src_stride, dst_stride, src, dst);
951
0
    return 0;
952
0
  }
953
1.33k
  if ((dst_height + 1) / 2 == src_height && (dst_width + 1) / 2 == src_width &&
954
20
      (filtering == kFilterBilinear || filtering == kFilterBox)) {
955
0
    ScalePlaneUp2_16_Bilinear(src_width, src_height, dst_width, dst_height,
956
0
                              src_stride, dst_stride, src, dst);
957
0
    return 0;
958
0
  }
959
1.33k
  if (filtering && dst_height > src_height) {
960
683
    return ScalePlaneBilinearUp_16(src_width, src_height, dst_width, dst_height,
961
683
                                   src_stride, dst_stride, src, dst, filtering);
962
683
  }
963
653
  if (filtering) {
964
386
    return ScalePlaneBilinearDown_16(src_width, src_height, dst_width,
965
386
                                     dst_height, src_stride, dst_stride, src,
966
386
                                     dst, filtering);
967
386
  }
968
267
  ScalePlaneSimple_16(src_width, src_height, dst_width, dst_height, src_stride,
969
267
                      dst_stride, src, dst);
970
267
  return 0;
971
653
}
972
973
int ScalePlane_12(const uint16_t* src,
974
                  int src_stride,
975
                  int src_width,
976
                  int src_height,
977
                  uint16_t* dst,
978
                  int dst_stride,
979
                  int dst_width,
980
                  int dst_height,
981
1.68k
                  enum FilterMode filtering) {
982
  // Simplify filtering when possible.
983
1.68k
  filtering = ScaleFilterReduce(src_width, src_height, dst_width, dst_height,
984
1.68k
                                filtering);
985
986
  // Negative height means invert the image.
987
1.68k
  if (src_height < 0) {
988
0
    src_height = -src_height;
989
0
    src = src + (src_height - 1) * (int64_t)src_stride;
990
0
    src_stride = -src_stride;
991
0
  }
992
993
1.68k
  if ((dst_width + 1) / 2 == src_width && filtering == kFilterLinear) {
994
39
    ScalePlaneUp2_12_Linear(src_width, src_height, dst_width, dst_height,
995
39
                            src_stride, dst_stride, src, dst);
996
39
    return 0;
997
39
  }
998
1.64k
  if ((dst_height + 1) / 2 == src_height && (dst_width + 1) / 2 == src_width &&
999
56
      (filtering == kFilterBilinear || filtering == kFilterBox)) {
1000
26
    ScalePlaneUp2_12_Bilinear(src_width, src_height, dst_width, dst_height,
1001
26
                              src_stride, dst_stride, src, dst);
1002
26
    return 0;
1003
26
  }
1004
1005
1.62k
  return ScalePlane_16(src, src_stride, src_width, src_height, dst, dst_stride,
1006
1.62k
                       dst_width, dst_height, filtering);
1007
1.64k
}