Commit 0b637afc authored by Stephane Ragot's avatar Stephane Ragot
Browse files

fix declaration issue

parent 133cdf2f
Loading
Loading
Loading
Loading
Loading
+12 −2
Original line number Diff line number Diff line
@@ -162,7 +162,12 @@ ivas_error IVAS_ENC_ConfigureForMono(
    const IVAS_ENC_BANDWIDTH maxBandwidth,          /* i  : bandwidth limitation                                                                                */
    const IVAS_ENC_DTX_CONFIG dtxConfig,            /* i  : configuration of DTX, can by set to default by using IVAS_ENC_GetDefaultDtxConfig()                 */
    const IVAS_ENC_CHANNEL_AWARE_CONFIG caConfig, /* i  : configuration of channel-aware mode, can by set to default by using IVAS_ENC_GetDefaultChannelAwareConfig() */
#ifdef BINAURAL_AUDIO_CMDLINE
    const bool downmixFromStereo,                   /* i  : if true, the encoder accepts a stereo input and internally downmixes it to mono before encoding     */
    const bool is_binaural                          /* i  : if true, the input is binaural audio */
#else
    const bool downmixFromStereo                    /* i  : if true, the encoder accepts a stereo input and internally downmixes it to mono before encoding     */
#endif
);

/*! r: error code */
@@ -172,7 +177,12 @@ ivas_error IVAS_ENC_ConfigureForStereo(
    const int32_t bitrate,                          /* i  : requested bitrate of the output bitstream                                                           */
    const bool max_bwidth_user,                     /* i  : shows if bandwidth limitation was set by the user (true) or if default bandwidth was used (false)   */
    const IVAS_ENC_BANDWIDTH maxBandwidth,          /* i  : bandwidth limitation                                                                                */
#ifdef BINAURAL_AUDIO_CMDLINE
    const IVAS_ENC_DTX_CONFIG dtxConfig,            /* i  : configuration of DTX, can by set to default by using IVAS_ENC_GetDefaultDtxConfig()                 */
    const bool is_binaural                          /* i  : flag indicating if input is binaural audio */
#else
    const IVAS_ENC_DTX_CONFIG dtxConfig             /* i  : configuration of DTX, can by set to default by using IVAS_ENC_GetDefaultDtxConfig()                 */
#endif
#ifdef DEBUGGING
    ,
    const IVAS_ENC_STEREO_MODE stereoMode /* i  : forces a specific stereo coding mode                                                                */