Fix compiler warnings
[aom.git] / vp10 / encoder / bitstream.h
blobaa0ed2fdf3507084b6411d611391d876517a1549
1 /*
2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
12 #ifndef VP10_ENCODER_BITSTREAM_H_
13 #define VP10_ENCODER_BITSTREAM_H_
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
19 #include "vp10/encoder/encoder.h"
21 void vp10_pack_bitstream(VP10_COMP *const cpi, uint8_t *dest, size_t *size);
23 static INLINE int vp10_preserve_existing_gf(VP10_COMP *cpi) {
24 return !cpi->multi_arf_allowed && cpi->refresh_golden_frame &&
25 cpi->rc.is_src_frame_alt_ref;
28 #ifdef __cplusplus
29 } // extern "C"
30 #endif
32 #endif // VP10_ENCODER_BITSTREAM_H_