Commit 79f998f3 authored by emerit's avatar emerit
Browse files

fix non diegetic pan gain display

parent 3619e8e7
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1977,7 +1977,7 @@ static ivas_error printConfigInfo_dec(
        if ( st_ivas->hDecoderConfig->Opt_non_diegetic_pan )
        {
            fprintf( stdout, "Output configuration:   mono EVS bit-exact decoding to stereo\n" );
            fprintf( stdout, "Non-diegetic panning:   %.2f\n", st_ivas->hDecoderConfig->non_diegetic_pan_gain );
            fprintf( stdout, "Non-diegetic panning:   %.2f\n", st_ivas->hDecoderConfig->non_diegetic_pan_gain * 90.f );
        }
        else
#endif
@@ -2063,7 +2063,7 @@ static ivas_error printConfigInfo_dec(
#ifdef NON_DIEGETIC_PAN
        if ( st_ivas->hDecoderConfig->Opt_non_diegetic_pan )
        {
            fprintf( stdout, "Non-diegetic panning:   %.2f\n", st_ivas->hDecoderConfig->non_diegetic_pan_gain );
            fprintf( stdout, "Non-diegetic panning:   %.2f\n", st_ivas->hDecoderConfig->non_diegetic_pan_gain * 90.f );
        }
#endif
    }