MediaCodec getInputImage在某些设备上返回null

时间:2016-06-16 14:42:04

标签: android encode mediacodec

我想通过将颜色格式设置为COLOR_FormatYUV420Flexible来使用MediaCodec进行编码。 我的输入缓冲区是yuv420p。当我输入这样的缓冲区时:

    int inputBufferIndex = mEncoder.dequeueInputBuffer(-1);
    mCurrentBufferIndex = inputBufferIndex;
    if (inputBufferIndex >= 0) {
        ByteBuffer inputBuffer = inputBuffers[inputBufferIndex];
        //if(VERBOSE)
            Log.i(TAG,"pos:"+inputBuffer.position()+"\tlimit:"+inputBuffer.limit());
        inputBuffer.clear();
        return inputBuffer;
    }

但有些设备颜色错误。 所以我试试这个:

    int inputBufferIndex = mEncoder.dequeueInputBuffer(-1);
    mCurrentBufferIndex = inputBufferIndex;
    if (inputBufferIndex >= 0) {
        Image img = mEncoder.getInputImage(inputBufferIndex);
        if(img==null)
            return null;
        //mCurrentInputPlanes = img.getPlanes();
        ByteBuffer buffers[]={img.getPlanes()[0].getBuffer(),
                img.getPlanes()[1].getBuffer(),
                img.getPlanes()[2].getBuffer()};

我将缓冲区填充到YUV通道。它可以在某些设备上运行。但是当调用getInputImage时,moto X pro和huawei P7变为null。 文档说图像不包含原始数据。 但是它也提到自API 21以来支持COLOR_FormatYUV420Flexible。所以我应该如何解决这个问题。

1 个答案:

答案 0 :(得分:1)

getInputImage文档说:

     * @return the input image, or null if the index is not a
     * dequeued input buffer, or not a ByteBuffer that contains a
     * raw image.

或不包含原始图像的ByteBuffer。可能意味着图像不支持颜色格式。 仅仅因为COLOR_FormatYUV420Flexible从21开始可用,并不意味着所有编解码器都支持这种格式。

如果您必须使用getInputImage,那么可以尝试:

  • COLOR_FormatYUV420Planar
  • COLOR_FormatYUV420SemiPlanar
  • 可以处理COLOR_FormatYUV420Flexible
  • 的不同编解码器