Android MediaCodec中的错误代码-1010是什么意思?

时间:2016-04-28 12:56:22

标签: android mediacodec

这是堆栈跟踪:

 E/ACodec: [OMX.qcom.video.encoder.avc] configureCodec returning error -1010
 E/ACodec: signalError(omxError 0x80001001, internalError -1010)
 E/MediaCodec: Codec reported err 0xfffffc0e, actionCode 0, while in state 3
 E/MediaCodec: configure failed with err 0xfffffc0e, resetting...
W/System.err: android.media.MediaCodec$CodecException: Error 0xfffffc0e
W/System.err:     at android.media.MediaCodec.native_configure(Native Method)
W/System.err:     at android.media.MediaCodec.configure(MediaCodec.java:1778)

Nexus 6P发生崩溃。

mediaCodec的初始化:

videoCodec = MediaCodec.createEncoderByType(MIME_VIDEO_CODEC_H264);

        MediaFormat videoFormat = MediaFormat.createVideoFormat(MIME_VIDEO_CODEC_H264, imageWidth, imageHeight);
        videoFormat.setInteger(MediaFormat.KEY_BIT_RATE, camera.getBitrate());
        videoFormat.setInteger(MediaFormat.KEY_FRAME_RATE, camera.getFrameRate());
        videoFormat.setInteger(MediaFormat.KEY_COLOR_FORMAT, MediaCodecInfo.CodecCapabilities.COLOR_FormatSurface);
        videoFormat.setInteger(MediaFormat.KEY_I_FRAME_INTERVAL, 0);
        videoCodec.configure(videoFormat, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE);

2 个答案:

答案 0 :(得分:5)

这似乎是Qualcomm编解码器实现(OMX.qcom.video.encoder.avc)报告的内部错误。

可能是harmless,可能表示configuration problem,或者configuration problem,或其他configuration problem。大多数情况下,它似乎表明它不喜欢您的配置,而没有提供任何特定的洞察原因。

错误代码有点无用,所以你必须从已知可以工作的值开始,一次更改一个,直到出现问题。您为比特/帧速率传递的实际值是多少?

答案 1 :(得分:5)

当我尝试将16:9视频编码为.h264并更改帧大小时,我遇到了这个问题(它以4:3的方式工作正常)。

对我来说,解决方法是确保输出格式的高度和宽度可以被2整除。如果它们不是,我只是将它们四舍五入,这样就可以了。