OLD | NEW |
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 #ifndef SETUPINTRARECON_H |
| 12 #define SETUPINTRARECON_H |
11 | 13 |
12 #include "vpx_scale/yv12config.h" | 14 #include "vpx_scale/yv12config.h" |
13 extern void vp8_setup_intra_recon(YV12_BUFFER_CONFIG *ybf); | 15 extern void vp8_setup_intra_recon(YV12_BUFFER_CONFIG *ybf); |
14 extern void vp8_setup_intra_recon_top_line(YV12_BUFFER_CONFIG *ybf); | 16 extern void vp8_setup_intra_recon_top_line(YV12_BUFFER_CONFIG *ybf); |
15 | 17 |
16 static | 18 static |
17 void setup_intra_recon_left(unsigned char *y_buffer, | 19 void setup_intra_recon_left(unsigned char *y_buffer, |
18 unsigned char *u_buffer, | 20 unsigned char *u_buffer, |
19 unsigned char *v_buffer, | 21 unsigned char *v_buffer, |
20 int y_stride, | 22 int y_stride, |
21 int uv_stride) | 23 int uv_stride) |
22 { | 24 { |
23 int i; | 25 int i; |
24 | 26 |
25 for (i = 0; i < 16; i++) | 27 for (i = 0; i < 16; i++) |
26 y_buffer[y_stride *i] = (unsigned char) 129; | 28 y_buffer[y_stride *i] = (unsigned char) 129; |
27 | 29 |
28 for (i = 0; i < 8; i++) | 30 for (i = 0; i < 8; i++) |
29 u_buffer[uv_stride *i] = (unsigned char) 129; | 31 u_buffer[uv_stride *i] = (unsigned char) 129; |
30 | 32 |
31 for (i = 0; i < 8; i++) | 33 for (i = 0; i < 8; i++) |
32 v_buffer[uv_stride *i] = (unsigned char) 129; | 34 v_buffer[uv_stride *i] = (unsigned char) 129; |
33 } | 35 } |
| 36 |
| 37 #endif |
OLD | NEW |