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 |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 vp9_ppflags_t *flags); | 67 vp9_ppflags_t *flags); |
68 | 68 |
69 vpx_codec_err_t vp9_copy_reference_dec(struct VP9Decoder *pbi, | 69 vpx_codec_err_t vp9_copy_reference_dec(struct VP9Decoder *pbi, |
70 VP9_REFFRAME ref_frame_flag, | 70 VP9_REFFRAME ref_frame_flag, |
71 YV12_BUFFER_CONFIG *sd); | 71 YV12_BUFFER_CONFIG *sd); |
72 | 72 |
73 vpx_codec_err_t vp9_set_reference_dec(VP9_COMMON *cm, | 73 vpx_codec_err_t vp9_set_reference_dec(VP9_COMMON *cm, |
74 VP9_REFFRAME ref_frame_flag, | 74 VP9_REFFRAME ref_frame_flag, |
75 YV12_BUFFER_CONFIG *sd); | 75 YV12_BUFFER_CONFIG *sd); |
76 | 76 |
77 int vp9_get_reference_dec(struct VP9Decoder *pbi, | |
78 int index, YV12_BUFFER_CONFIG **fb); | |
79 | |
80 struct VP9Decoder *vp9_decoder_create(); | 77 struct VP9Decoder *vp9_decoder_create(); |
81 | 78 |
82 void vp9_decoder_remove(struct VP9Decoder *pbi); | 79 void vp9_decoder_remove(struct VP9Decoder *pbi); |
83 | 80 |
84 #ifdef __cplusplus | 81 #ifdef __cplusplus |
85 } // extern "C" | 82 } // extern "C" |
86 #endif | 83 #endif |
87 | 84 |
88 #endif // VP9_DECODER_VP9_DECODER_H_ | 85 #endif // VP9_DECODER_VP9_DECODER_H_ |
OLD | NEW |