blob: 73e282125f1f668993864dcb0aab5df405077167 [file] [log] [blame]
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +00001/*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
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
11#ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC_AEC_RESAMPLER_H_
12#define WEBRTC_MODULES_AUDIO_PROCESSING_AEC_AEC_RESAMPLER_H_
13
pbos@webrtc.org9fb16132013-05-28 08:11:59 +000014#include "webrtc/modules/audio_processing/aec/aec_core.h"
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000015
andrew@webrtc.org2f40af32013-10-08 23:41:42 +000016enum {
17 kResamplingDelay = 1
18};
19enum {
20 kResamplerBufferSize = FRAME_LEN * 4
21};
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000022
23// Unless otherwise specified, functions return 0 on success and -1 on error
andrew@webrtc.org2f40af32013-10-08 23:41:42 +000024int WebRtcAec_CreateResampler(void** resampInst);
25int WebRtcAec_InitResampler(void* resampInst, int deviceSampleRateHz);
26int WebRtcAec_FreeResampler(void* resampInst);
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000027
28// Estimates skew from raw measurement.
andrew@webrtc.org2f40af32013-10-08 23:41:42 +000029int WebRtcAec_GetSkew(void* resampInst, int rawSkew, float* skewEst);
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000030
31// Resamples input using linear interpolation.
andrew@webrtc.org2f40af32013-10-08 23:41:42 +000032void WebRtcAec_ResampleLinear(void* resampInst,
kwiberg@webrtc.org38a0cee2014-07-03 09:47:33 +000033 const float* inspeech,
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000034 int size,
35 float skew,
kwiberg@webrtc.org38a0cee2014-07-03 09:47:33 +000036 float* outspeech,
andrew@webrtc.org2f40af32013-10-08 23:41:42 +000037 int* size_out);
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000038
39#endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC_AEC_RESAMPLER_H_