mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
ad86c297fb
Closes #1626
84 lines
2.4 KiB
C++
Vendored
84 lines
2.4 KiB
C++
Vendored
/*
|
|
* Copyright 2019 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef OBOE_AUDIO_SOURCE_CALLER_H
|
|
#define OBOE_AUDIO_SOURCE_CALLER_H
|
|
|
|
#include "oboe_common_OboeDebug_android.h"
|
|
#include "oboe_oboe_Oboe_android.h"
|
|
|
|
#include "oboe_flowgraph_FlowGraphNode_android.h"
|
|
#include "oboe_common_FixedBlockReader_android.h"
|
|
|
|
namespace oboe {
|
|
|
|
class AudioStreamCallback;
|
|
class AudioStream;
|
|
|
|
/**
|
|
* For output streams that use a callback, call the application for more data.
|
|
* For input streams that do not use a callback, read from the stream.
|
|
*/
|
|
class AudioSourceCaller : public flowgraph::FlowGraphSource, public FixedBlockProcessor {
|
|
public:
|
|
AudioSourceCaller(int32_t channelCount, int32_t framesPerCallback, int32_t bytesPerSample)
|
|
: FlowGraphSource(channelCount)
|
|
, mBlockReader(*this) {
|
|
mBlockReader.open(channelCount * framesPerCallback * bytesPerSample);
|
|
}
|
|
|
|
/**
|
|
* Set the stream to use as a source of data.
|
|
* @param stream
|
|
*/
|
|
void setStream(oboe::AudioStream *stream) {
|
|
mStream = stream;
|
|
}
|
|
|
|
oboe::AudioStream *getStream() {
|
|
return mStream;
|
|
}
|
|
|
|
/**
|
|
* Timeout value to use when calling audioStream->read().
|
|
* @param timeoutNanos Zero for no timeout or time in nanoseconds.
|
|
*/
|
|
void setTimeoutNanos(int64_t timeoutNanos) {
|
|
mTimeoutNanos = timeoutNanos;
|
|
}
|
|
|
|
int64_t getTimeoutNanos() const {
|
|
return mTimeoutNanos;
|
|
}
|
|
|
|
/**
|
|
* Called internally for block size adaptation.
|
|
* @param buffer
|
|
* @param numBytes
|
|
* @return
|
|
*/
|
|
int32_t onProcessFixedBlock(uint8_t *buffer, int32_t numBytes) override;
|
|
|
|
protected:
|
|
oboe::AudioStream *mStream = nullptr;
|
|
int64_t mTimeoutNanos = 0;
|
|
|
|
FixedBlockReader mBlockReader;
|
|
};
|
|
|
|
}
|
|
#endif //OBOE_AUDIO_SOURCE_CALLER_H
|