Loading apps/decoder.c +4 −0 Original line number Diff line number Diff line Loading @@ -692,7 +692,11 @@ int main( goto cleanup; } } #ifdef FIX_708_AEID_COMMAND_LINE else #else else if ( error != IVAS_ERR_ACOUSTIC_ENVIRONMENT_MISSING ) #endif { fprintf( stderr, "Failed to get acoustic environment with ID: %d\n\n", arg.acousticEnvironmentId ); goto cleanup; Loading apps/renderer.c +7 −0 Original line number Diff line number Diff line Loading @@ -2745,6 +2745,13 @@ static void parseOption( break; case CmdLnOptionId_acousticEnvironmentId: assert( numOptionValues == 1 ); #ifdef FIX_708_AEID_COMMAND_LINE if ( !is_digits_only( optionValues[0] ) ) { fprintf( stderr, "Invalid acousting environment ID specified: %s\n", optionValues[0] ); exit( -1 ); } #endif args->acousticEnvironmentId = (int16_t) strtol( optionValues[0], NULL, 10 ); break; case CmdLnOptionId_syncMdDelay: Loading lib_dec/lib_dec.c +3 −0 Original line number Diff line number Diff line Loading @@ -275,6 +275,9 @@ static void init_decoder_config( hDecoderConfig->Opt_delay_comp = 0; hDecoderConfig->Opt_ExternalOrientation = 0; #ifdef FIX_708_AEID_COMMAND_LINE hDecoderConfig->Opt_aeid_on = 0; #endif return; } Loading Loading
apps/decoder.c +4 −0 Original line number Diff line number Diff line Loading @@ -692,7 +692,11 @@ int main( goto cleanup; } } #ifdef FIX_708_AEID_COMMAND_LINE else #else else if ( error != IVAS_ERR_ACOUSTIC_ENVIRONMENT_MISSING ) #endif { fprintf( stderr, "Failed to get acoustic environment with ID: %d\n\n", arg.acousticEnvironmentId ); goto cleanup; Loading
apps/renderer.c +7 −0 Original line number Diff line number Diff line Loading @@ -2745,6 +2745,13 @@ static void parseOption( break; case CmdLnOptionId_acousticEnvironmentId: assert( numOptionValues == 1 ); #ifdef FIX_708_AEID_COMMAND_LINE if ( !is_digits_only( optionValues[0] ) ) { fprintf( stderr, "Invalid acousting environment ID specified: %s\n", optionValues[0] ); exit( -1 ); } #endif args->acousticEnvironmentId = (int16_t) strtol( optionValues[0], NULL, 10 ); break; case CmdLnOptionId_syncMdDelay: Loading
lib_dec/lib_dec.c +3 −0 Original line number Diff line number Diff line Loading @@ -275,6 +275,9 @@ static void init_decoder_config( hDecoderConfig->Opt_delay_comp = 0; hDecoderConfig->Opt_ExternalOrientation = 0; #ifdef FIX_708_AEID_COMMAND_LINE hDecoderConfig->Opt_aeid_on = 0; #endif return; } Loading