mirror of https://github.com/thesofproject/sof.git
13 lines
227 B
Mathematica
13 lines
227 B
Mathematica
|
function drc_coefs = drc_gen_quant_coefs(num_bands, sample_rate, params);
|
||
|
|
||
|
addpath ../drc
|
||
|
|
||
|
for i = 1:num_bands
|
||
|
coefs = drc_gen_coefs(params(i), sample_rate);
|
||
|
drc_coefs(i) = drc_generate_config(coefs);
|
||
|
end
|
||
|
|
||
|
rmpath ../drc
|
||
|
|
||
|
end
|