Skip to content

Commit

Permalink
Tools: Tune: Eq: Fix IIR data files names in example_spk_eq.m
Browse files Browse the repository at this point in the history
The IIR files export overwrites the FIR files due to mistake
in the script.

Fixes commit 5ddbd34 ("Tools: Tune: EQ: Add tplg2 blobs create")

Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
  • Loading branch information
singalsu committed Apr 4, 2024
1 parent 732f07c commit 5f65969
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/tune/eq/example_spk_eq.m
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ function example_spk_eq()
fir.bin = 'eq_fir_spk.bin';
fir.tplg1 = 'eq_fir_coef_spk.m4';
fir.tplg2 = 'example_speaker.conf';
iir.txt = 'eq_fir_spk.txt';
iir.bin = 'eq_fir_spk.bin';
iir.tplg1 = 'eq_fir_coef_spk.m4';
iir.txt = 'eq_iir_spk.txt';
iir.bin = 'eq_iir_spk.bin';
iir.tplg1 = 'eq_iir_coef_spk.m4';
iir.tplg2 = 'example_speaker.conf';

%% Get defaults for equalizer design
Expand Down

0 comments on commit 5f65969

Please sign in to comment.