blob: 6e3aa4634fd21d62fdb3667a0d73e3dd0959c7e1 [file] [log] [blame]
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +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
henrik.lundin@webrtc.org9c55f0f2014-06-09 08:10:28 +000011#ifndef WEBRTC_MODULES_AUDIO_CODING_NETEQ_ACCELERATE_H_
12#define WEBRTC_MODULES_AUDIO_CODING_NETEQ_ACCELERATE_H_
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000013
14#include <assert.h>
15
henrike@webrtc.org88fbb2d2014-05-21 21:18:46 +000016#include "webrtc/base/constructormagic.h"
henrik.lundin@webrtc.org9c55f0f2014-06-09 08:10:28 +000017#include "webrtc/modules/audio_coding/neteq/audio_multi_vector.h"
18#include "webrtc/modules/audio_coding/neteq/time_stretch.h"
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000019#include "webrtc/typedefs.h"
20
21namespace webrtc {
22
23// Forward declarations.
24class BackgroundNoise;
25
26// This class implements the Accelerate operation. Most of the work is done
27// in the base class TimeStretch, which is shared with the PreemptiveExpand
28// operation. In the Accelerate class, the operations that are specific to
29// Accelerate are implemented.
30class Accelerate : public TimeStretch {
31 public:
32 Accelerate(int sample_rate_hz, size_t num_channels,
33 const BackgroundNoise& background_noise)
34 : TimeStretch(sample_rate_hz, num_channels, background_noise) {
35 }
36
37 virtual ~Accelerate() {}
38
39 // This method performs the actual Accelerate operation. The samples are
40 // read from |input|, of length |input_length| elements, and are written to
41 // |output|. The number of samples removed through time-stretching is
42 // is provided in the output |length_change_samples|. The method returns
43 // the outcome of the operation as an enumerator value.
44 ReturnCodes Process(const int16_t* input,
turaj@webrtc.org362a55e2013-09-20 16:25:28 +000045 size_t input_length,
henrik.lundin@webrtc.orgfd11bbf2013-09-30 20:38:44 +000046 AudioMultiVector* output,
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000047 int16_t* length_change_samples);
48
49 protected:
50 // Sets the parameters |best_correlation| and |peak_index| to suitable
51 // values when the signal contains no active speech.
kjellander@webrtc.org14665ff2015-03-04 12:58:35 +000052 void SetParametersForPassiveSpeech(size_t len,
53 int16_t* best_correlation,
54 int* peak_index) const override;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000055
56 // Checks the criteria for performing the time-stretching operation and,
57 // if possible, performs the time-stretching.
kjellander@webrtc.org14665ff2015-03-04 12:58:35 +000058 ReturnCodes CheckCriteriaAndStretch(const int16_t* input,
59 size_t input_length,
60 size_t peak_index,
61 int16_t best_correlation,
62 bool active_speech,
63 AudioMultiVector* output) const override;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000064
65 private:
66 DISALLOW_COPY_AND_ASSIGN(Accelerate);
67};
68
henrik.lundin@webrtc.orgd9faa462014-01-14 10:18:45 +000069struct AccelerateFactory {
70 AccelerateFactory() {}
71 virtual ~AccelerateFactory() {}
72
73 virtual Accelerate* Create(int sample_rate_hz,
74 size_t num_channels,
75 const BackgroundNoise& background_noise) const;
76};
77
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000078} // namespace webrtc
henrik.lundin@webrtc.org9c55f0f2014-06-09 08:10:28 +000079#endif // WEBRTC_MODULES_AUDIO_CODING_NETEQ_ACCELERATE_H_