function delay = hohmann2002delay(fb, delay_samples)
%HOHMANN2002DELAY Create new delay object within HOHMANN2002 filterbank framework
% Usage: delay = hohmann2002delay(fb, delay_samples)
%
% Input parameters:
% fb : The filterbank structure as returned by HOHMANN2002.
% delay_samples : The desired group delay in samples. Must be at least 1,
% because of the way the phase factors are computed. Larger
% delays lead to better signal quality.
% Output parameters:
% delay : The new delay object
%
% HOHMANN2002DELAY(fb, delay_samples) creates a new delay object
% that can act as the first stage of a synthesizer that
% resynthesizes the output of the gammatone filterbank. The
% purpose of the delay object is to delay the output of each band by a
% band-dependent ammount of samples, so that the envelope of the impulse
% response of the analyzer is as large as possible at the desired delay.
% Additionally, the delay object will multiply this delayed output with a
% band-dependent complex phase factor, so that the real part of the
% impulse response has a local maximum at the desired delay. Finally, the
% delay object will output only the real part of each band.
%
% The phase factors are approximated numerically in this constructor,
% using a method described in Herzke & Hohmann (2007). The
% approximation assumes parabolic behaviour of the real part of the
% impulse response in the region of the desired local maximum: The phase
% factors are chosen so that the real parts of the impulse response in
% the samples directly preceeding and following the desired local
% maximum will be equal after multiplication with the pase factor.
%
% References:
% T. Herzke and V. Hohmann. Improved numerical methods for gammatone
% filterbank analysis and synthesis. Acta Acustica united with Acoustica,
% 93(3):498-500, 2007.
%
%
% Url: http://amtoolbox.sourceforge.net/data/amt-test/htdocs/amt-0.9.8/doc/modelstages/hohmann2002delay.php
% Copyright (C) 2009-2015 Piotr Majdak and Peter L. Søndergaard.
% This file is part of AMToolbox version 0.9.8
%
% This program is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with this program. If not, see <http://www.gnu.org/licenses/>.
% author: Universitaet Oldenburg, tp (Jan 2002, Jan, Sep 2003, Nov 2006, Jan 2007)
% Adapted to AMT (PM, Jan 2016) from function gfb_*_process
delay.type = 'gfb_Delay';
fb = hohmann2002clearstate(fb);
impulse = [1 zeros(1, delay_samples + 2)];
ir = hohmann2002process(fb, impulse);
number_of_bands = size(ir, 1);
[~, max_indices] = max(abs(ir(:,1:(delay_samples+1))).');
delay.delays_samples = delay_samples + 1 - max_indices;
delay.memory = zeros(number_of_bands, max(delay.delays_samples));
slopes = zeros(1, number_of_bands);
for band = 1:number_of_bands
band_max_index = max_indices(band);
slopes(band) = (ir(band, band_max_index+1) - ir(band, band_max_index-1));
end
slopes = slopes ./ abs(slopes);
delay.phase_factors = 1i ./ slopes;