vp10/encoder/bitstream.[hc]: correct a prototype
quiets a -Wmissing-prototypes warning BUG=b/29584271 Change-Id: I91aba2a75dccd6752bdf91837564c2aa45817c09
This commit is contained in:
@@ -121,7 +121,7 @@ static struct vp10_token interintra_mode_encodings[INTERINTRA_MODES];
|
||||
static struct vp10_token motvar_encodings[MOTION_VARIATIONS];
|
||||
#endif // CONFIG_OBMC || CONFIG_WARPED_MOTION
|
||||
|
||||
void vp10_encode_token_init() {
|
||||
void vp10_encode_token_init(void) {
|
||||
#if CONFIG_EXT_TX
|
||||
int s;
|
||||
for (s = 1; s < EXT_TX_SETS_INTER; ++s) {
|
||||
|
@@ -20,7 +20,7 @@ extern "C" {
|
||||
|
||||
void vp10_pack_bitstream(VP10_COMP *const cpi, uint8_t *dest, size_t *size);
|
||||
|
||||
void vp10_encode_token_init();
|
||||
void vp10_encode_token_init(void);
|
||||
|
||||
static INLINE int vp10_preserve_existing_gf(VP10_COMP *cpi) {
|
||||
return !cpi->multi_arf_allowed && cpi->refresh_golden_frame &&
|
||||
|
Reference in New Issue
Block a user