123456789101112131415161718192021222324252627282930313233 |
- diff --git a/media/base/supported_types.cc b/media/base/supported_types.cc
- index 2ebbdf9..861dc50 100644
- --- a/media/base/supported_types.cc
- +++ b/media/base/supported_types.cc
- @@ -205,28 +205,7 @@ bool IsAudioCodecProprietary(AudioCodec codec) {
- #endif // !BUILDFLAG(USE_PROPRIETARY_CODECS)
-
- bool IsHevcProfileSupported(const VideoType& type) {
- - if (!IsColorSpaceSupported(type.color_space))
- - return false;
- -
- -#if BUILDFLAG(ENABLE_PLATFORM_HEVC)
- -#if BUILDFLAG(PLATFORM_HAS_OPTIONAL_HEVC_SUPPORT)
- -#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);
- -#else
- - return true;
- -#endif // BUIDFLAG(PLATFORM_HAS_OPTIONAL_HEVC_SUPPORT)
- -#else
- - return false;
- -#endif // BUILDFLAG(ENABLE_PLATFORM_HEVC)
- }
-
- bool IsVp9ProfileSupported(const VideoType& type) {
|