blob: da736ab663b2669c0c03b2809e83a587f8afe52a [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_AUDIO_RESAMPLER_H
18#define ANDROID_AUDIO_RESAMPLER_H
19
20#include <stdint.h>
21#include <sys/types.h>
22
23#include "AudioBufferProvider.h"
24
25namespace android {
26// ----------------------------------------------------------------------------
27
28class AudioResampler {
29public:
30 // Determines quality of SRC.
31 // LOW_QUALITY: linear interpolator (1st order)
32 // MED_QUALITY: cubic interpolator (3rd order)
33 // HIGH_QUALITY: fixed multi-tap FIR (e.g. 48KHz->44.1KHz)
34 // NOTE: high quality SRC will only be supported for
35 // certain fixed rate conversions. Sample rate cannot be
36 // changed dynamically.
37 enum src_quality {
38 DEFAULT=0,
39 LOW_QUALITY=1,
40 MED_QUALITY=2,
41 HIGH_QUALITY=3
42 };
43
44 static AudioResampler* create(int bitDepth, int inChannelCount,
45 int32_t sampleRate, int quality=DEFAULT);
46
47 virtual ~AudioResampler();
48
49 virtual void init() = 0;
50 virtual void setSampleRate(int32_t inSampleRate);
51 virtual void setVolume(int16_t left, int16_t right);
Mike J. Chenc94519c2011-08-15 13:28:26 -070052 virtual void setLocalTimeFreq(uint64_t freq);
53
54 // set the PTS of the next buffer output by the resampler
55 virtual void setPTS(int64_t pts);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080056
57 virtual void resample(int32_t* out, size_t outFrameCount,
58 AudioBufferProvider* provider) = 0;
59
Eric Laurent4bb21c42011-02-28 16:52:51 -080060 virtual void reset();
61
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080062protected:
63 // number of bits for phase fraction - 30 bits allows nearly 2x downsampling
64 static const int kNumPhaseBits = 30;
65
66 // phase mask for fraction
67 static const uint32_t kPhaseMask = (1LU<<kNumPhaseBits)-1;
68
69 // multiplier to calculate fixed point phase increment
70 static const double kPhaseMultiplier = 1L << kNumPhaseBits;
71
72 enum format {MONO_16_BIT, STEREO_16_BIT};
73 AudioResampler(int bitDepth, int inChannelCount, int32_t sampleRate);
74
75 // prevent copying
76 AudioResampler(const AudioResampler&);
77 AudioResampler& operator=(const AudioResampler&);
78
Mike J. Chenc94519c2011-08-15 13:28:26 -070079 int64_t calculateOutputPTS(int outputFrameIndex);
80
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080081 int32_t mBitDepth;
82 int32_t mChannelCount;
83 int32_t mSampleRate;
84 int32_t mInSampleRate;
85 AudioBufferProvider::Buffer mBuffer;
86 union {
Glenn Kasten871c16c2010-03-05 12:18:01 -080087 int16_t mVolume[2];
88 uint32_t mVolumeRL;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080089 };
90 int16_t mTargetVolume[2];
91 format mFormat;
92 size_t mInputIndex;
93 int32_t mPhaseIncrement;
94 uint32_t mPhaseFraction;
Mike J. Chenc94519c2011-08-15 13:28:26 -070095 uint64_t mLocalTimeFreq;
96 int64_t mPTS;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080097};
98
99// ----------------------------------------------------------------------------
100}
101; // namespace android
102
103#endif // ANDROID_AUDIO_RESAMPLER_H