Commit 831fbfb6 authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

[fix] bin_dataset and kwargs not passed to called functions

parent 3f45c63a
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -113,7 +113,7 @@ def render_oba_to_binaural(

        render_oba_to_cba(oba, cba_tmp)

        render_cba_to_binaural(cba_tmp, bin, trajectory)
        render_cba_to_binaural(cba_tmp, bin, trajectory, bin_dataset, **kwargs)
    else:
        IR, SourcePosition, latency_smp = load_ir(oba.name, bin.name, bin_dataset)

+1 −1
Original line number Diff line number Diff line
@@ -123,7 +123,7 @@ def render_sba_to_binaural(

        render_sba_to_cba(sba, cba_tmp)

        channelbased.render_cba_to_binaural(cba_tmp, bin, trajectory)
        channelbased.render_cba_to_binaural(cba_tmp, bin, trajectory, bin_dataset, **kwargs)
    else:
        IR, _, latency_smp = load_ir(sba.name, bin.name, bin_dataset)