1

我正在尝试使用媒体编解码器解码 h264 文件。由于 Android 不直接支持它,我正在配置自己的解码器。为此,我尝试如下。

codec = MediaCodec.createDecoderByType("video/avc");
format.createVideoFormat("video/avc", /*640*/320, /*480*/240);
try {
    codec.configure(format, null, null,0);
} catch(Exception codec) {
    Log.i(TAG,"codec_configure " +codec.getMessage());
}
//codec.start();
codec.getInputBuffers();
codec.getOutputBuffers();
inputBuffers = codec.getInputBuffers();
outputBuffers = codec.getOutputBuffers();

我得到NullPointerExceptionformat.creatvideoformat()并且IllegalStateException也在codec.start()

谁能帮我修复它?

4

1 回答 1

1

我觉得createVideoFormat可能

format = MediaFormat::createVideoFormat("video/avc", /*640*/320, /*480*/240);
于 2013-02-19T15:35:18.370 回答