mirror of
https://git.freebsd.org/ports.git
synced 2025-06-23 05:30:31 -04:00
38 lines
1.9 KiB
C++
38 lines
1.9 KiB
C++
--- media/base/media_switches.cc.orig 2021-07-15 19:13:41 UTC
|
|
+++ media/base/media_switches.cc
|
|
@@ -379,7 +379,7 @@ const base::Feature kGav1VideoDecoder{"Gav1VideoDecode
|
|
// Show toolbar button that opens dialog for controlling media sessions.
|
|
const base::Feature kGlobalMediaControls {
|
|
"GlobalMediaControls",
|
|
-#if defined(OS_WIN) || defined(OS_MAC) || defined(OS_LINUX) || \
|
|
+#if defined(OS_WIN) || defined(OS_MAC) || defined(OS_LINUX) || defined(OS_BSD) || \
|
|
BUILDFLAG(IS_CHROMEOS_LACROS)
|
|
base::FEATURE_ENABLED_BY_DEFAULT
|
|
#else
|
|
@@ -421,7 +421,7 @@ const base::Feature kGlobalMediaControlsOverlayControl
|
|
// Show picture-in-picture button in Global Media Controls.
|
|
const base::Feature kGlobalMediaControlsPictureInPicture {
|
|
"GlobalMediaControlsPictureInPicture",
|
|
-#if defined(OS_WIN) || defined(OS_MAC) || defined(OS_LINUX) || \
|
|
+#if defined(OS_WIN) || defined(OS_MAC) || defined(OS_LINUX) || defined(OS_BSD) || \
|
|
BUILDFLAG(IS_CHROMEOS_LACROS)
|
|
base::FEATURE_ENABLED_BY_DEFAULT
|
|
#else
|
|
@@ -463,7 +463,7 @@ const base::Feature kUseR16Texture{"use-r16-texture",
|
|
const base::Feature kUnifiedAutoplay{"UnifiedAutoplay",
|
|
base::FEATURE_ENABLED_BY_DEFAULT};
|
|
|
|
-#if defined(OS_LINUX)
|
|
+#if defined(OS_LINUX) || defined(OS_BSD)
|
|
// Enable vaapi video decoding on linux. This is already enabled by default on
|
|
// chromeos, but needs an experiment on linux.
|
|
const base::Feature kVaapiVideoDecodeLinux{"VaapiVideoDecoder",
|
|
@@ -471,7 +471,7 @@ const base::Feature kVaapiVideoDecodeLinux{"VaapiVideo
|
|
|
|
const base::Feature kVaapiVideoEncodeLinux{"VaapiVideoEncoder",
|
|
base::FEATURE_DISABLED_BY_DEFAULT};
|
|
-#endif // defined(OS_LINUX)
|
|
+#endif // defined(OS_LINUX) || defined(OS_BSD)
|
|
|
|
// Enable VA-API hardware decode acceleration for AV1.
|
|
const base::Feature kVaapiAV1Decoder{"VaapiAV1Decoder",
|