Commit 4a1d2261 authored by vaclav's avatar vaclav
Browse files

move function declarations to appropriate libraries

parent 5d3161fe
Loading
Loading
Loading
Loading
+1 −10
Original line number Diff line number Diff line
@@ -4496,17 +4496,8 @@ void ivas_spar_param_to_masa_param_mapping(
 * output setup prototypes
 *----------------------------------------------------------------------------------*/

/*! r: number of output channels */
int16_t audioCfg2channels(
    const AUDIO_CONFIG output_config                            /* i  : output audio configuration                      */
);

void ivas_output_init(
    IVAS_OUTPUT_SETUP *hOutSetup,                               /* o  : output setup structure                          */
    const AUDIO_CONFIG output_config                            /* i  : output audio configuration                      */
);

// VE2AT: this fucntion is used in lib_rend at one place - the fucntion ivas_rend_initEfap() is however not used; wh
// VE2AT: this function is used in lib_rend at one place - the function ivas_rend_initEfap() is however not used; where is its best place?
// VE2AT: rename it
IVAS_REND_AudioConfig getRendAudioConfigFromIvasAudioConfig(
    AUDIO_CONFIG config 
+1 −0
Original line number Diff line number Diff line
@@ -38,6 +38,7 @@
#include "rom_com.h"
#include "prot.h"
#include "ivas_prot.h"
#include "ivas_prot_rend.h"
#include "ivas_cnst.h"
#include "ivas_rom_com.h"
#include "ivas_rom_dec.h"
+1 −0
Original line number Diff line number Diff line
@@ -36,6 +36,7 @@
#include <assert.h>
#include "prot.h"
#include "ivas_prot.h"
#include "ivas_prot_rend.h"
#include "ivas_rom_com.h"
#include "ivas_rom_rend.h"
#ifdef DEBUGGING
+1 −0
Original line number Diff line number Diff line
@@ -39,6 +39,7 @@
#include "prot.h"
#include "string.h"
#include "ivas_prot.h"
#include "ivas_prot_rend.h"
#include "ivas_rom_com.h"
#include "ivas_stat_com.h"
#include <math.h>
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@

#include "lib_dec.h"
#include "ivas_prot.h"
#include "ivas_prot_rend.h"
#include "prot.h"
#include "jbm_jb4sb.h"
#include "jbm_pcmdsp_apa.h"
Loading