Commit 741a7de7 authored by multrus's avatar multrus
Browse files

Merge branch...

Merge branch '1874-wrong-multiplication-function-used-in-printing-external-renderer-framesize' into 'main'

Resolve "Wrong multiplication function used in printing external renderer framesize"

Closes #1874

See merge request !2007
parents 5b7b2aaf 9d119025
Loading
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -10509,13 +10509,17 @@ static ivas_error printConfigInfo_rend(
        fprintf( stdout, "Head-tracking:          ON\n" );
    }

    test();
    test();
    test();
    test();
    IF( EQ_16( hIvasRend->outputConfig, IVAS_AUDIO_CONFIG_BINAURAL ) ||
        EQ_16( hIvasRend->outputConfig, IVAS_AUDIO_CONFIG_BINAURAL_ROOM_IR ) ||
        EQ_16( hIvasRend->outputConfig, IVAS_AUDIO_CONFIG_BINAURAL_ROOM_REVERB ) ||
        EQ_16( hIvasRend->outputConfig, IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED ) ||
        EQ_16( hIvasRend->outputConfig, IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM ) )
    {
        fprintf( stdout, "Render framesize:       %dms\n", mult( hIvasRend->num_subframes, 5 ) );
        fprintf( stdout, "Render framesize:       %dms\n", i_mult( hIvasRend->num_subframes, 5 ) );
    }

    return IVAS_ERR_OK;