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.
12 #ifndef VP10_ENCODER_BITSTREAM_H_
13 #define VP10_ENCODER_BITSTREAM_H_
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
;
32 #endif // VP10_ENCODER_BITSTREAM_H_