Loading media/codec2/sfplugin/CCodecBufferChannel.cpp +6 −5 Original line number Diff line number Diff line Loading @@ -618,13 +618,14 @@ void CCodecBufferChannel::feedInputBufferIfAvailable() { } void CCodecBufferChannel::feedInputBufferIfAvailableInternal() { if (mInputMetEos || mOutput.lock()->buffers->hasPending() || mPipelineWatcher.lock()->pipelineFull()) { if (mInputMetEos || mPipelineWatcher.lock()->pipelineFull()) { return; } else { } { Mutexed<Output>::Locked output(mOutput); if (!output->buffers || output->buffers->numClientBuffers() >= output->numSlots) { if (!output->buffers || output->buffers->hasPending() || output->buffers->numClientBuffers() >= output->numSlots) { return; } } Loading Loading
media/codec2/sfplugin/CCodecBufferChannel.cpp +6 −5 Original line number Diff line number Diff line Loading @@ -618,13 +618,14 @@ void CCodecBufferChannel::feedInputBufferIfAvailable() { } void CCodecBufferChannel::feedInputBufferIfAvailableInternal() { if (mInputMetEos || mOutput.lock()->buffers->hasPending() || mPipelineWatcher.lock()->pipelineFull()) { if (mInputMetEos || mPipelineWatcher.lock()->pipelineFull()) { return; } else { } { Mutexed<Output>::Locked output(mOutput); if (!output->buffers || output->buffers->numClientBuffers() >= output->numSlots) { if (!output->buffers || output->buffers->hasPending() || output->buffers->numClientBuffers() >= output->numSlots) { return; } } Loading