/third_party/skia/third_party/externals/oboe/src/flowgraph/resampler/ |
D | MultiChannelResampler.cpp | 32 , mX(builder.getChannelCount() * builder.getNumTaps() * 2) in MultiChannelResampler() 33 , mSingleFrame(builder.getChannelCount()) in MultiChannelResampler() 34 , mChannelCount(builder.getChannelCount()) in MultiChannelResampler() 90 if (getChannelCount() == 1) { in build() 92 } else if (getChannelCount() == 2) { in build() 100 if (getChannelCount() == 2) { in build() 113 float *dest = &mX[mCursor * getChannelCount()]; in writeFrame() 114 int offset = getNumTaps() * getChannelCount(); in writeFrame() 115 for (int channel = 0; channel < getChannelCount(); channel++) { in writeFrame()
|
D | LinearResampler.cpp | 23 mPreviousFrame = std::make_unique<float[]>(getChannelCount()); in LinearResampler() 24 mCurrentFrame = std::make_unique<float[]>(getChannelCount()); in LinearResampler() 28 memcpy(mPreviousFrame.get(), mCurrentFrame.get(), sizeof(float) * getChannelCount()); in writeFrame() 29 memcpy(mCurrentFrame.get(), frame, sizeof(float) * getChannelCount()); in writeFrame() 37 for (int channel = 0; channel < getChannelCount(); channel++) { in readFrame()
|
D | SincResampler.cpp | 24 , mSingleFrame2(builder.getChannelCount()) { in SincResampler() 58 float *xFrame = &mX[mCursor * getChannelCount()]; in readFrame() 62 for (int channel = 0; channel < getChannelCount(); channel++) { in readFrame() 71 for (int channel = 0; channel < getChannelCount(); channel++) { in readFrame()
|
D | SincResamplerStereo.cpp | 27 assert(builder.getChannelCount() == STEREO); in SincResamplerStereo() 62 float *xFrame = &mX[mCursor * getChannelCount()]; in readFrame() 66 for (int channel = 0; channel < getChannelCount(); channel++) { in readFrame() 75 for (int channel = 0; channel < getChannelCount(); channel++) { in readFrame()
|
D | PolyphaseResampler.cpp | 45 float *xFrame = &mX[mCursor * getChannelCount()]; in readFrame() 49 for (int channel = 0; channel < getChannelCount(); channel++) { in readFrame() 58 for (int channel = 0; channel < getChannelCount(); channel++) { in readFrame()
|
D | MultiChannelResampler.h | 124 int32_t getChannelCount() const { in getChannelCount() function 192 int getChannelCount() const { in getChannelCount() function
|
D | PolyphaseResamplerMono.cpp | 25 assert(builder.getChannelCount() == MONO); in PolyphaseResamplerMono()
|
D | PolyphaseResamplerStereo.cpp | 25 assert(builder.getChannelCount() == STEREO); in PolyphaseResamplerStereo()
|
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/ |
D | OboeAudioStream.java | 61 requestedConfiguration.getChannelCount(), in open() 88 actualConfiguration.setChannelCount(getChannelCount()); in open() 183 public int getChannelCount() { in getChannelCount() method in OboeAudioStream 184 return getChannelCount(streamIndex); in getChannelCount() 186 public native int getChannelCount(int streamIndex); in getChannelCount() method in OboeAudioStream
|
D | AudioStreamBase.java | 131 public int getChannelCount() { in getChannelCount() method in AudioStreamBase 132 return mActualStreamConfiguration.getChannelCount(); in getChannelCount()
|
/third_party/skia/third_party/externals/oboe/src/common/ |
D | AudioStreamBuilder.cpp | 86 … && (getChannelCount() == oboe::Unspecified || getChannelCount() == other.getChannelCount()); in isCompatible() 128 if (getChannelCount() == oboe::Unspecified) { in openStream() 129 parentBuilder.setChannelCount(tempStream->getChannelCount()); in openStream()
|
D | QuirksManager.cpp | 66 && builder.getChannelCount() <= kChannelCountStereo; in isAAudioMMapPossible() 176 && builder.getChannelCount() == kChannelCountStereo in isConversionNeeded() 187 && builder.getChannelCount() == kChannelCountMono in isConversionNeeded()
|
D | DataConversionFlowGraph.cpp | 83 int32_t sourceChannelCount = sourceStream->getChannelCount(); in configure() 88 int32_t sinkChannelCount = sinkStream->getChannelCount(); in configure()
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/src/main/cpp/ |
D | Game.cpp | 135 mMixer.renderAudio(outputBuffer+(oboeStream->getChannelCount()*i), 1); in onAudioReady() 142 numFrames * oboeStream->getChannelCount()); in onAudioReady() 191 mAudioStream->getChannelCount()); in openStream() 201 mMixer.setChannelCount(mAudioStream->getChannelCount()); in openStream() 210 .channelCount = mAudioStream->getChannelCount(), in setupAudioSources()
|
/third_party/skia/modules/audioplayer/ |
D | SkAudioPlayer_oboe.cpp | 73 return fNumSampleFrames * fStream->getChannelCount() / fStream->getSampleRate(); in onGetDuration() 77 return (fReadFrameIndex * fStream->getChannelCount()) / fStream->getSampleRate(); in onGetTime() 81 fReadFrameIndex = (t * fStream->getSampleRate()) / fStream->getChannelCount(); in onSetTime()
|
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/cpp/ |
D | FullDuplexEcho.cpp | 40 int32_t inputStride = getInputStream()->getChannelCount(); in onBothStreamsReady() 41 int32_t outputStride = getOutputStream()->getChannelCount(); in onBothStreamsReady()
|
D | FullDuplexAnalyzer.cpp | 32 int32_t inputStride = getInputStream()->getChannelCount(); in onBothStreamsReady() 33 int32_t outputStride = getOutputStream()->getChannelCount(); in onBothStreamsReady()
|
D | NativeAudioContext.cpp | 210 mChannelCount = oboeStream->getChannelCount(); // FIXME store per stream in open() 263 writer.setSamplesPerFrame(mRecording->getChannelCount()); in saveWaveFile() 265 float buffer[mRecording->getChannelCount()]; in saveWaveFile() 270 for (int32_t i = 0; i < mRecording->getChannelCount(); i++) { in saveWaveFile()
|
D | InputStreamCallbackAnalyzer.cpp | 24 int32_t channelCount = audioStream->getChannelCount(); in onAudioReady()
|
D | MultiChannelRecording.h | 52 int32_t getChannelCount() { in getChannelCount() function
|
/third_party/skia/third_party/externals/oboe/samples/hello-oboe/src/main/cpp/ |
D | HelloOboeEngine.cpp | 141 mStream->getChannelCount()); in start() 149 mStream->getChannelCount(), in start()
|
/third_party/skia/third_party/externals/oboe/samples/MegaDrone/src/main/cpp/ |
D | MegaDroneEngine.cpp | 77 … mAudioSource = std::make_shared<Synth>(mStream->getSampleRate(), mStream->getChannelCount()); in start()
|
/third_party/skia/third_party/externals/oboe/apps/fxlab/app/src/main/cpp/ |
D | DuplexCallback.h | 40 auto outputChannelCount = outputStream->getChannelCount(); in onAudioReady()
|
/third_party/skia/third_party/externals/oboe/include/oboe/ |
D | AudioStreamBase.h | 52 int32_t getChannelCount() const { return mChannelCount; } in getChannelCount() function
|
/third_party/skia/third_party/externals/oboe/samples/LiveEffect/src/main/cpp/ |
D | FullDuplexStream.cpp | 94 * getOutputStream()->getChannelCount(); in start()
|