| * 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 AV1_DECODER_DECODEFRAME_H_ |
| #define AV1_DECODER_DECODEFRAME_H_ |
| struct aom_read_bit_buffer; |
| int av1_read_sync_code(struct aom_read_bit_buffer *const rb); |
| void av1_read_frame_size(struct aom_read_bit_buffer *rb, int *width, |
| BITSTREAM_PROFILE av1_read_profile(struct aom_read_bit_buffer *rb); |
| void av1_decode_frame(struct AV1Decoder *pbi, const uint8_t *data, |
| const uint8_t *data_end, const uint8_t **p_data_end); |
| #endif // AV1_DECODER_DECODEFRAME_H_ |