Commit 560d90f0 authored by Vladimir Malenovsky's avatar Vladimir Malenovsky
Browse files

missing include debug.h

parent af8d0b89
Loading
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -795,7 +795,6 @@ ivas_error config_acelp1(
#ifdef DEBUGGING
#ifdef REMOVE_IVAS_UNUSED_PARAMETERS_WARNING
    (void) active_cnt;
    (void) core_brate_inpI;
#endif
#endif
    ivas_error error;
+3 −0
Original line number Diff line number Diff line
@@ -13,6 +13,9 @@
#include "prot_fx.h"    /* Function prototypes                    */
#include "basop_util.h" /* Function prototypes                    */
#include "prot_fx_enc.h"
#ifdef DEBUGGING
#include "debug.h"
#endif

/*-------------------------------------------------------------------*
 * amr_wb_enc()
+5 −0
Original line number Diff line number Diff line
/*====================================================================================
    EVS Codec 3GPP TS26.452 Aug 12, 2021. Version 16.3.0
  ====================================================================================*/

#include <stdint.h>
#include <assert.h>
#include "options.h" /* Compilation switches                   */
@@ -10,10 +11,14 @@
#include "prot_fx.h"    /* Function prototypes                    */
#include "basop_util.h" /* Function prototypes                    */
#include "prot_fx_enc.h"
#ifdef DEBUGGING
#include "debug.h"
#endif

/*-------------------------------------------------------------------*
 *  Local function prototypes
 *-------------------------------------------------------------------*/

#ifdef IVAS_FLOAT_FIXED
static void initFrameHeader_loc( Encoder_State *st );
static void writeFrameHeader_loc( Encoder_State *st );
+3 −0
Original line number Diff line number Diff line
@@ -40,6 +40,9 @@
#include "ivas_prot.h"
#include "prot_fx_enc.h"
#include "ivas_rom_com.h"
#ifdef DEBUGGING
#include "debug.h"
#endif
#include "wmc_auto.h"
#ifdef IVAS_FLOAT_FIXED
#include "ivas_prot_fx.h"
+8 −1
Original line number Diff line number Diff line
@@ -39,6 +39,9 @@
#include "prot.h"
#include "ivas_prot.h"
#include "ivas_rom_com.h"
#ifdef DEBUGGING
#include "debug.h"
#endif
#include "wmc_auto.h"
#ifdef IVAS_FLOAT_FIXED
#include "prot_fx.h"
@@ -953,7 +956,11 @@ ivas_error ivas_enc(
        }

        /* Configuration of combined-format bit-budget distribution */
        ivas_set_surplus_brate_enc( st_ivas );
        ivas_set_surplus_brate_enc( st_ivas
#ifdef DEBUG_MODE_INFO
                                    ,nb_bits_metadata
#endif
        );

        /* Encode MASA transport channels */
        if ( ( ivas_cpe_enc( st_ivas, 0, data_f[n], data_f[n + 1], input_frame, nb_bits_metadata[0] ) ) != IVAS_ERR_OK )
Loading