Commit a16345d1 authored by vaclav's avatar vaclav
Browse files

fix

parent 04eca59b
Loading
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -166,12 +166,13 @@ Word16 ivas_get_nchan_buffers_dec_ivas_fx(
/*---------------------------------------------------------------------*
 * get_channel_config()
 *
 * Gets a str related to input config
 * Gets a str related to audio configuration
 *---------------------------------------------------------------------*/

ivas_error get_channel_config(
    AUDIO_CONFIG config,
    Word8 *str )
    const AUDIO_CONFIG config, /* i  : audio configuration                  */
    Word8 *str                 /* o  : string with the configuration name   */
)
{
    IF( EQ_16( (Word16) config, IVAS_AUDIO_CONFIG_MONO ) )
    {
+3 −2
Original line number Diff line number Diff line
@@ -83,11 +83,12 @@ Word16 ivas_get_nchan_buffers_dec_ivas_fx(

#ifdef FIX_DISCLAIMER
ivas_error get_channel_config(
    const AUDIO_CONFIG config,
    char *str 
    const AUDIO_CONFIG config,                                  /* i  : audio configuration                             */
    Word8 *str                                                  /* o  : string with the configuration name              */
);
#endif


/*----------------------------------------------------------------------------------*
 * Limiter prototypes
 *----------------------------------------------------------------------------------*/
+2 −2
Original line number Diff line number Diff line
@@ -8464,7 +8464,7 @@ static ivas_error printConfigInfo_rend(
)
{
    ivas_error error;
    char config_str[50];
    Word8 config_str[50];

    /*-----------------------------------------------------------------*
     * Print output audio configuration
@@ -8511,7 +8511,7 @@ void IVAS_REND_PrintInputConfig(
    const IVAS_AUDIO_CONFIG inputConfig /* i  : input audio configuration    */
)
{
    char config_str[50];
    Word8 config_str[50];

    get_channel_config( inputConfig, &config_str[0] );
    fprintf( stdout, "Input configuration:    %s\n", config_str );
+1 −1

File changed.

Contains only whitespace changes.