blob: 4b2e8c4ac7437396c369623bb446a05e4c4d1d8f [file] [log] [blame]
Phil Burk04e805b2018-03-27 09:13:53 -07001/*
2 * Copyright 2020 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#include <algorithm>
18#include <unistd.h>
19
Robert Wu057f0832021-12-03 20:41:07 +000020#if FLOWGRAPH_ANDROID_INTERNAL
Phil Burk04e805b2018-03-27 09:13:53 -070021#include <audio_utils/primitives.h>
22#endif
23
Robert Wu057f0832021-12-03 20:41:07 +000024#include "FlowGraphNode.h"
Phil Burk04e805b2018-03-27 09:13:53 -070025#include "SourceI32.h"
26
27using namespace flowgraph;
28
29SourceI32::SourceI32(int32_t channelCount)
Robert Wu057f0832021-12-03 20:41:07 +000030 : FlowGraphSourceBuffered(channelCount) {
Phil Burk04e805b2018-03-27 09:13:53 -070031}
32
Robert Wu057f0832021-12-03 20:41:07 +000033int32_t SourceI32::onProcess(int32_t numFrames) {
34 float *floatData = output.getBuffer();
35 const int32_t channelCount = output.getSamplesPerFrame();
Phil Burk04e805b2018-03-27 09:13:53 -070036
Robert Wu057f0832021-12-03 20:41:07 +000037 const int32_t framesLeft = mSizeInFrames - mFrameIndex;
38 const int32_t framesToProcess = std::min(numFrames, framesLeft);
39 const int32_t numSamples = framesToProcess * channelCount;
Phil Burk04e805b2018-03-27 09:13:53 -070040
41 const int32_t *intBase = static_cast<const int32_t *>(mData);
42 const int32_t *intData = &intBase[mFrameIndex * channelCount];
43
Robert Wu057f0832021-12-03 20:41:07 +000044#if FLOWGRAPH_ANDROID_INTERNAL
Phil Burk04e805b2018-03-27 09:13:53 -070045 memcpy_to_float_from_i32(floatData, intData, numSamples);
46#else
47 for (int i = 0; i < numSamples; i++) {
48 *floatData++ = *intData++ * kScale;
49 }
50#endif
51
52 mFrameIndex += framesToProcess;
53 return framesToProcess;
54}