使用 MediaCodec API,我每次都将 OutputBufferIndex 设为 -1。任何可能的解决方案?
outputBufferIndex = codec.dequeueOutputBuffer(info,outtimeout);
loginfo();
if (outputBufferIndex >= 0)
{
// outputBuffer is ready to be processed or rendered.
codec.releaseOutputBuffer(outputBufferIndex, true);
}
else if (outputBufferIndex == MediaCodec.INFO_OUTPUT_BUFFERS_CHANGED)
{
outputBuffers = codec.getOutputBuffers();
Log.i(TAG, "op_buf_changed");
}
else if (outputBufferIndex == MediaCodec.INFO_OUTPUT_FORMAT_CHANGED)
{
// Subsequent data will conform to new format.
MediaFormat opmediaformat = codec.getOutputFormat();
Log.i(TAG, "op_buf_format_changed");
}
else
{
Log.i(TAG, "no_out_buffer");
}
我也遇到了与 inputbufferindex 相同的问题,但通过设置正确的“TimeoutUs”值我得到了解决。但在 OutputBuffer 的情况下,它没有帮助。