Commit 08e3c6b3 authored by Sergey Ulanov's avatar Sergey Ulanov Committed by Commit Bot

[Fuchsia] Disable SW video decoders in isolated cast_runner context

Software video decoders were disabled in the default context used in
cast_runner, but not in the isolated context. It should be disabled
for all context instances used in cast.

Bug: 1035226
Change-Id: I5c17196e590a07b4e9557f353912786fcd04c9b4
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1971052
Auto-Submit: Sergey Ulanov <sergeyu@chromium.org>
Reviewed-by: default avatarKevin Marshall <kmarshall@chromium.org>
Commit-Queue: Kevin Marshall <kmarshall@chromium.org>
Cr-Commit-Position: refs/heads/master@{#726521}
parent 377db7c9
......@@ -35,7 +35,8 @@ fuchsia::web::CreateContextParams BuildCreateContextParamsForIsolatedRunners(
output.set_features(
fuchsia::web::ContextFeatureFlags::AUDIO |
fuchsia::web::ContextFeatureFlags::VULKAN |
fuchsia::web::ContextFeatureFlags::HARDWARE_VIDEO_DECODER);
fuchsia::web::ContextFeatureFlags::HARDWARE_VIDEO_DECODER |
fuchsia::web::ContextFeatureFlags::HARDWARE_VIDEO_DECODER_ONLY);
if (create_context_params.has_user_agent_product()) {
output.set_user_agent_product(create_context_params.user_agent_product());
......
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