2012-11-02 22:22:57 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2013-11-16 00:48:43 +04:00
|
|
|
#ifndef VP9_DECODER_VP9_DECODEFRAME_H_
|
|
|
|
#define VP9_DECODER_VP9_DECODEFRAME_H_
|
2012-11-02 22:22:57 +04:00
|
|
|
|
2014-01-19 00:16:11 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2013-04-26 23:30:20 +04:00
|
|
|
struct VP9Common;
|
2013-05-14 01:42:45 +04:00
|
|
|
struct VP9Decompressor;
|
2012-11-02 22:22:57 +04:00
|
|
|
|
2013-08-23 07:03:08 +04:00
|
|
|
void vp9_init_dequantizer(struct VP9Common *cm);
|
2014-03-21 02:01:37 +04:00
|
|
|
|
|
|
|
int vp9_decode_frame(struct VP9Decompressor *pbi,
|
|
|
|
const uint8_t *data, const uint8_t *data_end,
|
|
|
|
const uint8_t **p_data_end);
|
2012-11-02 22:22:57 +04:00
|
|
|
|
2014-01-19 00:16:11 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
2013-11-16 00:48:43 +04:00
|
|
|
#endif // VP9_DECODER_VP9_DECODEFRAME_H_
|