Commit e8691f01 authored by stoutjesdijk's avatar stoutjesdijk 🎧
Browse files

cosmetics

parent 7a1aa576
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -678,25 +678,25 @@ int32_t main( int32_t argc, char **argv )
        if ( args.outConfig.audioConfig != IVAS_REND_AUDIO_CONFIG_BINAURAL_ROOM )
        {
            fprintf( stderr, "\nExternal Renderer Config is supported only when BINAURAL_ROOM is used as output. Exiting. \n" );
            exit( -1 ); // goto cleanup;
            exit( -1 );
        }

        if ( ( error = IVAS_REND_GetRenderConfig( hIvasRend, &renderConfig ) ) != IVAS_ERR_OK )
        {
            fprintf( stderr, "\nIVAS_DEC_GetRenderConfig failed\n" );
            exit( -1 ); // goto cleanup;
            exit( -1 );
        }

        if ( RenderConfigReader_read( renderConfigReader, &renderConfig ) != IVAS_ERR_OK )
        {
            fprintf( stderr, "Failed to read renderer configuration from file %s\n", args.renderConfigFilePath );
            exit( -1 ); // goto cleanup;
            exit( -1 );
        }

        if ( ( error = IVAS_REND_FeedRenderConfig( hIvasRend, renderConfig ) ) != IVAS_ERR_OK )
        {
            fprintf( stderr, "\nIVAS_DEC_FeedRenderConfig failed\n" );
            exit( -1 ); // goto cleanup;
            exit( -1 );
        }
    }

+2 −2

File changed.

Contains only whitespace changes.