Conflicts:
configure
test/convolve_test.cc
test/dct16x16_test.cc
test/dct32x32_test.cc
test/fdct4x4_test.cc
test/fdct8x8_test.cc
vp9/common/vp9_alloccommon.c
vp9/common/vp9_entropy.c
vp9/common/vp9_enums.h
vp9/common/vp9_quant_common.c
vp9/common/vp9_quant_common.h
vp9/common/vp9_rtcd_defs.pl
vp9/common/vp9_scale.c
vp9/decoder/vp9_decodeframe.c
vp9/decoder/vp9_decodeframe.h
vp9/decoder/vp9_detokenize.c
vp9/encoder/vp9_aq_complexity.c
vp9/encoder/vp9_bitstream.c
vp9/encoder/vp9_encodeframe.c
vp9/encoder/vp9_encodemb.c
vp9/encoder/vp9_encoder.c
vp9/encoder/vp9_firstpass.c
vp9/encoder/vp9_mcomp.c
vp9/encoder/vp9_pickmode.c
vp9/encoder/vp9_quantize.c
vp9/encoder/vp9_ratectrl.c
vp9/encoder/vp9_rd.c
vp9/encoder/vp9_rdopt.c
vp9/encoder/vp9_temporal_filter.c
vp9/encoder/vp9_tokenize.c
vp9/vp9_cx_iface.c
vp9/vp9_dx_iface.c
vpx/vpx_codec.h
vpx/vpx_image.h
vpx_scale/generic/yv12config.c
vpxdec.c
vpxenc.c
vpxenc.h
y4menc.c
y4minput.c
Change-Id: I53b19ea1d9818a4440481920065d70164348d02e
41 lines
1.2 KiB
C
41 lines
1.2 KiB
C
/*
|
|
* 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.
|
|
*/
|
|
|
|
|
|
#ifndef VP9_DECODER_VP9_DECODEFRAME_H_
|
|
#define VP9_DECODER_VP9_DECODEFRAME_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct VP9Common;
|
|
struct VP9Decoder;
|
|
struct vp9_read_bit_buffer;
|
|
|
|
void vp9_init_dequantizer(struct VP9Common *cm);
|
|
|
|
void vp9_decode_frame(struct VP9Decoder *pbi,
|
|
const uint8_t *data, const uint8_t *data_end,
|
|
const uint8_t **p_data_end);
|
|
|
|
BITSTREAM_PROFILE vp9_read_profile(struct vp9_read_bit_buffer *rb);
|
|
int vp9_read_sync_code(struct vp9_read_bit_buffer *const rb);
|
|
void vp9_read_frame_size(struct vp9_read_bit_buffer *rb,
|
|
int *width, int *height);
|
|
BITSTREAM_PROFILE vp9_read_profile(struct vp9_read_bit_buffer *rb);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif // VP9_DECODER_VP9_DECODEFRAME_H_
|