Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Side by Side Diff: source/libvpx/vpx_scale/generic/yv12extend.c

Issue 554673004: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « source/libvpx/vpx_scale/generic/yv12config.c ('k') | source/libvpx/vpx_scale/yv12config.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 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 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 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #include <assert.h> 11 #include <assert.h>
12 #include "./vpx_config.h" 12 #include "./vpx_config.h"
13 #include "vpx/vpx_integer.h" 13 #include "vpx/vpx_integer.h"
14 #include "vpx_mem/vpx_mem.h" 14 #include "vpx_mem/vpx_mem.h"
15 #include "vpx_scale/yv12config.h" 15 #include "vpx_scale/yv12config.h"
16 #if CONFIG_VP9 && CONFIG_VP9_HIGHBITDEPTH
17 #include "vp9/common/vp9_common.h"
18 #endif
16 19
17 static void extend_plane(uint8_t *const src, int src_stride, 20 static void extend_plane(uint8_t *const src, int src_stride,
18 int width, int height, 21 int width, int height,
19 int extend_top, int extend_left, 22 int extend_top, int extend_left,
20 int extend_bottom, int extend_right) { 23 int extend_bottom, int extend_right) {
21 int i; 24 int i;
22 const int linesize = extend_left + extend_right + width; 25 const int linesize = extend_left + extend_right + width;
23 26
24 /* copy the left and right most columns out */ 27 /* copy the left and right most columns out */
25 uint8_t *src_ptr1 = src; 28 uint8_t *src_ptr1 = src;
(...skipping 22 matching lines...) Expand all
48 vpx_memcpy(dst_ptr1, src_ptr1, linesize); 51 vpx_memcpy(dst_ptr1, src_ptr1, linesize);
49 dst_ptr1 += src_stride; 52 dst_ptr1 += src_stride;
50 } 53 }
51 54
52 for (i = 0; i < extend_bottom; ++i) { 55 for (i = 0; i < extend_bottom; ++i) {
53 vpx_memcpy(dst_ptr2, src_ptr2, linesize); 56 vpx_memcpy(dst_ptr2, src_ptr2, linesize);
54 dst_ptr2 += src_stride; 57 dst_ptr2 += src_stride;
55 } 58 }
56 } 59 }
57 60
61 #if CONFIG_VP9 && CONFIG_VP9_HIGHBITDEPTH
62 static void extend_plane_high(uint8_t *const src8, int src_stride,
63 int width, int height,
64 int extend_top, int extend_left,
65 int extend_bottom, int extend_right) {
66 int i;
67 const int linesize = extend_left + extend_right + width;
68 uint16_t *src = CONVERT_TO_SHORTPTR(src8);
69
70 /* copy the left and right most columns out */
71 uint16_t *src_ptr1 = src;
72 uint16_t *src_ptr2 = src + width - 1;
73 uint16_t *dst_ptr1 = src - extend_left;
74 uint16_t *dst_ptr2 = src + width;
75
76 for (i = 0; i < height; ++i) {
77 vpx_memset16(dst_ptr1, src_ptr1[0], extend_left);
78 vpx_memset16(dst_ptr2, src_ptr2[0], extend_right);
79 src_ptr1 += src_stride;
80 src_ptr2 += src_stride;
81 dst_ptr1 += src_stride;
82 dst_ptr2 += src_stride;
83 }
84
85 /* Now copy the top and bottom lines into each line of the respective
86 * borders
87 */
88 src_ptr1 = src - extend_left;
89 src_ptr2 = src + src_stride * (height - 1) - extend_left;
90 dst_ptr1 = src + src_stride * -extend_top - extend_left;
91 dst_ptr2 = src + src_stride * height - extend_left;
92
93 for (i = 0; i < extend_top; ++i) {
94 vpx_memcpy(dst_ptr1, src_ptr1, linesize * sizeof(uint16_t));
95 dst_ptr1 += src_stride;
96 }
97
98 for (i = 0; i < extend_bottom; ++i) {
99 vpx_memcpy(dst_ptr2, src_ptr2, linesize * sizeof(uint16_t));
100 dst_ptr2 += src_stride;
101 }
102 }
103 #endif
104
58 void vp8_yv12_extend_frame_borders_c(YV12_BUFFER_CONFIG *ybf) { 105 void vp8_yv12_extend_frame_borders_c(YV12_BUFFER_CONFIG *ybf) {
59 const int uv_border = ybf->border / 2; 106 const int uv_border = ybf->border / 2;
60 107
61 assert(ybf->border % 2 == 0); 108 assert(ybf->border % 2 == 0);
62 assert(ybf->y_height - ybf->y_crop_height < 16); 109 assert(ybf->y_height - ybf->y_crop_height < 16);
63 assert(ybf->y_width - ybf->y_crop_width < 16); 110 assert(ybf->y_width - ybf->y_crop_width < 16);
64 assert(ybf->y_height - ybf->y_crop_height >= 0); 111 assert(ybf->y_height - ybf->y_crop_height >= 0);
65 assert(ybf->y_width - ybf->y_crop_width >= 0); 112 assert(ybf->y_width - ybf->y_crop_width >= 0);
66 113
114 #if CONFIG_VP9 && CONFIG_VP9_HIGHBITDEPTH
115 if (ybf->flags & YV12_FLAG_HIGHBITDEPTH) {
116 extend_plane_high(
117 ybf->y_buffer, ybf->y_stride,
118 ybf->y_crop_width, ybf->y_crop_height,
119 ybf->border, ybf->border,
120 ybf->border + ybf->y_height - ybf->y_crop_height,
121 ybf->border + ybf->y_width - ybf->y_crop_width);
122
123 extend_plane_high(
124 ybf->u_buffer, ybf->uv_stride,
125 (ybf->y_crop_width + 1) / 2, (ybf->y_crop_height + 1) / 2,
126 ybf->border / 2, ybf->border / 2,
127 (ybf->border + ybf->y_height - ybf->y_crop_height + 1) / 2,
128 (ybf->border + ybf->y_width - ybf->y_crop_width + 1) / 2);
129
130 extend_plane_high(
131 ybf->v_buffer, ybf->uv_stride,
132 (ybf->y_crop_width + 1) / 2, (ybf->y_crop_height + 1) / 2,
133 ybf->border / 2, ybf->border / 2,
134 (ybf->border + ybf->y_height - ybf->y_crop_height + 1) / 2,
135 (ybf->border + ybf->y_width - ybf->y_crop_width + 1) / 2);
136 return;
137 }
138 #endif
67 extend_plane(ybf->y_buffer, ybf->y_stride, 139 extend_plane(ybf->y_buffer, ybf->y_stride,
68 ybf->y_crop_width, ybf->y_crop_height, 140 ybf->y_crop_width, ybf->y_crop_height,
69 ybf->border, ybf->border, 141 ybf->border, ybf->border,
70 ybf->border + ybf->y_height - ybf->y_crop_height, 142 ybf->border + ybf->y_height - ybf->y_crop_height,
71 ybf->border + ybf->y_width - ybf->y_crop_width); 143 ybf->border + ybf->y_width - ybf->y_crop_width);
72 144
73 extend_plane(ybf->u_buffer, ybf->uv_stride, 145 extend_plane(ybf->u_buffer, ybf->uv_stride,
74 ybf->uv_crop_width, ybf->uv_crop_height, 146 ybf->uv_crop_width, ybf->uv_crop_height,
75 uv_border, uv_border, 147 uv_border, uv_border,
76 uv_border + ybf->uv_height - ybf->uv_crop_height, 148 uv_border + ybf->uv_height - ybf->uv_crop_height,
(...skipping 15 matching lines...) Expand all
92 const int c_et = ext_size >> ss_y; 164 const int c_et = ext_size >> ss_y;
93 const int c_el = ext_size >> ss_x; 165 const int c_el = ext_size >> ss_x;
94 const int c_eb = c_et + ybf->uv_height - ybf->uv_crop_height; 166 const int c_eb = c_et + ybf->uv_height - ybf->uv_crop_height;
95 const int c_er = c_el + ybf->uv_width - ybf->uv_crop_width; 167 const int c_er = c_el + ybf->uv_width - ybf->uv_crop_width;
96 168
97 assert(ybf->y_height - ybf->y_crop_height < 16); 169 assert(ybf->y_height - ybf->y_crop_height < 16);
98 assert(ybf->y_width - ybf->y_crop_width < 16); 170 assert(ybf->y_width - ybf->y_crop_width < 16);
99 assert(ybf->y_height - ybf->y_crop_height >= 0); 171 assert(ybf->y_height - ybf->y_crop_height >= 0);
100 assert(ybf->y_width - ybf->y_crop_width >= 0); 172 assert(ybf->y_width - ybf->y_crop_width >= 0);
101 173
174 #if CONFIG_VP9_HIGHBITDEPTH
175 if (ybf->flags & YV12_FLAG_HIGHBITDEPTH) {
176 extend_plane_high(ybf->y_buffer, ybf->y_stride,
177 ybf->y_crop_width, ybf->y_crop_height,
178 ext_size, ext_size,
179 ext_size + ybf->y_height - ybf->y_crop_height,
180 ext_size + ybf->y_width - ybf->y_crop_width);
181 extend_plane_high(ybf->u_buffer, ybf->uv_stride,
182 c_w, c_h, c_et, c_el, c_eb, c_er);
183 extend_plane_high(ybf->v_buffer, ybf->uv_stride,
184 c_w, c_h, c_et, c_el, c_eb, c_er);
185 return;
186 }
187 #endif
102 extend_plane(ybf->y_buffer, ybf->y_stride, 188 extend_plane(ybf->y_buffer, ybf->y_stride,
103 ybf->y_crop_width, ybf->y_crop_height, 189 ybf->y_crop_width, ybf->y_crop_height,
104 ext_size, ext_size, 190 ext_size, ext_size,
105 ext_size + ybf->y_height - ybf->y_crop_height, 191 ext_size + ybf->y_height - ybf->y_crop_height,
106 ext_size + ybf->y_width - ybf->y_crop_width); 192 ext_size + ybf->y_width - ybf->y_crop_width);
107 193
108 extend_plane(ybf->u_buffer, ybf->uv_stride, 194 extend_plane(ybf->u_buffer, ybf->uv_stride,
109 c_w, c_h, c_et, c_el, c_eb, c_er); 195 c_w, c_h, c_et, c_el, c_eb, c_er);
110 196
111 extend_plane(ybf->v_buffer, ybf->uv_stride, 197 extend_plane(ybf->v_buffer, ybf->uv_stride,
112 c_w, c_h, c_et, c_el, c_eb, c_er); 198 c_w, c_h, c_et, c_el, c_eb, c_er);
113 } 199 }
114 200
115 void vp9_extend_frame_borders_c(YV12_BUFFER_CONFIG *ybf) { 201 void vp9_extend_frame_borders_c(YV12_BUFFER_CONFIG *ybf) {
116 extend_frame(ybf, ybf->border); 202 extend_frame(ybf, ybf->border);
117 } 203 }
118 204
119 void vp9_extend_frame_inner_borders_c(YV12_BUFFER_CONFIG *ybf) { 205 void vp9_extend_frame_inner_borders_c(YV12_BUFFER_CONFIG *ybf) {
120 const int inner_bw = (ybf->border > VP9INNERBORDERINPIXELS) ? 206 const int inner_bw = (ybf->border > VP9INNERBORDERINPIXELS) ?
121 VP9INNERBORDERINPIXELS : ybf->border; 207 VP9INNERBORDERINPIXELS : ybf->border;
122 extend_frame(ybf, inner_bw); 208 extend_frame(ybf, inner_bw);
123 } 209 }
210
211 #if CONFIG_VP9_HIGHBITDEPTH
212 void memcpy_short_addr(uint8_t *dst8, const uint8_t *src8, int num) {
213 uint16_t *dst = CONVERT_TO_SHORTPTR(dst8);
214 uint16_t *src = CONVERT_TO_SHORTPTR(src8);
215 vpx_memcpy(dst, src, num * sizeof(uint16_t));
216 }
217 #endif // CONFIG_VP9_HIGHBITDEPTH
124 #endif // CONFIG_VP9 218 #endif // CONFIG_VP9
125 219
126 // Copies the source image into the destination image and updates the 220 // Copies the source image into the destination image and updates the
127 // destination's UMV borders. 221 // destination's UMV borders.
128 // Note: The frames are assumed to be identical in size. 222 // Note: The frames are assumed to be identical in size.
129 void vp8_yv12_copy_frame_c(const YV12_BUFFER_CONFIG *src_ybc, 223 void vp8_yv12_copy_frame_c(const YV12_BUFFER_CONFIG *src_ybc,
130 YV12_BUFFER_CONFIG *dst_ybc) { 224 YV12_BUFFER_CONFIG *dst_ybc) {
131 int row; 225 int row;
132 const uint8_t *src = src_ybc->y_buffer; 226 const uint8_t *src = src_ybc->y_buffer;
133 uint8_t *dst = dst_ybc->y_buffer; 227 uint8_t *dst = dst_ybc->y_buffer;
134 228
135 #if 0 229 #if 0
136 /* These assertions are valid in the codec, but the libvpx-tester uses 230 /* These assertions are valid in the codec, but the libvpx-tester uses
137 * this code slightly differently. 231 * this code slightly differently.
138 */ 232 */
139 assert(src_ybc->y_width == dst_ybc->y_width); 233 assert(src_ybc->y_width == dst_ybc->y_width);
140 assert(src_ybc->y_height == dst_ybc->y_height); 234 assert(src_ybc->y_height == dst_ybc->y_height);
141 #endif 235 #endif
142 236
237 #if CONFIG_VP9 && CONFIG_VP9_HIGHBITDEPTH
238 if (src_ybc->flags & YV12_FLAG_HIGHBITDEPTH) {
239 assert(dst_ybc->flags & YV12_FLAG_HIGHBITDEPTH);
240 for (row = 0; row < src_ybc->y_height; ++row) {
241 memcpy_short_addr(dst, src, src_ybc->y_width);
242 src += src_ybc->y_stride;
243 dst += dst_ybc->y_stride;
244 }
245
246 src = src_ybc->u_buffer;
247 dst = dst_ybc->u_buffer;
248
249 for (row = 0; row < src_ybc->uv_height; ++row) {
250 memcpy_short_addr(dst, src, src_ybc->uv_width);
251 src += src_ybc->uv_stride;
252 dst += dst_ybc->uv_stride;
253 }
254
255 src = src_ybc->v_buffer;
256 dst = dst_ybc->v_buffer;
257
258 for (row = 0; row < src_ybc->uv_height; ++row) {
259 memcpy_short_addr(dst, src, src_ybc->uv_width);
260 src += src_ybc->uv_stride;
261 dst += dst_ybc->uv_stride;
262 }
263
264 vp8_yv12_extend_frame_borders_c(dst_ybc);
265 return;
266 } else {
267 assert(!(dst_ybc->flags & YV12_FLAG_HIGHBITDEPTH));
268 }
269 #endif
270
143 for (row = 0; row < src_ybc->y_height; ++row) { 271 for (row = 0; row < src_ybc->y_height; ++row) {
144 vpx_memcpy(dst, src, src_ybc->y_width); 272 vpx_memcpy(dst, src, src_ybc->y_width);
145 src += src_ybc->y_stride; 273 src += src_ybc->y_stride;
146 dst += dst_ybc->y_stride; 274 dst += dst_ybc->y_stride;
147 } 275 }
148 276
149 src = src_ybc->u_buffer; 277 src = src_ybc->u_buffer;
150 dst = dst_ybc->u_buffer; 278 dst = dst_ybc->u_buffer;
151 279
152 for (row = 0; row < src_ybc->uv_height; ++row) { 280 for (row = 0; row < src_ybc->uv_height; ++row) {
(...skipping 13 matching lines...) Expand all
166 294
167 vp8_yv12_extend_frame_borders_c(dst_ybc); 295 vp8_yv12_extend_frame_borders_c(dst_ybc);
168 } 296 }
169 297
170 void vpx_yv12_copy_y_c(const YV12_BUFFER_CONFIG *src_ybc, 298 void vpx_yv12_copy_y_c(const YV12_BUFFER_CONFIG *src_ybc,
171 YV12_BUFFER_CONFIG *dst_ybc) { 299 YV12_BUFFER_CONFIG *dst_ybc) {
172 int row; 300 int row;
173 const uint8_t *src = src_ybc->y_buffer; 301 const uint8_t *src = src_ybc->y_buffer;
174 uint8_t *dst = dst_ybc->y_buffer; 302 uint8_t *dst = dst_ybc->y_buffer;
175 303
304 #if CONFIG_VP9 && CONFIG_VP9_HIGHBITDEPTH
305 if (src_ybc->flags & YV12_FLAG_HIGHBITDEPTH) {
306 const uint16_t *src16 = CONVERT_TO_SHORTPTR(src);
307 uint16_t *dst16 = CONVERT_TO_SHORTPTR(dst);
308 for (row = 0; row < src_ybc->y_height; ++row) {
309 vpx_memcpy(dst16, src16, src_ybc->y_width * sizeof(uint16_t));
310 src16 += src_ybc->y_stride;
311 dst16 += dst_ybc->y_stride;
312 }
313 return;
314 }
315 #endif
316
176 for (row = 0; row < src_ybc->y_height; ++row) { 317 for (row = 0; row < src_ybc->y_height; ++row) {
177 vpx_memcpy(dst, src, src_ybc->y_width); 318 vpx_memcpy(dst, src, src_ybc->y_width);
178 src += src_ybc->y_stride; 319 src += src_ybc->y_stride;
179 dst += dst_ybc->y_stride; 320 dst += dst_ybc->y_stride;
180 } 321 }
181 } 322 }
OLDNEW
« no previous file with comments | « source/libvpx/vpx_scale/generic/yv12config.c ('k') | source/libvpx/vpx_scale/yv12config.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698