Commit 8df3add8 authored by Dan Sanders's avatar Dan Sanders Committed by Commit Bot

[media] Disable MojoVideoDecoder by default on CrOS.

This is a partial revert of commit 44323658.

Bug: 902900
Change-Id: I0279d839a83ff67ac37508aad8de632b237fa65e
Reviewed-on: https://chromium-review.googlesource.com/c/1325072
Commit-Queue: Tao Wu <wutao@chromium.org>
Reviewed-by: default avatarThomas Guilbert <tguilbert@chromium.org>
Cr-Commit-Position: refs/heads/master@{#606327}
parent efd9a18f
......@@ -260,8 +260,16 @@ const base::Feature kMemoryPressureBasedSourceBufferGC{
"MemoryPressureBasedSourceBufferGC", base::FEATURE_DISABLED_BY_DEFAULT};
// Enable MojoVideoDecoder, replacing GpuVideoDecoder.
const base::Feature kMojoVideoDecoder{"MojoVideoDecoder",
base::FEATURE_ENABLED_BY_DEFAULT};
const base::Feature kMojoVideoDecoder {
"MojoVideoDecoder",
#if defined(OS_CHROMEOS)
// TODO(posciak): Re-enable once the feature is verified on CrOS.
// https://crbug.com/902968.
base::FEATURE_DISABLED_BY_DEFAULT
#else
base::FEATURE_ENABLED_BY_DEFAULT
#endif
};
// Enable The D3D11 Video decoder. Must also enable MojoVideoDecoder for
// this to have any effect.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment