Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / libvpx / source / libvpx / vpx_scale / generic / yv12extend.c
1 /*
2  *  Copyright (c) 2010 The WebM 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 <assert.h>
12 #include "./vpx_config.h"
13 #include "vpx/vpx_integer.h"
14 #include "vpx_mem/vpx_mem.h"
15 #include "vpx_scale/yv12config.h"
16
17 static void extend_plane(uint8_t *const src, int src_stride,
18                          int width, int height,
19                          int extend_top, int extend_left,
20                          int extend_bottom, int extend_right) {
21   int i;
22   const int linesize = extend_left + extend_right + width;
23
24   /* copy the left and right most columns out */
25   uint8_t *src_ptr1 = src;
26   uint8_t *src_ptr2 = src + width - 1;
27   uint8_t *dst_ptr1 = src - extend_left;
28   uint8_t *dst_ptr2 = src + width;
29
30   for (i = 0; i < height; ++i) {
31     vpx_memset(dst_ptr1, src_ptr1[0], extend_left);
32     vpx_memset(dst_ptr2, src_ptr2[0], extend_right);
33     src_ptr1 += src_stride;
34     src_ptr2 += src_stride;
35     dst_ptr1 += src_stride;
36     dst_ptr2 += src_stride;
37   }
38
39   /* Now copy the top and bottom lines into each line of the respective
40    * borders
41    */
42   src_ptr1 = src - extend_left;
43   src_ptr2 = src + src_stride * (height - 1) - extend_left;
44   dst_ptr1 = src + src_stride * -extend_top - extend_left;
45   dst_ptr2 = src + src_stride * height - extend_left;
46
47   for (i = 0; i < extend_top; ++i) {
48     vpx_memcpy(dst_ptr1, src_ptr1, linesize);
49     dst_ptr1 += src_stride;
50   }
51
52   for (i = 0; i < extend_bottom; ++i) {
53     vpx_memcpy(dst_ptr2, src_ptr2, linesize);
54     dst_ptr2 += src_stride;
55   }
56 }
57
58 void vp8_yv12_extend_frame_borders_c(YV12_BUFFER_CONFIG *ybf) {
59   assert(ybf->y_height - ybf->y_crop_height < 16);
60   assert(ybf->y_width - ybf->y_crop_width < 16);
61   assert(ybf->y_height - ybf->y_crop_height >= 0);
62   assert(ybf->y_width - ybf->y_crop_width >= 0);
63
64   extend_plane(ybf->y_buffer, ybf->y_stride,
65                ybf->y_crop_width, ybf->y_crop_height,
66                ybf->border, ybf->border,
67                ybf->border + ybf->y_height - ybf->y_crop_height,
68                ybf->border + ybf->y_width - ybf->y_crop_width);
69
70   extend_plane(ybf->u_buffer, ybf->uv_stride,
71                (ybf->y_crop_width + 1) / 2, (ybf->y_crop_height + 1) / 2,
72                ybf->border / 2, ybf->border / 2,
73                (ybf->border + ybf->y_height - ybf->y_crop_height + 1) / 2,
74                (ybf->border + ybf->y_width - ybf->y_crop_width + 1) / 2);
75
76   extend_plane(ybf->v_buffer, ybf->uv_stride,
77                (ybf->y_crop_width + 1) / 2, (ybf->y_crop_height + 1) / 2,
78                ybf->border / 2, ybf->border / 2,
79                (ybf->border + ybf->y_height - ybf->y_crop_height + 1) / 2,
80                (ybf->border + ybf->y_width - ybf->y_crop_width + 1) / 2);
81 }
82
83 #if CONFIG_VP9
84 static void extend_frame(YV12_BUFFER_CONFIG *const ybf, int ext_size) {
85   const int c_w = ybf->uv_crop_width;
86   const int c_h = ybf->uv_crop_height;
87   const int ss_x = ybf->uv_width < ybf->y_width;
88   const int ss_y = ybf->uv_height < ybf->y_height;
89   const int c_et = ext_size >> ss_y;
90   const int c_el = ext_size >> ss_x;
91   const int c_eb = c_et + ybf->uv_height - ybf->uv_crop_height;
92   const int c_er = c_el + ybf->uv_width - ybf->uv_crop_width;
93
94   assert(ybf->y_height - ybf->y_crop_height < 16);
95   assert(ybf->y_width - ybf->y_crop_width < 16);
96   assert(ybf->y_height - ybf->y_crop_height >= 0);
97   assert(ybf->y_width - ybf->y_crop_width >= 0);
98
99   extend_plane(ybf->y_buffer, ybf->y_stride,
100                ybf->y_crop_width, ybf->y_crop_height,
101                ext_size, ext_size,
102                ext_size + ybf->y_height - ybf->y_crop_height,
103                ext_size + ybf->y_width - ybf->y_crop_width);
104
105   extend_plane(ybf->u_buffer, ybf->uv_stride,
106                c_w, c_h, c_et, c_el, c_eb, c_er);
107
108   extend_plane(ybf->v_buffer, ybf->uv_stride,
109                c_w, c_h, c_et, c_el, c_eb, c_er);
110 }
111
112 void vp9_extend_frame_borders_c(YV12_BUFFER_CONFIG *ybf) {
113   extend_frame(ybf, ybf->border);
114 }
115
116 void vp9_extend_frame_inner_borders_c(YV12_BUFFER_CONFIG *ybf) {
117   const int inner_bw = (ybf->border > VP9INNERBORDERINPIXELS) ?
118                        VP9INNERBORDERINPIXELS : ybf->border;
119   extend_frame(ybf, inner_bw);
120 }
121 #endif  // CONFIG_VP9
122
123 // Copies the source image into the destination image and updates the
124 // destination's UMV borders.
125 // Note: The frames are assumed to be identical in size.
126 void vp8_yv12_copy_frame_c(const YV12_BUFFER_CONFIG *src_ybc,
127                            YV12_BUFFER_CONFIG *dst_ybc) {
128   int row;
129   const uint8_t *src = src_ybc->y_buffer;
130   uint8_t *dst = dst_ybc->y_buffer;
131
132 #if 0
133   /* These assertions are valid in the codec, but the libvpx-tester uses
134    * this code slightly differently.
135    */
136   assert(src_ybc->y_width == dst_ybc->y_width);
137   assert(src_ybc->y_height == dst_ybc->y_height);
138 #endif
139
140   for (row = 0; row < src_ybc->y_height; ++row) {
141     vpx_memcpy(dst, src, src_ybc->y_width);
142     src += src_ybc->y_stride;
143     dst += dst_ybc->y_stride;
144   }
145
146   src = src_ybc->u_buffer;
147   dst = dst_ybc->u_buffer;
148
149   for (row = 0; row < src_ybc->uv_height; ++row) {
150     vpx_memcpy(dst, src, src_ybc->uv_width);
151     src += src_ybc->uv_stride;
152     dst += dst_ybc->uv_stride;
153   }
154
155   src = src_ybc->v_buffer;
156   dst = dst_ybc->v_buffer;
157
158   for (row = 0; row < src_ybc->uv_height; ++row) {
159     vpx_memcpy(dst, src, src_ybc->uv_width);
160     src += src_ybc->uv_stride;
161     dst += dst_ybc->uv_stride;
162   }
163
164   vp8_yv12_extend_frame_borders_c(dst_ybc);
165 }
166
167 void vpx_yv12_copy_y_c(const YV12_BUFFER_CONFIG *src_ybc,
168                        YV12_BUFFER_CONFIG *dst_ybc) {
169   int row;
170   const uint8_t *src = src_ybc->y_buffer;
171   uint8_t *dst = dst_ybc->y_buffer;
172
173   for (row = 0; row < src_ybc->y_height; ++row) {
174     vpx_memcpy(dst, src, src_ybc->y_width);
175     src += src_ybc->y_stride;
176     dst += dst_ybc->y_stride;
177   }
178 }