Commit b05767ee authored by Sandesh Venkatesh's avatar Sandesh Venkatesh
Browse files

GCC compiler build issue fixes

parent 3b30ee2f
Loading
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -920,6 +920,11 @@ UWord16 get_next_indice( /* o : value of the indice */
	Word16 nb_bits                    /* i  : number of bits that were used to quantize the indice */
);

UWord16 get_next_indice_fx(                       /* o  : value of the indice */
                            Decoder_State *st_fx, /* i/o: decoder state structure */
                            Word16 nb_bits        /* i  : number of bits that were used to quantize the indice */
);

void push_indice_fx(
	BSTR_ENC_HANDLE hBstr,         /* i/o: encoder bitstream handle       */
	Word16 id,           /* i  : ID of the indice */
+1 −0
Original line number Diff line number Diff line
@@ -68,6 +68,7 @@

#include <stdint.h>
#include <stdbool.h>
#include <limits.h>

#if __STDC_VERSION__ >= 199901L
typedef int8_t Word8;
+1 −0
Original line number Diff line number Diff line
@@ -43,6 +43,7 @@
#include "prot.h"
#include "rom_com.h"
#include "wmc_auto.h"
#include "prot_fx2.h"

/*-------------------------------------------------------------------*
 * DecodeIndex()
+1 −0
Original line number Diff line number Diff line
@@ -40,6 +40,7 @@
#include "rom_com.h"
#include "rom_dec.h"
#include "wmc_auto.h"
#include "prot_fx2.h"

/*---------------------------------------------------------------------*
 * reconfig_decoder_LPD_ivas()
+1 −0
Original line number Diff line number Diff line
@@ -40,6 +40,7 @@
#include "prot.h"
#include "rom_com.h"
#include "wmc_auto.h"
#include "prot_fx2.h"

/*-------------------------------------------------------------------*
 * reset_rf_indices()
Loading