我在設置 MediaCodec profile 的時候,一直沒有成功,看了源碼以後才發現問題之所在: java
https://android.googlesource.com/platform/frameworks/av/+/437ced8a14944bf5450df50c5e7e7a6dfe20ea40/media/libstagefright/ACodec.cpp android
設置了 profile 以後,你還要設置一個 Level 屬性,可是目前最新的 SDK 裏面並無提供這個 Key。 ide
即便你手動的設置 level ,好比像這樣: google
MediaCodec codec = createEncoderByType(MediaFormat.MIMETYPE_VIDEO_AVC); MediaFormat format = = MediaFormat.createVideoFormat(MediaFormat.MIMETYPE_VIDEO_AVC, 1920, 1080); format.setInteger(MediaFormat.KEY_PROFILE, MediaCodecInfo.CodecProfileLevel.AVCProfileHigh); format.setInteger("level", Level_xxx); codec.configure(format, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE);仍是不行的,由於 Android 強制將 profile 設置爲 Baseline 了。
// XXX if (h264type.eProfile != OMX_VIDEO_AVCProfileBaseline) { ALOGW("Use baseline profile instead of %d for AVC recording", h264type.eProfile); h264type.eProfile = OMX_VIDEO_AVCProfileBaseline; }
總之,Android 在使用 MediaCodec 進行 encode 的時候,只能使用 Baseline 的 profile。 code
Google 以後,發現也有其餘的朋友發現了相似的問題, orm
https://code.google.com/p/android/issues/detail?id=163580 源碼
看來這個問題確實存在,不過不清楚爲何 Android 要強制使用 Baseline 的 profile。 form