34 lines
1.4 KiB
Diff
34 lines
1.4 KiB
Diff
diff --git a/media/base/supported_types.cc b/media/base/supported_types.cc
|
|
index c47d83f..ebbbce5 100644
|
|
--- a/media/base/supported_types.cc
|
|
+++ b/media/base/supported_types.cc
|
|
@@ -205,28 +205,7 @@ bool IsHevcProfileSupported(const VideoType& type) {
|
|
return false;
|
|
|
|
#if BUILDFLAG(ENABLE_PLATFORM_HEVC)
|
|
-#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX) || \
|
|
- BUILDFLAG(IS_MAC)
|
|
-#if BUILDFLAG(IS_CHROMEOS_LACROS)
|
|
- // TODO(b/171813538): For Lacros, the supplemental profile cache will be
|
|
- // asking lacros-gpu, but we will be doing decoding in ash-gpu. Until the
|
|
- // codec detection is plumbed through to ash-gpu we can do this extra check
|
|
- // for HEVC support.
|
|
- if (base::CommandLine::ForCurrentProcess()->HasSwitch(
|
|
- switches::kLacrosEnablePlatformHevc)) {
|
|
- return true;
|
|
- }
|
|
-#endif // BUILDFLAG(IS_CHROMEOS_LACROS)
|
|
- return GetSupplementalProfileCache()->IsProfileSupported(type.profile);
|
|
-#elif BUILDFLAG(IS_ANDROID)
|
|
- // Technically android 5.0 mandates support for only HEVC main profile,
|
|
- // however some platforms (like chromecast) have had more profiles supported
|
|
- // so we'll see what happens if we just enable them all.
|
|
- return base::FeatureList::IsEnabled(kPlatformHEVCDecoderSupport);
|
|
-#else
|
|
return true;
|
|
-#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX) ||
|
|
- // BUILDFLAG(IS_MAC)
|
|
#else
|
|
return false;
|
|
#endif // BUILDFLAG(ENABLE_PLATFORM_HEVC)
|