bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 1 | /* |
bjornv@webrtc.org | bfda85f | 2012-04-16 07:28:29 +0000 | [diff] [blame] | 2 | * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
bjornv@webrtc.org | 6a9835d | 2011-11-18 08:30:34 +0000 | [diff] [blame] | 11 | // Performs delay estimation on binary converted spectra. |
bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 12 | // The return value is 0 - OK and -1 - Error, unless otherwise stated. |
| 13 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 14 | #ifndef MODULES_AUDIO_PROCESSING_UTILITY_DELAY_ESTIMATOR_H_ |
| 15 | #define MODULES_AUDIO_PROCESSING_UTILITY_DELAY_ESTIMATOR_H_ |
bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 16 | |
Niels Möller | a12c42a | 2018-07-25 16:05:48 +0200 | [diff] [blame] | 17 | #include <stdint.h> |
bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 18 | |
Per Åhgren | e7175c9 | 2020-03-20 16:43:34 +0100 | [diff] [blame] | 19 | namespace webrtc { |
| 20 | |
bjornv@webrtc.org | 28e83d1 | 2014-03-24 15:26:52 +0000 | [diff] [blame] | 21 | static const int32_t kMaxBitCountsQ9 = (32 << 9); // 32 matching bits in Q9. |
| 22 | |
bjornv@webrtc.org | 6a9835d | 2011-11-18 08:30:34 +0000 | [diff] [blame] | 23 | typedef struct { |
bjornv@webrtc.org | 70adcd4 | 2011-12-29 14:51:21 +0000 | [diff] [blame] | 24 | // Pointer to bit counts. |
bjornv@webrtc.org | 70adcd4 | 2011-12-29 14:51:21 +0000 | [diff] [blame] | 25 | int* far_bit_counts; |
bjornv@webrtc.org | 94c213a | 2013-01-25 15:53:41 +0000 | [diff] [blame] | 26 | // Binary history variables. |
| 27 | uint32_t* binary_far_history; |
bjornv@webrtc.org | 94c213a | 2013-01-25 15:53:41 +0000 | [diff] [blame] | 28 | int history_size; |
| 29 | } BinaryDelayEstimatorFarend; |
bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 30 | |
bjornv@webrtc.org | 94c213a | 2013-01-25 15:53:41 +0000 | [diff] [blame] | 31 | typedef struct { |
| 32 | // Pointer to bit counts. |
| 33 | int32_t* mean_bit_counts; |
bjornv@webrtc.org | 6a9835d | 2011-11-18 08:30:34 +0000 | [diff] [blame] | 34 | // Array only used locally in ProcessBinarySpectrum() but whose size is |
| 35 | // determined at run-time. |
| 36 | int32_t* bit_counts; |
| 37 | |
andrew@webrtc.org | 828af1b | 2011-11-22 22:40:27 +0000 | [diff] [blame] | 38 | // Binary history variables. |
andrew@webrtc.org | 828af1b | 2011-11-22 22:40:27 +0000 | [diff] [blame] | 39 | uint32_t* binary_near_history; |
bjornv@webrtc.org | 7ded92b | 2013-01-30 16:16:59 +0000 | [diff] [blame] | 40 | int near_history_size; |
bjornv@webrtc.org | 69ef991 | 2014-07-03 14:59:03 +0000 | [diff] [blame] | 41 | int history_size; |
bjornv@webrtc.org | 6a9835d | 2011-11-18 08:30:34 +0000 | [diff] [blame] | 42 | |
bjornv@webrtc.org | 70adcd4 | 2011-12-29 14:51:21 +0000 | [diff] [blame] | 43 | // Delay estimation variables. |
| 44 | int32_t minimum_probability; |
| 45 | int last_delay_probability; |
bjornv@webrtc.org | 6a9835d | 2011-11-18 08:30:34 +0000 | [diff] [blame] | 46 | |
andrew@webrtc.org | 828af1b | 2011-11-22 22:40:27 +0000 | [diff] [blame] | 47 | // Delay memory. |
bjornv@webrtc.org | 6a9835d | 2011-11-18 08:30:34 +0000 | [diff] [blame] | 48 | int last_delay; |
| 49 | |
bjornv@webrtc.org | bd41a84 | 2013-11-28 14:58:35 +0000 | [diff] [blame] | 50 | // Robust validation |
| 51 | int robust_validation_enabled; |
bjornv@webrtc.org | bccd53d | 2014-01-08 08:18:15 +0000 | [diff] [blame] | 52 | int allowed_offset; |
bjornv@webrtc.org | 5c64508 | 2013-12-16 10:57:53 +0000 | [diff] [blame] | 53 | int last_candidate_delay; |
| 54 | int compare_delay; |
| 55 | int candidate_hits; |
| 56 | float* histogram; |
| 57 | float last_delay_histogram; |
bjornv@webrtc.org | bd41a84 | 2013-11-28 14:58:35 +0000 | [diff] [blame] | 58 | |
bjornv@webrtc.org | 28e83d1 | 2014-03-24 15:26:52 +0000 | [diff] [blame] | 59 | // For dynamically changing the lookahead when using SoftReset...(). |
| 60 | int lookahead; |
| 61 | |
bjornv@webrtc.org | 94c213a | 2013-01-25 15:53:41 +0000 | [diff] [blame] | 62 | // Far-end binary spectrum history buffer etc. |
| 63 | BinaryDelayEstimatorFarend* farend; |
bjornv@webrtc.org | 70adcd4 | 2011-12-29 14:51:21 +0000 | [diff] [blame] | 64 | } BinaryDelayEstimator; |
bjornv@webrtc.org | 6a9835d | 2011-11-18 08:30:34 +0000 | [diff] [blame] | 65 | |
bjornv@webrtc.org | 94c213a | 2013-01-25 15:53:41 +0000 | [diff] [blame] | 66 | // Releases the memory allocated by |
| 67 | // WebRtc_CreateBinaryDelayEstimatorFarend(...). |
| 68 | // Input: |
| 69 | // - self : Pointer to the binary delay estimation far-end |
| 70 | // instance which is the return value of |
| 71 | // WebRtc_CreateBinaryDelayEstimatorFarend(). |
| 72 | // |
| 73 | void WebRtc_FreeBinaryDelayEstimatorFarend(BinaryDelayEstimatorFarend* self); |
| 74 | |
| 75 | // Allocates the memory needed by the far-end part of the binary delay |
| 76 | // estimation. The memory needs to be initialized separately through |
| 77 | // WebRtc_InitBinaryDelayEstimatorFarend(...). |
| 78 | // |
| 79 | // Inputs: |
| 80 | // - history_size : Size of the far-end binary spectrum history. |
| 81 | // |
| 82 | // Return value: |
| 83 | // - BinaryDelayEstimatorFarend* |
Artem Titov | 0b48930 | 2021-07-28 20:50:03 +0200 | [diff] [blame] | 84 | // : Created `handle`. If the memory can't be allocated |
bjornv@webrtc.org | 94c213a | 2013-01-25 15:53:41 +0000 | [diff] [blame] | 85 | // or if any of the input parameters are invalid NULL |
| 86 | // is returned. |
| 87 | // |
| 88 | BinaryDelayEstimatorFarend* WebRtc_CreateBinaryDelayEstimatorFarend( |
| 89 | int history_size); |
| 90 | |
bjornv@webrtc.org | 69ef991 | 2014-07-03 14:59:03 +0000 | [diff] [blame] | 91 | // Re-allocates the buffers. |
| 92 | // |
| 93 | // Inputs: |
| 94 | // - self : Pointer to the binary estimation far-end instance |
| 95 | // which is the return value of |
| 96 | // WebRtc_CreateBinaryDelayEstimatorFarend(). |
| 97 | // - history_size : Size of the far-end binary spectrum history. |
| 98 | // |
| 99 | // Return value: |
| 100 | // - history_size : The history size allocated. |
| 101 | int WebRtc_AllocateFarendBufferMemory(BinaryDelayEstimatorFarend* self, |
| 102 | int history_size); |
| 103 | |
bjornv@webrtc.org | 94c213a | 2013-01-25 15:53:41 +0000 | [diff] [blame] | 104 | // Initializes the delay estimation far-end instance created with |
| 105 | // WebRtc_CreateBinaryDelayEstimatorFarend(...). |
| 106 | // |
| 107 | // Input: |
| 108 | // - self : Pointer to the delay estimation far-end instance. |
| 109 | // |
| 110 | // Output: |
| 111 | // - self : Initialized far-end instance. |
| 112 | // |
| 113 | void WebRtc_InitBinaryDelayEstimatorFarend(BinaryDelayEstimatorFarend* self); |
| 114 | |
bjornv@webrtc.org | 28e83d1 | 2014-03-24 15:26:52 +0000 | [diff] [blame] | 115 | // Soft resets the delay estimation far-end instance created with |
| 116 | // WebRtc_CreateBinaryDelayEstimatorFarend(...). |
| 117 | // |
| 118 | // Input: |
| 119 | // - delay_shift : The amount of blocks to shift history buffers. |
| 120 | // |
| 121 | void WebRtc_SoftResetBinaryDelayEstimatorFarend( |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 122 | BinaryDelayEstimatorFarend* self, |
| 123 | int delay_shift); |
bjornv@webrtc.org | 28e83d1 | 2014-03-24 15:26:52 +0000 | [diff] [blame] | 124 | |
bjornv@webrtc.org | 94c213a | 2013-01-25 15:53:41 +0000 | [diff] [blame] | 125 | // Adds the binary far-end spectrum to the internal far-end history buffer. This |
| 126 | // spectrum is used as reference when calculating the delay using |
| 127 | // WebRtc_ProcessBinarySpectrum(). |
| 128 | // |
| 129 | // Inputs: |
bjornv@webrtc.org | 57f3a11 | 2013-01-25 22:02:15 +0000 | [diff] [blame] | 130 | // - self : Pointer to the delay estimation far-end |
bjornv@webrtc.org | 94c213a | 2013-01-25 15:53:41 +0000 | [diff] [blame] | 131 | // instance. |
| 132 | // - binary_far_spectrum : Far-end binary spectrum. |
| 133 | // |
| 134 | // Output: |
bjornv@webrtc.org | 7ded92b | 2013-01-30 16:16:59 +0000 | [diff] [blame] | 135 | // - self : Updated far-end instance. |
bjornv@webrtc.org | 94c213a | 2013-01-25 15:53:41 +0000 | [diff] [blame] | 136 | // |
bjornv@webrtc.org | 57f3a11 | 2013-01-25 22:02:15 +0000 | [diff] [blame] | 137 | void WebRtc_AddBinaryFarSpectrum(BinaryDelayEstimatorFarend* self, |
bjornv@webrtc.org | 94c213a | 2013-01-25 15:53:41 +0000 | [diff] [blame] | 138 | uint32_t binary_far_spectrum); |
| 139 | |
bjornv@webrtc.org | 70adcd4 | 2011-12-29 14:51:21 +0000 | [diff] [blame] | 140 | // Releases the memory allocated by WebRtc_CreateBinaryDelayEstimator(...). |
bjornv@webrtc.org | 94c213a | 2013-01-25 15:53:41 +0000 | [diff] [blame] | 141 | // |
| 142 | // Note that BinaryDelayEstimator utilizes BinaryDelayEstimatorFarend, but does |
| 143 | // not take ownership of it, hence the BinaryDelayEstimator has to be torn down |
| 144 | // before the far-end. |
| 145 | // |
bjornv@webrtc.org | 6a9835d | 2011-11-18 08:30:34 +0000 | [diff] [blame] | 146 | // Input: |
bjornv@webrtc.org | 57f3a11 | 2013-01-25 22:02:15 +0000 | [diff] [blame] | 147 | // - self : Pointer to the binary delay estimation instance |
bjornv@webrtc.org | 2e72976 | 2012-04-18 08:30:29 +0000 | [diff] [blame] | 148 | // which is the return value of |
| 149 | // WebRtc_CreateBinaryDelayEstimator(). |
bjornv@webrtc.org | 6a9835d | 2011-11-18 08:30:34 +0000 | [diff] [blame] | 150 | // |
bjornv@webrtc.org | 57f3a11 | 2013-01-25 22:02:15 +0000 | [diff] [blame] | 151 | void WebRtc_FreeBinaryDelayEstimator(BinaryDelayEstimator* self); |
bjornv@webrtc.org | 6a9835d | 2011-11-18 08:30:34 +0000 | [diff] [blame] | 152 | |
bjornv@webrtc.org | 94c213a | 2013-01-25 15:53:41 +0000 | [diff] [blame] | 153 | // Allocates the memory needed by the binary delay estimation. The memory needs |
| 154 | // to be initialized separately through WebRtc_InitBinaryDelayEstimator(...). |
| 155 | // |
bjornv@webrtc.org | 240eec3 | 2014-04-03 08:11:47 +0000 | [diff] [blame] | 156 | // See WebRtc_CreateDelayEstimator(..) in delay_estimator_wrapper.c for detailed |
| 157 | // description. |
bjornv@webrtc.org | 94c213a | 2013-01-25 15:53:41 +0000 | [diff] [blame] | 158 | BinaryDelayEstimator* WebRtc_CreateBinaryDelayEstimator( |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 159 | BinaryDelayEstimatorFarend* farend, |
| 160 | int max_lookahead); |
bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 161 | |
Artem Titov | 0b48930 | 2021-07-28 20:50:03 +0200 | [diff] [blame] | 162 | // Re-allocates `history_size` dependent buffers. The far-end buffers will be |
bjornv@webrtc.org | 69ef991 | 2014-07-03 14:59:03 +0000 | [diff] [blame] | 163 | // updated at the same time if needed. |
| 164 | // |
| 165 | // Input: |
| 166 | // - self : Pointer to the binary estimation instance which is |
| 167 | // the return value of |
| 168 | // WebRtc_CreateBinaryDelayEstimator(). |
| 169 | // - history_size : Size of the history buffers. |
| 170 | // |
| 171 | // Return value: |
| 172 | // - history_size : The history size allocated. |
| 173 | int WebRtc_AllocateHistoryBufferMemory(BinaryDelayEstimator* self, |
| 174 | int history_size); |
| 175 | |
bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 176 | // Initializes the delay estimation instance created with |
bjornv@webrtc.org | 70adcd4 | 2011-12-29 14:51:21 +0000 | [diff] [blame] | 177 | // WebRtc_CreateBinaryDelayEstimator(...). |
bjornv@webrtc.org | 94c213a | 2013-01-25 15:53:41 +0000 | [diff] [blame] | 178 | // |
bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 179 | // Input: |
bjornv@webrtc.org | 57f3a11 | 2013-01-25 22:02:15 +0000 | [diff] [blame] | 180 | // - self : Pointer to the delay estimation instance. |
bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 181 | // |
| 182 | // Output: |
bjornv@webrtc.org | 57f3a11 | 2013-01-25 22:02:15 +0000 | [diff] [blame] | 183 | // - self : Initialized instance. |
bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 184 | // |
bjornv@webrtc.org | 57f3a11 | 2013-01-25 22:02:15 +0000 | [diff] [blame] | 185 | void WebRtc_InitBinaryDelayEstimator(BinaryDelayEstimator* self); |
bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 186 | |
bjornv@webrtc.org | 28e83d1 | 2014-03-24 15:26:52 +0000 | [diff] [blame] | 187 | // Soft resets the delay estimation instance created with |
| 188 | // WebRtc_CreateBinaryDelayEstimator(...). |
| 189 | // |
| 190 | // Input: |
| 191 | // - delay_shift : The amount of blocks to shift history buffers. |
| 192 | // |
| 193 | // Return value: |
| 194 | // - actual_shifts : The actual number of shifts performed. |
| 195 | // |
| 196 | int WebRtc_SoftResetBinaryDelayEstimator(BinaryDelayEstimator* self, |
| 197 | int delay_shift); |
| 198 | |
bjornv@webrtc.org | bb599b7 | 2013-01-18 23:16:46 +0000 | [diff] [blame] | 199 | // Estimates and returns the delay between the binary far-end and binary near- |
| 200 | // end spectra. It is assumed the binary far-end spectrum has been added using |
| 201 | // WebRtc_AddBinaryFarSpectrum() prior to this call. The value will be offset by |
| 202 | // the lookahead (i.e. the lookahead should be subtracted from the returned |
| 203 | // value). |
bjornv@webrtc.org | 94c213a | 2013-01-25 15:53:41 +0000 | [diff] [blame] | 204 | // |
bjornv@webrtc.org | bb599b7 | 2013-01-18 23:16:46 +0000 | [diff] [blame] | 205 | // Inputs: |
bjornv@webrtc.org | 57f3a11 | 2013-01-25 22:02:15 +0000 | [diff] [blame] | 206 | // - self : Pointer to the delay estimation instance. |
bjornv@webrtc.org | 70adcd4 | 2011-12-29 14:51:21 +0000 | [diff] [blame] | 207 | // - binary_near_spectrum : Near-end binary spectrum of the current block. |
bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 208 | // |
| 209 | // Output: |
bjornv@webrtc.org | 57f3a11 | 2013-01-25 22:02:15 +0000 | [diff] [blame] | 210 | // - self : Updated instance. |
bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 211 | // |
| 212 | // Return value: |
bjornv@webrtc.org | 70adcd4 | 2011-12-29 14:51:21 +0000 | [diff] [blame] | 213 | // - delay : >= 0 - Calculated delay value. |
andrew@webrtc.org | a919d3a | 2011-11-27 23:40:58 +0000 | [diff] [blame] | 214 | // -2 - Insufficient data for estimation. |
bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 215 | // |
bjornv@webrtc.org | 57f3a11 | 2013-01-25 22:02:15 +0000 | [diff] [blame] | 216 | int WebRtc_ProcessBinarySpectrum(BinaryDelayEstimator* self, |
bjornv@webrtc.org | 70adcd4 | 2011-12-29 14:51:21 +0000 | [diff] [blame] | 217 | uint32_t binary_near_spectrum); |
bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 218 | |
bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 219 | // Returns the last calculated delay updated by the function |
bjornv@webrtc.org | 70adcd4 | 2011-12-29 14:51:21 +0000 | [diff] [blame] | 220 | // WebRtc_ProcessBinarySpectrum(...). |
bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 221 | // |
| 222 | // Input: |
bjornv@webrtc.org | 57f3a11 | 2013-01-25 22:02:15 +0000 | [diff] [blame] | 223 | // - self : Pointer to the delay estimation instance. |
bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 224 | // |
| 225 | // Return value: |
bjornv@webrtc.org | 6a9835d | 2011-11-18 08:30:34 +0000 | [diff] [blame] | 226 | // - delay : >= 0 - Last calculated delay value |
andrew@webrtc.org | a919d3a | 2011-11-27 23:40:58 +0000 | [diff] [blame] | 227 | // -2 - Insufficient data for estimation. |
bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 228 | // |
bjornv@webrtc.org | 57f3a11 | 2013-01-25 22:02:15 +0000 | [diff] [blame] | 229 | int WebRtc_binary_last_delay(BinaryDelayEstimator* self); |
bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 230 | |
bjornv@webrtc.org | a2d8b75 | 2013-01-18 21:54:15 +0000 | [diff] [blame] | 231 | // Returns the estimation quality of the last calculated delay updated by the |
| 232 | // function WebRtc_ProcessBinarySpectrum(...). The estimation quality is a value |
bjornv@webrtc.org | 240eec3 | 2014-04-03 08:11:47 +0000 | [diff] [blame] | 233 | // in the interval [0, 1]. The higher the value, the better the quality. |
bjornv@webrtc.org | a2d8b75 | 2013-01-18 21:54:15 +0000 | [diff] [blame] | 234 | // |
| 235 | // Return value: |
bjornv@webrtc.org | 28e83d1 | 2014-03-24 15:26:52 +0000 | [diff] [blame] | 236 | // - delay_quality : >= 0 - Estimation quality of last calculated |
| 237 | // delay value. |
| 238 | float WebRtc_binary_last_delay_quality(BinaryDelayEstimator* self); |
bjornv@webrtc.org | a2d8b75 | 2013-01-18 21:54:15 +0000 | [diff] [blame] | 239 | |
Artem Titov | 0b48930 | 2021-07-28 20:50:03 +0200 | [diff] [blame] | 240 | // Updates the `mean_value` recursively with a step size of 2^-`factor`. This |
bjornv@webrtc.org | 6a9835d | 2011-11-18 08:30:34 +0000 | [diff] [blame] | 241 | // function is used internally in the Binary Delay Estimator as well as the |
| 242 | // Fixed point wrapper. |
bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 243 | // |
bjornv@webrtc.org | 6a9835d | 2011-11-18 08:30:34 +0000 | [diff] [blame] | 244 | // Inputs: |
| 245 | // - new_value : The new value the mean should be updated with. |
| 246 | // - factor : The step size, in number of right shifts. |
bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 247 | // |
bjornv@webrtc.org | 6a9835d | 2011-11-18 08:30:34 +0000 | [diff] [blame] | 248 | // Input/Output: |
| 249 | // - mean_value : Pointer to the mean value. |
bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 250 | // |
bjornv@webrtc.org | 6a9835d | 2011-11-18 08:30:34 +0000 | [diff] [blame] | 251 | void WebRtc_MeanEstimatorFix(int32_t new_value, |
| 252 | int factor, |
| 253 | int32_t* mean_value); |
bjornv@google.com | b47d4b2 | 2011-09-15 12:27:36 +0000 | [diff] [blame] | 254 | |
Per Åhgren | e7175c9 | 2020-03-20 16:43:34 +0100 | [diff] [blame] | 255 | } // namespace webrtc |
| 256 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 257 | #endif // MODULES_AUDIO_PROCESSING_UTILITY_DELAY_ESTIMATOR_H_ |