Commit 5f626b9c authored by Shikha Shetgeri's avatar Shikha Shetgeri
Browse files

resolved instrumentation build errors

parent 5b53afc9
Loading
Loading
Loading
Loading
Loading
+18 −1
Original line number Diff line number Diff line
@@ -377,9 +377,25 @@ ivas_error ivas_ism_dec_config(

#ifdef NCHAN_ISM_PARAMETER
    switch ( st_ivas->nchan_ism )
    {
        case 1:
            st_ivas->transport_config = AUDIO_CONFIG_ISM1;
            break;
        case 2:
            st_ivas->transport_config = AUDIO_CONFIG_ISM2;
            break;
        case 3:
            st_ivas->transport_config = AUDIO_CONFIG_ISM3;
            break;
        case 4:
            st_ivas->transport_config = AUDIO_CONFIG_ISM4;
            break;
        default:
            st_ivas->transport_config = AUDIO_CONFIG_INVALID;
            break;
    }
#else
    switch ( num_obj )
#endif
    {
        case 1:
            st_ivas->transport_config = AUDIO_CONFIG_ISM1;
@@ -397,6 +413,7 @@ ivas_error ivas_ism_dec_config(
            st_ivas->transport_config = AUDIO_CONFIG_INVALID;
            break;
    }
#endif

    return error;
}
+2 −1
Original line number Diff line number Diff line
@@ -1058,9 +1058,10 @@ typedef struct encoder_config_structure
    int16_t force;                                  /* parameter to force specific "core" of the Core-Coder*/
    int16_t mdct_stereo_mode_cmdl;                  /* mdct stereo mode forced from command-line, employed only when DEBUG_FORCE_MDCT_STEREO_MODE is activated */
#ifdef DEBUG_AGC_ENCODER_CMD_OPTION
    int16_t Opt_AGC_ON;                             /* flag indicating AGC operation in SBA */
    //int16_t Opt_AGC_ON;                             /* flag indicating AGC operation in SBA */
#endif
#endif
    int16_t Opt_AGC_ON;                             /* flag indicating AGC operation in SBA */
} ENCODER_CONFIG, *ENCODER_CONFIG_HANDLE;


+2 −2

File changed.

Contains only whitespace changes.