OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:AudioBuffer
(Results
1 - 4
of
4
) sorted by null
/external/webrtc/webrtc/modules/audio_processing/
audio_buffer.cc
46
AudioBuffer
::
AudioBuffer
(size_t input_num_frames,
103
AudioBuffer
::~
AudioBuffer
() {}
105
void
AudioBuffer
::CopyFrom(const float* const* data,
150
void
AudioBuffer
::CopyTo(const StreamConfig& stream_config,
183
void
AudioBuffer
::InitForNewData() {
191
const int16_t* const*
AudioBuffer
::channels_const() const {
195
int16_t* const*
AudioBuffer
::channels() {
200
const int16_t* const*
AudioBuffer
::split_bands_const(size_t channel) const
[
all
...]
audio_buffer.h
33
class
AudioBuffer
{
36
AudioBuffer
(size_t input_num_frames,
41
virtual ~
AudioBuffer
();
/external/drrickorang/LoopbackApp/app/src/main/cpp/lb2/
audio_buffer.h
54
// Implements the common parts of
AudioBuffer
and AudioBufferView.
57
// Although
AudioBuffer
could be considered as an extension of AudioBufferView,
58
// they have different copy/move semantics, and thus
AudioBuffer
61
// AudioBufferView from
AudioBuffer
.
104
class
AudioBuffer
: public AudioBufferBase<T> {
106
// Null
AudioBuffer
constructor.
107
constexpr
AudioBuffer
(): AudioBufferBase<T>(nullptr, 0, 1), mBuffer() {}
108
AudioBuffer
(size_t frameCount, int channelCount)
113
AudioBuffer
(const
AudioBuffer
<T>&) = delete
[
all
...]
/cts/tests/tests/media/src/android/media/cts/
MediaSyncTest.java
603
private List<
AudioBuffer
> mAudioBuffers = new LinkedList<
AudioBuffer
>();
609
private class
AudioBuffer
{
613
public
AudioBuffer
(ByteBuffer byteBuffer, int bufferIndex) {
783
mAudioBuffers.add(new
AudioBuffer
(outputByteBuffer, index));
813
AudioBuffer
audioBuffer
= mAudioBuffers.get(0);
814
if (
audioBuffer
.mByteBuffer != byteBuffer
815
||
audioBuffer
.mBufferIndex != bufferIndex) {
Completed in 710 milliseconds