mirror of https://github.com/thesofproject/sof.git
Tools: Tune: Fix erroneous fprintf() in src_get.m
This fprintf() with missing %d causes in Matlab and octave messed up console output. This fix prints filter order if this issue happens. This could be caused by too high filter specification request that was not possible to reach. Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
This commit is contained in:
parent
00c51bde78
commit
c11d99241d
|
@ -189,7 +189,7 @@ while (stopband_ok) == 0 && (n < n_max)
|
|||
else
|
||||
stopband_ok = 1; % Exit after reverse
|
||||
fprintf('Warning: Filter stop band could not be ');
|
||||
fprintf('reached.\n', cnv.coef_bits);
|
||||
fprintf('reached. FIR order is left to %d\n', nfir);
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue