Commit 3568f0a5 authored by Dominik Weckbecker's avatar Dominik Weckbecker 💬
Browse files

fix compilation errors with the instrumented code

parent a4e7e7f9
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -2852,7 +2852,11 @@ ivas_error push_indice(
 *
 * Push a new indice into the buffer at the next position
 *-------------------------------------------------------------------*/
#ifdef BITSTREAM_ANALYSIS
ivas_error push_next_indice_(
#else
ivas_error push_next_indice(
#endif
#ifdef BITSTREAM_ANALYSIS
    const char *caller,
#endif
@@ -2910,7 +2914,11 @@ ivas_error push_next_indice_(
 * push_next_bits()
 * Push a bit buffer into the buffer at the next position
 *-------------------------------------------------------------------*/
#ifdef BITSTREAM_ANALYSIS
ivas_error push_next_bits_(
#else
ivas_error push_next_bits(
#endif
#ifdef BITSTREAM_ANALYSIS
    const char *caller,
#endif
+8 −3
Original line number Diff line number Diff line
@@ -10664,12 +10664,13 @@ ivas_error config_acelp1_fx(
#ifdef BITSTREAM_ANALYSIS
#define push_next_indice( ... ) push_next_indice_( __func__, __VA_ARGS__ )
#define push_next_bits( ... )   push_next_bits_( __func__, __VA_ARGS__ );
#else
#define push_next_indice( ... ) push_next_indice_( __VA_ARGS__ )
#define push_next_bits( ... )   push_next_bits_( __VA_ARGS__ );
#endif
#ifdef BITSTREAM_ANALYSIS
ivas_error push_next_indice_(
#else
ivas_error push_next_indice(
#endif
#ifdef BITSTREAM_ANALYSIS
    const char *caller,
#endif
@@ -10678,7 +10679,11 @@ ivas_error push_next_indice_(
    Word16 nb_bits /* i  : number of bits used to quantize the indice */
);
#ifdef BITSTREAM_ANALYSIS
ivas_error push_next_bits_(
#else
ivas_error push_next_bits(
#endif
#ifdef BITSTREAM_ANALYSIS
    const char *caller,
#endif