2012-11-02 11:22:57 -07: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 12:48:43 -08:00
|
|
|
#ifndef VP9_DECODER_VP9_DECODEFRAME_H_
|
|
|
|
#define VP9_DECODER_VP9_DECODEFRAME_H_
|
2012-11-02 11:22:57 -07:00
|
|
|
|
2013-04-26 12:30:20 -07:00
|
|
|
struct VP9Common;
|
2013-05-13 14:42:45 -07:00
|
|
|
struct VP9Decompressor;
|
2012-11-02 11:22:57 -07:00
|
|
|
|
2013-08-22 20:03:08 -07:00
|
|
|
void vp9_init_dequantizer(struct VP9Common *cm);
|
2013-05-13 14:42:45 -07:00
|
|
|
int vp9_decode_frame(struct VP9Decompressor *cpi, const uint8_t **p_data_end);
|
2012-11-02 11:22:57 -07:00
|
|
|
|
2013-11-15 12:48:43 -08:00
|
|
|
#endif // VP9_DECODER_VP9_DECODEFRAME_H_
|