2012-11-02 19:22:57 +01: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-15 21:48:43 +01:00
|
|
|
#ifndef VP9_DECODER_VP9_DECODEFRAME_H_
|
|
|
|
#define VP9_DECODER_VP9_DECODEFRAME_H_
|
2012-11-02 19:22:57 +01:00
|
|
|
|
2014-01-18 21:16:11 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2013-04-26 21:30:20 +02:00
|
|
|
struct VP9Common;
|
2014-04-08 20:41:12 +02:00
|
|
|
struct VP9Decoder;
|
2012-11-02 19:22:57 +01:00
|
|
|
|
2013-08-23 05:03:08 +02:00
|
|
|
void vp9_init_dequantizer(struct VP9Common *cm);
|
2014-03-20 23:01:37 +01:00
|
|
|
|
2014-05-22 00:51:40 +02:00
|
|
|
void vp9_decode_frame(struct VP9Decoder *pbi,
|
|
|
|
const uint8_t *data, const uint8_t *data_end,
|
|
|
|
const uint8_t **p_data_end);
|
2012-11-02 19:22:57 +01:00
|
|
|
|
2014-01-18 21:16:11 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
2013-11-15 21:48:43 +01:00
|
|
|
#endif // VP9_DECODER_VP9_DECODEFRAME_H_
|