Commit 7baca469 authored by Tapani Pihlajakuja's avatar Tapani Pihlajakuja
Browse files

Fix build warnings.

parent 2f2784e9
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1300,6 +1300,7 @@ int main(

            inputType1 = IVAS_REND_AUDIO_CONFIG_TYPE_UNKNOWN;
            inputType2 = IVAS_REND_AUDIO_CONFIG_TYPE_UNKNOWN;
            hMetaOutput = NULL;

            numInputFormats = 0;
            if ( args.inConfig.numAmbisonicsBuses > 0 )
+2 −2
Original line number Diff line number Diff line
@@ -911,7 +911,7 @@ typedef struct ivas_mcmasa_ana_data_structure

typedef struct ivas_omasa_ana_data_structure
{
    uint8_t nbands;
    int16_t nbands;

    /* CLDFB analysis */
    int16_t num_Cldfb_instances;
@@ -948,7 +948,7 @@ typedef struct ivas_omasa_ana_data_structure

typedef struct ivas_dirac_ana_data_structure
{
    uint8_t nbands;
    int16_t nbands;

    /* CLDFB analysis */
    int16_t num_Cldfb_instances;
+1 −2
Original line number Diff line number Diff line
@@ -1095,7 +1095,6 @@ static bool isIoConfigPairSupported(
#ifdef MASA_PREREND
static ivas_error initIsmMasaRendering(
    input_ism *inputIsm,
    const IVAS_REND_AudioConfig inConfig,
    int32_t inSampleRate )
{
    ivas_error error;
@@ -1183,7 +1182,7 @@ static ivas_error setRendInputActiveIsm(
#ifdef MASA_PREREND
    else if ( outConfig == IVAS_REND_AUDIO_CONFIG_MASA1 || outConfig == IVAS_REND_AUDIO_CONFIG_MASA2 )
    {
        if ( ( error = initIsmMasaRendering( inputIsm, inConfig, *rendCtx.pOutSampleRate ) ) != IVAS_ERR_OK )
        if ( ( error = initIsmMasaRendering( inputIsm, *rendCtx.pOutSampleRate ) ) != IVAS_ERR_OK )
        {
            return error;
        }