Skip to content

Commit 6275fa8

Browse files
committed
Audio: SRC: Tune: Prefix top level functions with sof_
This change is done to avoid conflict with possible other similar scripts. Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
1 parent b0b6b44 commit 6275fa8

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

src/audio/src/tune/README

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ of objective audio quality parameters.
88
The tools need GNU Octave version 4.0.0 or later with octave-signal
99
package.
1010

11-
src_std_int32.m
12-
---------------
11+
sof_src_std_int32.m
12+
-------------------
1313

1414
This script creates the default coefficient set and contains nothing
1515
else but call for src_generate.
1616

17-
src_tiny_int16.m
18-
----------------
17+
sof_src_tiny_int16.m
18+
--------------------
1919

2020
This script creates the tiny coefficient set. The script contains an
2121
example how to customize the input/output rates matrix and in a simple
@@ -24,8 +24,8 @@ be done by editing file src_param.m directly. Note that int16
2424
presentation for SRC coefficients will degrade even the default
2525
quality.
2626

27-
src_generate.m
28-
--------------
27+
sof_src_generate.m
28+
------------------
2929

3030
Creates the header files to include to C into directory "include". A
3131
report of create modes is written to directory "reports". The
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
function src_generate(fs_in, fs_out, fs_inout, cfg);
1+
function sof_src_generate(fs_in, fs_out, fs_inout, cfg);
22

3-
% src_generate - export src conversions for given fs_in and fs_out
3+
% sof_src_generate - export src conversions for given fs_in and fs_out
44
%
5-
% src_generate(fs_in, fs_out <, fs_inout, <cfg>>)
5+
% sof_src_generate(fs_in, fs_out <, fs_inout, <cfg>>)
66
%
77
% fs_in - vector of input sample rates (M)
88
% fs_out - vector of output sample rates (N)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@
3434
cfg.speed = 0;
3535
cfg.gain = 0; % Make gain 0 dB
3636

37-
src_generate(fs1, fs2, fs_matrix, cfg);
37+
sof_src_generate(fs1, fs2, fs_matrix, cfg);
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525
cfg.speed = 0;
2626
cfg.gain = 0;
2727

28-
src_generate(fs1, fs2, fs_matrix, cfg);
28+
sof_src_generate(fs1, fs2, fs_matrix, cfg);
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@
5454
cfg.speed = 0;
5555
cfg.gain = 0;
5656

57-
src_generate(fs1, fs2, fs_matrix, cfg);
57+
sof_src_generate(fs1, fs2, fs_matrix, cfg);
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@
4545
cfg.speed = 1;
4646
cfg.gain = 0;
4747

48-
src_generate(fs1, fs2, fsm, cfg);
48+
sof_src_generate(fs1, fs2, fsm, cfg);

0 commit comments

Comments
 (0)