Coverage Report

Created: 2025-11-11 06:29

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libavif/ext/aom/av1/encoder/extend.c
Line
Count
Source
1
/*
2
 * Copyright (c) 2016, Alliance for Open Media. All rights reserved.
3
 *
4
 * This source code is subject to the terms of the BSD 2 Clause License and
5
 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6
 * was not distributed with this source code in the LICENSE file, you can
7
 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
8
 * Media Patent License 1.0 was not distributed with this source code in the
9
 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
10
 */
11
12
#include <assert.h>
13
14
#include "aom_dsp/aom_dsp_common.h"
15
#include "aom_mem/aom_mem.h"
16
#include "aom_ports/mem.h"
17
18
#include "av1/common/common.h"
19
#include "av1/encoder/extend.h"
20
21
static void copy_and_extend_plane(const uint8_t *src, int src_pitch,
22
                                  uint8_t *dst, int dst_pitch, int w, int h,
23
                                  int extend_top, int extend_left,
24
                                  int extend_bottom, int extend_right,
25
138k
                                  int chroma_step) {
26
138k
  int i, linesize;
27
  // copy the left and right most columns out
28
138k
  const uint8_t *src_ptr1 = src;
29
138k
  const uint8_t *src_ptr2 = src + (w - 1) * chroma_step;
30
138k
  uint8_t *dst_ptr1 = dst - extend_left;
31
138k
  uint8_t *dst_ptr2 = dst + w;
32
33
8.95M
  for (i = 0; i < h; i++) {
34
8.82M
    memset(dst_ptr1, src_ptr1[0], extend_left);
35
8.82M
    if (chroma_step == 1) {
36
8.82M
      memcpy(dst_ptr1 + extend_left, src_ptr1, w);
37
8.82M
    } else {
38
0
      for (int j = 0; j < w; j++) {
39
0
        dst_ptr1[extend_left + j] = src_ptr1[chroma_step * j];
40
0
      }
41
0
    }
42
8.82M
    memset(dst_ptr2, src_ptr2[0], extend_right);
43
8.82M
    src_ptr1 += src_pitch;
44
8.82M
    src_ptr2 += src_pitch;
45
8.82M
    dst_ptr1 += dst_pitch;
46
8.82M
    dst_ptr2 += dst_pitch;
47
8.82M
  }
48
49
  // Now copy the top and bottom lines into each line of the respective
50
  // borders
51
138k
  src_ptr1 = dst - extend_left;
52
138k
  src_ptr2 = dst + dst_pitch * (h - 1) - extend_left;
53
138k
  dst_ptr1 = dst + dst_pitch * (-extend_top) - extend_left;
54
138k
  dst_ptr2 = dst + dst_pitch * (h)-extend_left;
55
138k
  linesize = extend_left + extend_right + w;
56
138k
  assert(linesize <= dst_pitch);
57
58
9.63M
  for (i = 0; i < extend_top; i++) {
59
9.49M
    memcpy(dst_ptr1, src_ptr1, linesize);
60
9.49M
    dst_ptr1 += dst_pitch;
61
9.49M
  }
62
63
9.65M
  for (i = 0; i < extend_bottom; i++) {
64
9.51M
    memcpy(dst_ptr2, src_ptr2, linesize);
65
9.51M
    dst_ptr2 += dst_pitch;
66
9.51M
  }
67
138k
}
68
69
static void highbd_copy_and_extend_plane(const uint8_t *src8, int src_pitch,
70
                                         uint8_t *dst8, int dst_pitch, int w,
71
                                         int h, int extend_top, int extend_left,
72
55.6k
                                         int extend_bottom, int extend_right) {
73
55.6k
  int i, linesize;
74
55.6k
  uint16_t *src = CONVERT_TO_SHORTPTR(src8);
75
55.6k
  uint16_t *dst = CONVERT_TO_SHORTPTR(dst8);
76
77
  // copy the left and right most columns out
78
55.6k
  const uint16_t *src_ptr1 = src;
79
55.6k
  const uint16_t *src_ptr2 = src + w - 1;
80
55.6k
  uint16_t *dst_ptr1 = dst - extend_left;
81
55.6k
  uint16_t *dst_ptr2 = dst + w;
82
83
2.14M
  for (i = 0; i < h; i++) {
84
2.08M
    aom_memset16(dst_ptr1, src_ptr1[0], extend_left);
85
2.08M
    memcpy(dst_ptr1 + extend_left, src_ptr1, w * sizeof(src_ptr1[0]));
86
2.08M
    aom_memset16(dst_ptr2, src_ptr2[0], extend_right);
87
2.08M
    src_ptr1 += src_pitch;
88
2.08M
    src_ptr2 += src_pitch;
89
2.08M
    dst_ptr1 += dst_pitch;
90
2.08M
    dst_ptr2 += dst_pitch;
91
2.08M
  }
92
93
  // Now copy the top and bottom lines into each line of the respective
94
  // borders
95
55.6k
  src_ptr1 = dst - extend_left;
96
55.6k
  src_ptr2 = dst + dst_pitch * (h - 1) - extend_left;
97
55.6k
  dst_ptr1 = dst + dst_pitch * (-extend_top) - extend_left;
98
55.6k
  dst_ptr2 = dst + dst_pitch * (h)-extend_left;
99
55.6k
  linesize = extend_left + extend_right + w;
100
55.6k
  assert(linesize <= dst_pitch);
101
102
3.97M
  for (i = 0; i < extend_top; i++) {
103
3.91M
    memcpy(dst_ptr1, src_ptr1, linesize * sizeof(src_ptr1[0]));
104
3.91M
    dst_ptr1 += dst_pitch;
105
3.91M
  }
106
107
3.98M
  for (i = 0; i < extend_bottom; i++) {
108
3.92M
    memcpy(dst_ptr2, src_ptr2, linesize * sizeof(src_ptr2[0]));
109
3.92M
    dst_ptr2 += dst_pitch;
110
3.92M
  }
111
55.6k
}
112
113
void av1_copy_and_extend_frame(const YV12_BUFFER_CONFIG *src,
114
109k
                               YV12_BUFFER_CONFIG *dst) {
115
  // Extend src frame in buffer
116
109k
  const int et_y = dst->border;
117
109k
  const int el_y = dst->border;
118
109k
  const int er_y =
119
109k
      AOMMAX(src->y_width + dst->border, ALIGN_POWER_OF_TWO(src->y_width, 6)) -
120
109k
      src->y_crop_width;
121
109k
  const int eb_y = AOMMAX(src->y_height + dst->border,
122
109k
                          ALIGN_POWER_OF_TWO(src->y_height, 6)) -
123
109k
                   src->y_crop_height;
124
109k
  const int uv_width_subsampling = src->subsampling_x;
125
109k
  const int uv_height_subsampling = src->subsampling_y;
126
109k
  const int et_uv = et_y >> uv_height_subsampling;
127
109k
  const int el_uv = el_y >> uv_width_subsampling;
128
109k
  const int eb_uv = eb_y >> uv_height_subsampling;
129
109k
  const int er_uv = er_y >> uv_width_subsampling;
130
131
109k
  if (src->flags & YV12_FLAG_HIGHBITDEPTH) {
132
30.6k
    highbd_copy_and_extend_plane(src->y_buffer, src->y_stride, dst->y_buffer,
133
30.6k
                                 dst->y_stride, src->y_crop_width,
134
30.6k
                                 src->y_crop_height, et_y, el_y, eb_y, er_y);
135
30.6k
    if (!src->monochrome) {
136
12.5k
      highbd_copy_and_extend_plane(
137
12.5k
          src->u_buffer, src->uv_stride, dst->u_buffer, dst->uv_stride,
138
12.5k
          src->uv_crop_width, src->uv_crop_height, et_uv, el_uv, eb_uv, er_uv);
139
12.5k
      highbd_copy_and_extend_plane(
140
12.5k
          src->v_buffer, src->uv_stride, dst->v_buffer, dst->uv_stride,
141
12.5k
          src->uv_crop_width, src->uv_crop_height, et_uv, el_uv, eb_uv, er_uv);
142
12.5k
    }
143
30.6k
    return;
144
30.6k
  }
145
146
78.6k
  copy_and_extend_plane(src->y_buffer, src->y_stride, dst->y_buffer,
147
78.6k
                        dst->y_stride, src->y_crop_width, src->y_crop_height,
148
78.6k
                        et_y, el_y, eb_y, er_y, 1);
149
78.6k
  if (!src->monochrome) {
150
    // detect nv12 format
151
29.6k
    const int chroma_step = src->v_buffer ? 1 : 2;
152
29.6k
    const uint8_t *src_v_buffer =
153
29.6k
        src->v_buffer ? src->v_buffer : src->u_buffer + 1;
154
29.6k
    copy_and_extend_plane(src->u_buffer, src->uv_stride, dst->u_buffer,
155
29.6k
                          dst->uv_stride, src->uv_crop_width,
156
29.6k
                          src->uv_crop_height, et_uv, el_uv, eb_uv, er_uv,
157
29.6k
                          chroma_step);
158
29.6k
    copy_and_extend_plane(src_v_buffer, src->uv_stride, dst->v_buffer,
159
29.6k
                          dst->uv_stride, src->uv_crop_width,
160
29.6k
                          src->uv_crop_height, et_uv, el_uv, eb_uv, er_uv,
161
29.6k
                          chroma_step);
162
29.6k
  }
163
78.6k
}