| 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 VPX_SCALE_YV12CONFIG_H_ | 11 #ifndef VPX_SCALE_YV12CONFIG_H_ |
| 12 #define VPX_SCALE_YV12CONFIG_H_ | 12 #define VPX_SCALE_YV12CONFIG_H_ |
| 13 | 13 |
| 14 #ifdef __cplusplus | 14 #ifdef __cplusplus |
| 15 extern "C" { | 15 extern "C" { |
| 16 #endif | 16 #endif |
| 17 | 17 |
| 18 #include "./vpx_config.h" |
| 18 #include "vpx/vpx_codec.h" | 19 #include "vpx/vpx_codec.h" |
| 19 #include "vpx/vpx_frame_buffer.h" | 20 #include "vpx/vpx_frame_buffer.h" |
| 20 #include "vpx/vpx_integer.h" | 21 #include "vpx/vpx_integer.h" |
| 21 | 22 |
| 22 #define VP8BORDERINPIXELS 32 | 23 #define VP8BORDERINPIXELS 32 |
| 23 #define VP9INNERBORDERINPIXELS 96 | 24 #define VP9INNERBORDERINPIXELS 96 |
| 24 #define VP9_INTERP_EXTEND 4 | 25 #define VP9_INTERP_EXTEND 4 |
| 25 #define VP9_ENC_BORDER_IN_PIXELS 160 | 26 #define VP9_ENC_BORDER_IN_PIXELS 160 |
| 26 #define VP9_DEC_BORDER_IN_PIXELS 32 | 27 #define VP9_DEC_BORDER_IN_PIXELS 32 |
| 27 | 28 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 44 | 45 |
| 45 uint8_t *y_buffer; | 46 uint8_t *y_buffer; |
| 46 uint8_t *u_buffer; | 47 uint8_t *u_buffer; |
| 47 uint8_t *v_buffer; | 48 uint8_t *v_buffer; |
| 48 uint8_t *alpha_buffer; | 49 uint8_t *alpha_buffer; |
| 49 | 50 |
| 50 uint8_t *buffer_alloc; | 51 uint8_t *buffer_alloc; |
| 51 int buffer_alloc_sz; | 52 int buffer_alloc_sz; |
| 52 int border; | 53 int border; |
| 53 int frame_size; | 54 int frame_size; |
| 55 int subsampling_x; |
| 56 int subsampling_y; |
| 54 unsigned int bit_depth; | 57 unsigned int bit_depth; |
| 55 | 58 |
| 56 int corrupted; | 59 int corrupted; |
| 57 int flags; | 60 int flags; |
| 58 } YV12_BUFFER_CONFIG; | 61 } YV12_BUFFER_CONFIG; |
| 59 | 62 |
| 60 #define YV12_FLAG_HIGHBITDEPTH 1 | 63 #define YV12_FLAG_HIGHBITDEPTH 1 |
| 61 | 64 |
| 62 int vp8_yv12_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, | 65 int vp8_yv12_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, |
| 63 int width, int height, int border); | 66 int width, int height, int border); |
| (...skipping 23 matching lines...) Expand all Loading... |
| 87 vpx_codec_frame_buffer_t *fb, | 90 vpx_codec_frame_buffer_t *fb, |
| 88 vpx_get_frame_buffer_cb_fn_t cb, | 91 vpx_get_frame_buffer_cb_fn_t cb, |
| 89 void *cb_priv); | 92 void *cb_priv); |
| 90 int vp9_free_frame_buffer(YV12_BUFFER_CONFIG *ybf); | 93 int vp9_free_frame_buffer(YV12_BUFFER_CONFIG *ybf); |
| 91 | 94 |
| 92 #ifdef __cplusplus | 95 #ifdef __cplusplus |
| 93 } | 96 } |
| 94 #endif | 97 #endif |
| 95 | 98 |
| 96 #endif // VPX_SCALE_YV12CONFIG_H_ | 99 #endif // VPX_SCALE_YV12CONFIG_H_ |
| OLD | NEW |