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/vpx_frame_buffer.h" |
18 #include "vpx/vpx_integer.h" | 19 #include "vpx/vpx_integer.h" |
19 | 20 |
20 #define VP8BORDERINPIXELS 32 | 21 #define VP8BORDERINPIXELS 32 |
21 #define VP9INNERBORDERINPIXELS 96 | 22 #define VP9INNERBORDERINPIXELS 96 |
22 #define VP9_INTERP_EXTEND 4 | 23 #define VP9_INTERP_EXTEND 4 |
23 #define VP9_ENC_BORDER_IN_PIXELS 160 | 24 #define VP9_ENC_BORDER_IN_PIXELS 160 |
24 #define VP9_DEC_BORDER_IN_PIXELS 32 | 25 #define VP9_DEC_BORDER_IN_PIXELS 32 |
25 | 26 |
26 typedef struct yv12_buffer_config { | 27 typedef struct yv12_buffer_config { |
27 int y_width; | 28 int y_width; |
(...skipping 30 matching lines...) Expand all Loading... |
58 | 59 |
59 int vp8_yv12_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, | 60 int vp8_yv12_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, |
60 int width, int height, int border); | 61 int width, int height, int border); |
61 int vp8_yv12_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, | 62 int vp8_yv12_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, |
62 int width, int height, int border); | 63 int width, int height, int border); |
63 int vp8_yv12_de_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf); | 64 int vp8_yv12_de_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf); |
64 | 65 |
65 int vp9_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, | 66 int vp9_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, |
66 int width, int height, int ss_x, int ss_y, | 67 int width, int height, int ss_x, int ss_y, |
67 int border); | 68 int border); |
| 69 |
| 70 // Updates the yv12 buffer config with the frame buffer. If cb is not |
| 71 // NULL, then libvpx is using the frame buffer callbacks to handle memory. |
| 72 // If cb is not NULL, libvpx will call cb with minimum size in bytes needed |
| 73 // to decode the current frame. If cb is NULL, libvpx will allocate memory |
| 74 // internally to decode the current frame. Returns 0 on success. Returns < 0 |
| 75 // on failure. |
68 int vp9_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, | 76 int vp9_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, |
69 int width, int height, int ss_x, int ss_y, | 77 int width, int height, int ss_x, int ss_y, |
70 int border); | 78 int border, |
| 79 vpx_codec_frame_buffer_t *fb, |
| 80 vpx_get_frame_buffer_cb_fn_t cb, |
| 81 void *cb_priv); |
71 int vp9_free_frame_buffer(YV12_BUFFER_CONFIG *ybf); | 82 int vp9_free_frame_buffer(YV12_BUFFER_CONFIG *ybf); |
72 | 83 |
73 #ifdef __cplusplus | 84 #ifdef __cplusplus |
74 } | 85 } |
75 #endif | 86 #endif |
76 | 87 |
77 #endif // VPX_SCALE_YV12CONFIG_H_ | 88 #endif // VPX_SCALE_YV12CONFIG_H_ |
OLD | NEW |