blob: 96c31eebe686e883d124483978d0185dcc2d398f [file] [log] [blame]
Mathias Agopian65ab4712010-07-14 17:59:35 -07001/*
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_SINC_H
18#define ANDROID_AUDIO_RESAMPLER_SINC_H
19
20#include <stdint.h>
21#include <sys/types.h>
22#include <cutils/log.h>
23
24#include "AudioResampler.h"
25
26namespace android {
27
SathishKumar Mani41dfd122012-01-17 10:49:47 -080028
29typedef const int32_t * (*readCoefficientsFn)(bool upDownSample);
Glenn Kastena6d41332012-10-01 14:04:31 -070030typedef int32_t (*readResampleFirNumCoeffFn)();
31typedef int32_t (*readResampleFirLerpIntBitsFn)();
SathishKumar Mani41dfd122012-01-17 10:49:47 -080032
Mathias Agopian65ab4712010-07-14 17:59:35 -070033// ----------------------------------------------------------------------------
34
35class AudioResamplerSinc : public AudioResampler {
36public:
Glenn Kastena6d41332012-10-01 14:04:31 -070037 AudioResamplerSinc(int bitDepth, int inChannelCount, int32_t sampleRate,
38 src_quality quality = HIGH_QUALITY);
Mathias Agopian65ab4712010-07-14 17:59:35 -070039
Glenn Kastenc19e2242012-01-30 14:54:39 -080040 virtual ~AudioResamplerSinc();
Mathias Agopian65ab4712010-07-14 17:59:35 -070041
42 virtual void resample(int32_t* out, size_t outFrameCount,
43 AudioBufferProvider* provider);
44private:
45 void init();
46
Mathias Agopian3c11ff22012-11-10 03:26:39 -080047 virtual void setVolume(int16_t left, int16_t right);
48
Mathias Agopian65ab4712010-07-14 17:59:35 -070049 template<int CHANNELS>
50 void resample(int32_t* out, size_t outFrameCount,
51 AudioBufferProvider* provider);
52
53 template<int CHANNELS>
54 inline void filterCoefficient(
Mathias Agopian3c11ff22012-11-10 03:26:39 -080055 int32_t* out, uint32_t phase, const int16_t *samples, uint32_t vRL);
Mathias Agopian65ab4712010-07-14 17:59:35 -070056
57 template<int CHANNELS>
58 inline void interpolate(
59 int32_t& l, int32_t& r,
Mathias Agopiane8299af2012-11-04 02:03:49 -080060 const int32_t* coefs, size_t offset,
61 int32_t lerp, const int16_t* samples);
Mathias Agopian65ab4712010-07-14 17:59:35 -070062
63 template<int CHANNELS>
64 inline void read(int16_t*& impulse, uint32_t& phaseFraction,
Glenn Kasten54c3b662012-01-06 07:46:30 -080065 const int16_t* in, size_t inputIndex);
Mathias Agopian65ab4712010-07-14 17:59:35 -070066
67 int16_t *mState;
68 int16_t *mImpulse;
69 int16_t *mRingFull;
Mathias Agopian3c11ff22012-11-10 03:26:39 -080070 int32_t mVolumeSIMD[2];
Mathias Agopian65ab4712010-07-14 17:59:35 -070071
Glenn Kasten54c3b662012-01-06 07:46:30 -080072 const int32_t * mFirCoefs;
Mathias Agopian65ab4712010-07-14 17:59:35 -070073 static const int32_t mFirCoefsDown[];
74 static const int32_t mFirCoefsUp[];
75
76 // ----------------------------------------------------------------------------
77 static const int32_t RESAMPLE_FIR_NUM_COEF = 8;
Mathias Agopian3bd72cc2012-10-26 13:48:42 -070078 static const int32_t RESAMPLE_FIR_LERP_INT_BITS = 7;
Mathias Agopian65ab4712010-07-14 17:59:35 -070079
Glenn Kastena6d41332012-10-01 14:04:31 -070080 struct Constants {
81 // we have 16 coefs samples per zero-crossing
82 int coefsBits;
83 int cShift;
84 uint32_t cMask;
Mathias Agopian65ab4712010-07-14 17:59:35 -070085
Glenn Kastena6d41332012-10-01 14:04:31 -070086 int pShift;
87 uint32_t pMask;
Mathias Agopian65ab4712010-07-14 17:59:35 -070088
Glenn Kastena6d41332012-10-01 14:04:31 -070089 // number of zero-crossing on each side
90 unsigned int halfNumCoefs;
91 };
92
93 static Constants highQualityConstants;
94 static Constants veryHighQualityConstants;
95 const Constants *mConstants; // points to appropriate set of coefficient parameters
96
97 static void init_routine();
Mathias Agopian65ab4712010-07-14 17:59:35 -070098};
99
100// ----------------------------------------------------------------------------
101}; // namespace android
102
103#endif /*ANDROID_AUDIO_RESAMPLER_SINC_H*/