| // Copyright 2015 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "media/base/android/media_codec_util.h" |
| |
| #include <stddef.h> |
| |
| #include <vector> |
| |
| #include "base/android/build_info.h" |
| #include "base/android/jni_android.h" |
| #include "base/android/jni_array.h" |
| #include "base/android/jni_string.h" |
| #include "base/containers/contains.h" |
| #include "base/logging.h" |
| #include "base/strings/string_piece.h" |
| #include "base/strings/string_util.h" |
| #include "media/base/android/media_codec_bridge.h" |
| #include "media/base/android/media_jni_headers/CodecProfileLevelList_jni.h" |
| #include "media/base/android/media_jni_headers/MediaCodecUtil_jni.h" |
| #include "media/base/video_codecs.h" |
| #include "url/gurl.h" |
| |
| using base::android::AttachCurrentThread; |
| using base::android::ConvertJavaStringToUTF8; |
| using base::android::ConvertUTF8ToJavaString; |
| using base::android::JavaIntArrayToIntVector; |
| using base::android::JavaRef; |
| using base::android::ScopedJavaLocalRef; |
| using base::android::SDK_VERSION_P; |
| |
| namespace media { |
| |
| namespace { |
| const char kMp3MimeType[] = "audio/mpeg"; |
| const char kAacMimeType[] = "audio/mp4a-latm"; |
| const char kOpusMimeType[] = "audio/opus"; |
| const char kVorbisMimeType[] = "audio/vorbis"; |
| const char kFLACMimeType[] = "audio/flac"; |
| const char kAc3MimeType[] = "audio/ac3"; |
| const char kEac3MimeType[] = "audio/eac3"; |
| const char kBitstreamAudioMimeType[] = "audio/raw"; |
| const char kAvcMimeType[] = "video/avc"; |
| const char kDolbyVisionMimeType[] = "video/dolby-vision"; |
| const char kHevcMimeType[] = "video/hevc"; |
| const char kVp8MimeType[] = "video/x-vnd.on2.vp8"; |
| const char kVp9MimeType[] = "video/x-vnd.on2.vp9"; |
| const char kAv1MimeType[] = "video/av01"; |
| const char kDtsMimeType[] = "audio/vnd.dts"; |
| const char kDtseMimeType[] = "audio/vnd.dts;profile=lbr"; |
| const char kDtsxP2MimeType[] = "audio/vnd.dts.uhd;profile=p2"; |
| } // namespace |
| |
| static CodecProfileLevel MediaCodecProfileLevelToChromiumProfileLevel( |
| JNIEnv* env, |
| const JavaRef<jobject>& j_codec_profile_level) { |
| VideoCodec codec = static_cast<VideoCodec>( |
| Java_CodecProfileLevelAdapter_getCodec(env, j_codec_profile_level)); |
| VideoCodecProfile profile = static_cast<VideoCodecProfile>( |
| Java_CodecProfileLevelAdapter_getProfile(env, j_codec_profile_level)); |
| auto level = static_cast<VideoCodecLevel>( |
| Java_CodecProfileLevelAdapter_getLevel(env, j_codec_profile_level)); |
| return {codec, profile, level}; |
| } |
| |
| static bool IsSupportedAndroidMimeType(const std::string& mime_type) { |
| std::vector<std::string> supported{ |
| kMp3MimeType, kAacMimeType, kOpusMimeType, kVorbisMimeType, |
| kAvcMimeType, kDolbyVisionMimeType, kHevcMimeType, kVp8MimeType, |
| kVp9MimeType, kAv1MimeType}; |
| return base::Contains(supported, mime_type); |
| } |
| |
| static bool IsDecoderSupportedByDevice(const std::string& android_mime_type) { |
| DCHECK(IsSupportedAndroidMimeType(android_mime_type)); |
| JNIEnv* env = AttachCurrentThread(); |
| ScopedJavaLocalRef<jstring> j_mime = |
| ConvertUTF8ToJavaString(env, android_mime_type); |
| return Java_MediaCodecUtil_isDecoderSupportedForDevice(env, j_mime); |
| } |
| |
| static bool IsEncoderSupportedByDevice(const std::string& android_mime_type) { |
| JNIEnv* env = AttachCurrentThread(); |
| ScopedJavaLocalRef<jstring> j_mime = |
| ConvertUTF8ToJavaString(env, android_mime_type); |
| return Java_MediaCodecUtil_isEncoderSupportedByDevice(env, j_mime); |
| } |
| |
| static bool CanDecodeInternal(const std::string& mime, bool is_secure) { |
| if (mime.empty()) |
| return false; |
| |
| JNIEnv* env = AttachCurrentThread(); |
| ScopedJavaLocalRef<jstring> j_mime = ConvertUTF8ToJavaString(env, mime); |
| return Java_MediaCodecUtil_canDecode(env, j_mime, is_secure); |
| } |
| |
| static bool HasVp9Profile23Decoder() { |
| // Support for VP9.2, VP9.3 was added in Nougat but it requires hardware |
| // support which we can't check from the renderer process. Since Android P+ |
| // has a software decoder available for VP9.2, VP9.3 content and usage is nil |
| // on Android, just gate support on P+. |
| return base::android::BuildInfo::GetInstance()->sdk_int() >= |
| base::android::SDK_VERSION_P; |
| } |
| |
| // static |
| std::string MediaCodecUtil::CodecToAndroidMimeType(AudioCodec codec) { |
| return CodecToAndroidMimeType(codec, kUnknownSampleFormat); |
| } |
| |
| // static |
| std::string MediaCodecUtil::CodecToAndroidMimeType(AudioCodec codec, |
| SampleFormat sample_format) { |
| // Passthrough is possible for some bitstream formats. |
| const bool is_passthrough = sample_format == kSampleFormatDts || |
| sample_format == kSampleFormatDtsxP2 || |
| sample_format == kSampleFormatAc3 || |
| sample_format == kSampleFormatEac3 || |
| sample_format == kSampleFormatMpegHAudio; |
| |
| if (IsPassthroughAudioFormat(codec) || is_passthrough) |
| return kBitstreamAudioMimeType; |
| |
| switch (codec) { |
| case AudioCodec::kMP3: |
| return kMp3MimeType; |
| case AudioCodec::kVorbis: |
| return kVorbisMimeType; |
| case AudioCodec::kFLAC: |
| return kFLACMimeType; |
| case AudioCodec::kOpus: |
| return kOpusMimeType; |
| case AudioCodec::kAAC: |
| return kAacMimeType; |
| case AudioCodec::kAC3: |
| return kAc3MimeType; |
| case AudioCodec::kEAC3: |
| return kEac3MimeType; |
| case AudioCodec::kDTS: |
| return kDtsMimeType; |
| case AudioCodec::kDTSE: |
| return kDtseMimeType; |
| case AudioCodec::kDTSXP2: |
| return kDtsxP2MimeType; |
| default: |
| return std::string(); |
| } |
| } |
| |
| // static |
| std::string MediaCodecUtil::CodecToAndroidMimeType(VideoCodec codec) { |
| switch (codec) { |
| case VideoCodec::kH264: |
| return kAvcMimeType; |
| case VideoCodec::kHEVC: |
| return kHevcMimeType; |
| case VideoCodec::kVP8: |
| return kVp8MimeType; |
| case VideoCodec::kVP9: |
| return kVp9MimeType; |
| case VideoCodec::kDolbyVision: |
| return kDolbyVisionMimeType; |
| case VideoCodec::kAV1: |
| return kAv1MimeType; |
| default: |
| return std::string(); |
| } |
| } |
| |
| // static |
| bool MediaCodecUtil::PlatformSupportsCbcsEncryption(int sdk) { |
| JNIEnv* env = AttachCurrentThread(); |
| return Java_MediaCodecUtil_platformSupportsCbcsEncryption(env, sdk); |
| } |
| |
| // static |
| std::set<int> MediaCodecUtil::GetEncoderColorFormats( |
| const std::string& mime_type) { |
| std::set<int> color_formats; |
| |
| JNIEnv* env = AttachCurrentThread(); |
| ScopedJavaLocalRef<jstring> j_mime = ConvertUTF8ToJavaString(env, mime_type); |
| ScopedJavaLocalRef<jintArray> j_color_format_array = |
| Java_MediaCodecUtil_getEncoderColorFormatsForMime(env, j_mime); |
| |
| if (!j_color_format_array.is_null()) { |
| std::vector<int> formats; |
| JavaIntArrayToIntVector(env, j_color_format_array, &formats); |
| color_formats = std::set<int>(formats.begin(), formats.end()); |
| } |
| |
| return color_formats; |
| } |
| |
| // static |
| bool MediaCodecUtil::IsVp8DecoderAvailable() { |
| return IsDecoderSupportedByDevice(kVp8MimeType); |
| } |
| |
| // static |
| bool MediaCodecUtil::IsVp8EncoderAvailable() { |
| // Currently the vp8 encoder and decoder blocklists cover the same devices, |
| // but we have a second method for clarity in future issues. |
| return IsVp8DecoderAvailable(); |
| } |
| |
| // static |
| bool MediaCodecUtil::IsVp9DecoderAvailable() { |
| return IsDecoderSupportedByDevice(kVp9MimeType); |
| } |
| |
| // static |
| bool MediaCodecUtil::IsVp9Profile2DecoderAvailable() { |
| return IsVp9DecoderAvailable() && HasVp9Profile23Decoder(); |
| } |
| |
| // static |
| bool MediaCodecUtil::IsVp9Profile3DecoderAvailable() { |
| return IsVp9DecoderAvailable() && HasVp9Profile23Decoder(); |
| } |
| |
| // static |
| bool MediaCodecUtil::IsOpusDecoderAvailable() { |
| return IsDecoderSupportedByDevice(kOpusMimeType); |
| } |
| |
| // static |
| bool MediaCodecUtil::IsAv1DecoderAvailable() { |
| return IsDecoderSupportedByDevice(kAv1MimeType); |
| } |
| |
| #if BUILDFLAG(ENABLE_PLATFORM_HEVC) |
| // static |
| bool MediaCodecUtil::IsHEVCDecoderAvailable() { |
| return IsDecoderSupportedByDevice(kHevcMimeType); |
| } |
| #endif |
| |
| // static |
| bool MediaCodecUtil::IsSurfaceViewOutputSupported() { |
| // Disable SurfaceView output for the Samsung Galaxy S3; it does not work |
| // well enough for even 360p24 H264 playback. http://crbug.com/602870. |
| // |
| // Notably this is codec agnostic at present, so any devices added to the |
| // disabled list will avoid trying to play any codecs on SurfaceView. If |
| // needed in the future this can be expanded to be codec specific. |
| constexpr const char* kDisabledModels[] = {// Exynos 4 (Mali-400) |
| "GT-I9300", "GT-I9305", "SHV-E210", |
| // Snapdragon S4 (Adreno-225) |
| "SCH-I535", "SCH-J201", "SCH-R530", |
| "SCH-I960", "SCH-S968", "SGH-T999", |
| "SGH-I747", "SGH-N064"}; |
| |
| std::string model(base::android::BuildInfo::GetInstance()->model()); |
| for (auto* disabled_model : kDisabledModels) { |
| if (base::StartsWith(model, disabled_model, |
| base::CompareCase::INSENSITIVE_ASCII)) { |
| return false; |
| } |
| } |
| |
| return true; |
| } |
| |
| // static |
| bool MediaCodecUtil::IsSetOutputSurfaceSupported() { |
| JNIEnv* env = AttachCurrentThread(); |
| return Java_MediaCodecUtil_isSetOutputSurfaceSupported(env); |
| } |
| |
| // static |
| bool MediaCodecUtil::IsPassthroughAudioFormat(AudioCodec codec) { |
| switch (codec) { |
| case AudioCodec::kAC3: |
| case AudioCodec::kEAC3: |
| case AudioCodec::kDTS: |
| case AudioCodec::kDTSXP2: |
| case AudioCodec::kMpegHAudio: |
| return true; |
| default: |
| return false; |
| } |
| } |
| |
| // static |
| bool MediaCodecUtil::CanDecode(VideoCodec codec, bool is_secure) { |
| return CanDecodeInternal(CodecToAndroidMimeType(codec), is_secure); |
| } |
| |
| // static |
| bool MediaCodecUtil::CanDecode(AudioCodec codec) { |
| return CanDecodeInternal(CodecToAndroidMimeType(codec), false); |
| } |
| |
| // static |
| bool MediaCodecUtil::IsH264EncoderAvailable() { |
| return IsEncoderSupportedByDevice(kAvcMimeType); |
| } |
| |
| // static |
| void MediaCodecUtil::AddSupportedCodecProfileLevels( |
| std::vector<CodecProfileLevel>* result) { |
| DCHECK(result); |
| JNIEnv* env = AttachCurrentThread(); |
| ScopedJavaLocalRef<jobjectArray> j_codec_profile_levels( |
| Java_MediaCodecUtil_getSupportedCodecProfileLevels(env)); |
| for (auto java_codec_profile_level : |
| j_codec_profile_levels.ReadElements<jobject>()) { |
| result->push_back(MediaCodecProfileLevelToChromiumProfileLevel( |
| env, java_codec_profile_level)); |
| } |
| } |
| |
| // static |
| bool MediaCodecUtil::IsKnownUnaccelerated(VideoCodec codec, |
| MediaCodecDirection direction) { |
| auto* env = AttachCurrentThread(); |
| auto j_mime = ConvertUTF8ToJavaString(env, CodecToAndroidMimeType(codec)); |
| auto j_codec_name = Java_MediaCodecUtil_getDefaultCodecName( |
| env, j_mime, static_cast<int>(direction), /*requireSoftwareCodec=*/false, |
| /*requireHardwareCodec=*/true); |
| |
| auto codec_name = ConvertJavaStringToUTF8(env, j_codec_name.obj()); |
| DVLOG(1) << __func__ << "Default hardware codec for " << GetCodecName(codec) |
| << " : " << codec_name |
| << ", direction: " << static_cast<int>(direction); |
| if (codec_name.empty()) |
| return true; |
| |
| // MediaTek hardware vp8 is known slower than the software implementation. |
| if (base::StartsWith(codec_name, "OMX.MTK.") && codec == VideoCodec::kVP8) { |
| // We may still reject VP8 hardware decoding later on certain chipsets, |
| // see isDecoderSupportedForDevice(). We don't have the the chipset ID |
| // here to check now though. |
| return base::android::BuildInfo::GetInstance()->sdk_int() < SDK_VERSION_P; |
| } |
| |
| return false; |
| } |
| |
| } // namespace media |