soft/test/audio/std_utils/aip_test_measure.m

85 lines
3.1 KiB
Matlab

function test = aip_test_measure(test)
%%
% Copyright (c) 2017, Intel Corporation
% All rights reserved.
%
% Redistribution and use in source and binary forms, with or without
% modification, are permitted provided that the following conditions are met:
% * Redistributions of source code must retain the above copyright
% notice, this list of conditions and the following disclaimer.
% * Redistributions in binary form must reproduce the above copyright
% notice, this list of conditions and the following disclaimer in the
% documentation and/or other materials provided with the distribution.
% * Neither the name of the Intel Corporation nor the
% names of its contributors may be used to endorse or promote products
% derived from this software without specific prior written permission.
%
% THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
% AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
% IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
% ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
% LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
% CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
% SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
% INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
% CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
% ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
% POSSIBILITY OF SUCH DAMAGE.
%
% Author: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
%
%% Reference: AES17 6.6.7 Attenuation of image products
% http://www.aes.org/publications/standards/
%% Load output file
[x, nx] = load_test_output(test);
if nx == 0
test.g_db = NaN;
test.fail = 1;
return
end
%% Find sync
[d, nt, nt_use, nt_skip] = find_test_signal(x, test);
%% Measure all test frequencies
t_skip = 1.0;
ml = zeros(test.nf,1);
mn = zeros(test.nf,1);
b_lpf = stdlpf_get(test.fu, test.fs); % Get LPF coef
b_hpf = stdhpf_get(test.fu, test.fs); % Get HPF coef
for n=1:test.nf
fprintf('Measuring %.0f Hz ...\n', test.f(n));
% Get notch coef for this frequency
[b_notch, a_notch] = stdnotch_get(test.f(n), test.fs);
i1 = d+(n-1)*nt+nt_skip;
i2 = i1+nt_use-1;
x_lpf = filter(b_lpf, 1, x(i1:i2)); % Standard LPF, need for 997 Hz only
x_notch = filter(b_notch, a_notch, x(i1:i2)); % Standard notch
x_hpf = filter(b_hpf, 1, x_notch); % Standard HPF
ml(n) = level_dbfs(x_lpf(round(t_skip*test.fs):end));
mn(n) = level_dbfs(x_hpf(round(t_skip*test.fs):end));
end
%% Calculate levels relative to first 997 Hz frequency,
% remove it from result, sort to ascinding order for plot
test.f = test.f(2:end);
test.m = mn(2:end)-ml(1);
test.aip = max(test.m); % Worst-case
if test.aip > test.aip_max
test.fail = 1;
else
test.fail = 0;
end
test.fh = figure('visible', test.visible);
semilogx(test.f, test.m);
grid on;
xlabel('Frequency (Hz)');
ylabel('Relative level (dB)');
grid on;
end