Searched refs:rec (Results 1 – 7 of 7) sorted by relevance
/sof-2.7.6/tools/tune/eq/ |
D | mls_rec_config.txt | 3 rec.ssh = 0; % Set to 1 for remote capture 4 rec.user = ''; % Set to user@domain for ssh 5 rec.dir = '/tmp'; % Directory for temporary files 6 rec.dev = 'hw:0,0'; % Audio capture device 7 rec.nch = 2; % Number audio capture channels to use 16 rec.cal = '';
|
D | mls_freq_resp.m | 262 function rec = meas_remote_rec_config(fs, fmt) 264 rec.fmt = sprintf('-t wav -c %d -f %s -r %d', ... 265 rec.nch, fmt, fs); 268 fprintf('Use ssh : %d\n', rec.ssh); 269 fprintf('User : %s\n', rec.user); 270 fprintf('Directory : %s\n', rec.dir); 271 fprintf('Device : %s\n', rec.dev); 272 fprintf('format : %s\n', rec.fmt); 273 fprintf('Channels : %d\n', rec.nch); 274 fprintf('Calibration Data : %s\n', rec.cal); [all …]
|
/sof-2.7.6/tools/test/audio/ |
D | sof_test_perf_config.m | 20 rec.user = ''; 23 rec.ssh = 0; % Set to 1 for remote capture 24 rec.dir = '/tmp'; % Directory for temporary files 25 rec.dev = 'hw:1,0'; % Audio capture device 26 rec.sft = 'S24_3LE'; % Sample format to use 27 rec.nch = 8; % Number audio capture channels 28 rec.ch = [1 2]; % Capture channels to measure
|
D | sof_test_perf.m | 223 function [test, play, rec] = get_config(test) 241 fprintf('Use ssh : %d\n', rec.ssh); 242 fprintf('User : %s\n', rec.user); 243 fprintf('Directory : %s\n', rec.dir); 244 fprintf('Device : %s\n', rec.dev); 245 fprintf('format : %s\n', rec.sft); 246 fprintf('Channels : %d\n', rec.nch); 248 fprintf('Channel : %d\n', rec.ch(i)); 252 rec.fmt = sprintf('-t wav -c %d -f %s -r %d', ... 253 rec.nch, rec.sft, test.fs); [all …]
|
D | sof_test_perf_README.txt | 92 For playabck capture to PC edit the "rec.dev", "rec.sft", "rec.nch", 93 and "rec.ch" fields. The example is set for a 8ch sound card with SOF
|
/sof-2.7.6/scripts/kconfig/ |
D | menuconfig.py | 1390 def rec(node): function 1399 rec(node.list) if node.list and not node.is_menuconfig else [] 1444 seen_syms = {node.item for node in rec(menu.list) 1448 for node in rec(choice_node.list): 1457 return rec(menu.list)
|
D | kconfiglib.py | 5606 def rec(subexpr): function 5610 rec(subexpr[1]) 5614 rec(subexpr[2]) 5620 rec(expr) 5657 def rec(subexpr): function 5659 rec(subexpr[1]) 5660 rec(subexpr[2]) 5664 rec(expr)
|