| Index: source/libvpx/vp9/decoder/vp9_onyxd.h
|
| ===================================================================
|
| --- source/libvpx/vp9/decoder/vp9_onyxd.h (revision 254565)
|
| +++ source/libvpx/vp9/decoder/vp9_onyxd.h (working copy)
|
| @@ -19,7 +19,7 @@
|
| extern "C" {
|
| #endif
|
|
|
| -typedef void *VP9D_PTR;
|
| +struct VP9Decompressor;
|
|
|
| typedef struct {
|
| int width;
|
| @@ -39,28 +39,30 @@
|
|
|
| void vp9_initialize_dec();
|
|
|
| -int vp9_receive_compressed_data(VP9D_PTR comp,
|
| +int vp9_receive_compressed_data(struct VP9Decompressor *pbi,
|
| size_t size, const uint8_t **dest,
|
| int64_t time_stamp);
|
|
|
| -int vp9_get_raw_frame(VP9D_PTR comp, YV12_BUFFER_CONFIG *sd,
|
| +int vp9_get_raw_frame(struct VP9Decompressor *pbi,
|
| + YV12_BUFFER_CONFIG *sd,
|
| int64_t *time_stamp, int64_t *time_end_stamp,
|
| vp9_ppflags_t *flags);
|
|
|
| -vpx_codec_err_t vp9_copy_reference_dec(VP9D_PTR comp,
|
| +vpx_codec_err_t vp9_copy_reference_dec(struct VP9Decompressor *pbi,
|
| VP9_REFFRAME ref_frame_flag,
|
| YV12_BUFFER_CONFIG *sd);
|
|
|
| -vpx_codec_err_t vp9_set_reference_dec(VP9D_PTR comp,
|
| +vpx_codec_err_t vp9_set_reference_dec(struct VP9Decompressor *pbi,
|
| VP9_REFFRAME ref_frame_flag,
|
| YV12_BUFFER_CONFIG *sd);
|
|
|
| -int vp9_get_reference_dec(VP9D_PTR ptr, int index, YV12_BUFFER_CONFIG **fb);
|
| +int vp9_get_reference_dec(struct VP9Decompressor *pbi,
|
| + int index, YV12_BUFFER_CONFIG **fb);
|
|
|
|
|
| -VP9D_PTR vp9_create_decompressor(VP9D_CONFIG *oxcf);
|
| +struct VP9Decompressor *vp9_create_decompressor(VP9D_CONFIG *oxcf);
|
|
|
| -void vp9_remove_decompressor(VP9D_PTR comp);
|
| +void vp9_remove_decompressor(struct VP9Decompressor *pbi);
|
|
|
| #ifdef __cplusplus
|
| } // extern "C"
|
|
|