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

Side by Side Diff: source/libvpx/vpx_scale/yv12config.h

Issue 181493009: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 9 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/vpx_scale_rtcd.sh ('k') | source/libvpx/vpxdec.c » ('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 #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_frame_buffer.h"
19 #include "vpx/vpx_integer.h" 19 #include "vpx/vpx_integer.h"
20 20
21 #define VP8BORDERINPIXELS 32 21 #define VP8BORDERINPIXELS 32
22 #define VP9INNERBORDERINPIXELS 96 22 #define VP9INNERBORDERINPIXELS 96
23 #define VP9_INTERP_EXTEND 4 23 #define VP9_INTERP_EXTEND 4
24 #define VP9_ENC_BORDER_IN_PIXELS 160 24 #define VP9_ENC_BORDER_IN_PIXELS 160
25 #define VP9_DEC_BORDER_IN_PIXELS 32 25 #define VP9_DEC_BORDER_IN_PIXELS 32
26 26
27 typedef struct yv12_buffer_config { 27 typedef struct yv12_buffer_config {
28 int y_width; 28 int y_width;
29 int y_height; 29 int y_height;
30 int y_crop_width; 30 int y_crop_width;
31 int y_crop_height; 31 int y_crop_height;
32 int y_stride; 32 int y_stride;
33 /* int yinternal_width; */
34 33
35 int uv_width; 34 int uv_width;
36 int uv_height; 35 int uv_height;
37 int uv_crop_width; 36 int uv_crop_width;
38 int uv_crop_height; 37 int uv_crop_height;
39 int uv_stride; 38 int uv_stride;
40 /* int uvinternal_width; */
41 39
42 int alpha_width; 40 int alpha_width;
43 int alpha_height; 41 int alpha_height;
44 int alpha_stride; 42 int alpha_stride;
45 43
46 uint8_t *y_buffer; 44 uint8_t *y_buffer;
47 uint8_t *u_buffer; 45 uint8_t *u_buffer;
48 uint8_t *v_buffer; 46 uint8_t *v_buffer;
49 uint8_t *alpha_buffer; 47 uint8_t *alpha_buffer;
50 48
51 uint8_t *buffer_alloc; 49 uint8_t *buffer_alloc;
52 int buffer_alloc_sz; 50 int buffer_alloc_sz;
53 int border; 51 int border;
54 int frame_size; 52 int frame_size;
55 53
56 int corrupted; 54 int corrupted;
57 int flags; 55 int flags;
58 } YV12_BUFFER_CONFIG; 56 } YV12_BUFFER_CONFIG;
59 57
60 int vp8_yv12_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, 58 int vp8_yv12_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf,
59 int width, int height, int border);
60 int vp8_yv12_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf,
61 int width, int height, int border); 61 int width, int height, int border);
62 int vp8_yv12_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, 62 int vp8_yv12_de_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf);
63 int width, int height, int border);
64 int vp8_yv12_de_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf);
65 63
66 int vp9_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, 64 int vp9_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf,
65 int width, int height, int ss_x, int ss_y,
66 int border);
67
68 // Updates the yv12 buffer config with the frame buffer. If cb is not
69 // NULL, then libvpx is using the frame buffer callbacks to handle memory.
70 // If cb is not NULL, libvpx will call cb with minimum size in bytes needed
71 // to decode the current frame. If cb is NULL, libvpx will allocate memory
72 // internally to decode the current frame. Returns 0 on success. Returns < 0
73 // on failure.
74 int vp9_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf,
67 int width, int height, int ss_x, int ss_y, 75 int width, int height, int ss_x, int ss_y,
68 int border); 76 int border,
69 77 vpx_codec_frame_buffer_t *fb,
70 // Updates the yv12 buffer config with the frame buffer. If cb is not 78 vpx_get_frame_buffer_cb_fn_t cb,
71 // NULL, then libvpx is using the frame buffer callbacks to handle memory. 79 void *cb_priv);
72 // If cb is not NULL, libvpx will call cb with minimum size in bytes needed 80 int vp9_free_frame_buffer(YV12_BUFFER_CONFIG *ybf);
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.
76 int vp9_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf,
77 int width, int height, int ss_x, int ss_y,
78 int border,
79 vpx_codec_frame_buffer_t *fb,
80 vpx_get_frame_buffer_cb_fn_t cb,
81 void *cb_priv);
82 int vp9_free_frame_buffer(YV12_BUFFER_CONFIG *ybf);
83 81
84 #ifdef __cplusplus 82 #ifdef __cplusplus
85 } 83 }
86 #endif 84 #endif
87 85
88 #endif // VPX_SCALE_YV12CONFIG_H_ 86 #endif // VPX_SCALE_YV12CONFIG_H_
OLDNEW
« no previous file with comments | « source/libvpx/vpx_scale/vpx_scale_rtcd.sh ('k') | source/libvpx/vpxdec.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698