Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Issue 2682723003: Make disabling accelerated VPX decoding a GPU driver bug workaround. (Closed)

Created:
3 years, 10 months ago by jbauman
Modified:
3 years, 7 months ago
CC:
chromium-reviews, rjkroege, posciak+watch_chromium.org, jam, feature-media-reviews_chromium.org, darin-cc_chromium.org, piman+watch_chromium.org
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

Make disabling accelerated VPX decoding a GPU driver bug workaround. This is currently a blacklist entry, which means that it's calculated in the browser and the resulting decision could be incorrect if the GPU process uses a different GPU from what the browser expects. If this is a GPU driver bug workaround entry then it'll be determined with more information in the GPU process. BUG=687004 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel Review-Url: https://codereview.chromium.org/2682723003 Cr-Commit-Position: refs/heads/master@{#469513} Committed: https://chromium.googlesource.com/chromium/src/+/beabb626561e9899cb3099b3c7cd5a1447bf00f7

Patch Set 1 #

Patch Set 2 : fix test #

Patch Set 3 : remove flag #

Total comments: 2

Patch Set 4 : alphabetize #

Patch Set 5 : rebase #

Patch Set 6 : regenerate structs autogen #

Patch Set 7 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+90 lines, -98 lines) Patch
M content/browser/gpu/compositor_util.cc View 1 2 3 4 2 chunks +0 lines, -15 lines 0 comments Download
M content/browser/gpu/gpu_data_manager_impl_private.cc View 1 2 3 4 1 chunk +0 lines, -7 lines 0 comments Download
M content/browser/gpu/gpu_data_manager_testing_arrays_and_structs_autogen.h View 1 2 3 4 5 2 chunks +1 line, -2 lines 0 comments Download
M gpu/config/gpu_blacklist.cc View 1 2 3 4 1 chunk +0 lines, -2 lines 0 comments Download
M gpu/config/gpu_blacklist_unittest.cc View 1 2 3 4 1 chunk +0 lines, -3 lines 0 comments Download
M gpu/config/gpu_driver_bug_list.json View 1 2 3 4 5 6 2 chunks +54 lines, -1 line 0 comments Download
M gpu/config/gpu_driver_bug_workaround_type.h View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
M gpu/config/gpu_feature_type.h View 1 2 3 4 1 chunk +0 lines, -1 line 0 comments Download
M gpu/config/software_rendering_list.json View 1 2 3 4 5 6 3 chunks +1 line, -54 lines 0 comments Download
M gpu/ipc/service/gpu_channel_manager.h View 1 2 3 4 2 chunks +2 lines, -0 lines 0 comments Download
M gpu/ipc/service/gpu_channel_manager.cc View 1 2 3 4 2 chunks +2 lines, -1 line 0 comments Download
M gpu/ipc/service/gpu_channel_test_common.cc View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
M media/gpu/dxva_video_decode_accelerator_win.h View 1 2 3 4 1 chunk +2 lines, -1 line 0 comments Download
M media/gpu/dxva_video_decode_accelerator_win.cc View 1 2 3 4 5 6 3 chunks +7 lines, -3 lines 0 comments Download
M media/gpu/gpu_video_decode_accelerator_factory.h View 1 chunk +2 lines, -1 line 0 comments Download
M media/gpu/gpu_video_decode_accelerator_factory.cc View 1 2 3 4 5 6 2 chunks +4 lines, -2 lines 0 comments Download
M media/gpu/ipc/service/gpu_video_decode_accelerator.h View 2 chunks +3 lines, -1 line 0 comments Download
M media/gpu/ipc/service/gpu_video_decode_accelerator.cc View 1 2 3 4 1 chunk +3 lines, -2 lines 0 comments Download
M services/ui/gpu/gpu_service.h View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
M services/ui/gpu/gpu_service.cc View 1 2 3 4 3 chunks +4 lines, -2 lines 0 comments Download

Messages

Total messages: 39 (30 generated)
jbauman
3 years, 10 months ago (2017-02-10 23:25:48 UTC) #13
sadrul
lgtm
3 years, 10 months ago (2017-02-11 18:48:47 UTC) #14
Zhenyao Mo
https://codereview.chromium.org/2682723003/diff/40001/gpu/config/gpu_driver_bug_workaround_type.h File gpu/config/gpu_driver_bug_workaround_type.h (right): https://codereview.chromium.org/2682723003/diff/40001/gpu/config/gpu_driver_bug_workaround_type.h#newcode210 gpu/config/gpu_driver_bug_workaround_type.h:210: GPU_OP(DISABLE_ACCELERATED_VPX_DECODE, \ alphabetical order https://codereview.chromium.org/2682723003/diff/40001/services/ui/gpu/gpu_main.cc File services/ui/gpu/gpu_main.cc (right): https://codereview.chromium.org/2682723003/diff/40001/services/ui/gpu/gpu_main.cc#newcode223 ...
3 years, 10 months ago (2017-02-13 22:14:27 UTC) #15
jbauman
PTAL On 2017/02/13 22:14:27, Zhenyao Mo wrote: > https://codereview.chromium.org/2682723003/diff/40001/gpu/config/gpu_driver_bug_workaround_type.h > File gpu/config/gpu_driver_bug_workaround_type.h (right): > > ...
3 years, 8 months ago (2017-04-26 21:04:40 UTC) #29
Zhenyao Mo
On 2017/04/26 21:04:40, jbauman wrote: > PTAL > > On 2017/02/13 22:14:27, Zhenyao Mo wrote: ...
3 years, 7 months ago (2017-05-04 17:16:32 UTC) #30
jbauman
sandersd@: media/gpu OWNERS review.
3 years, 7 months ago (2017-05-04 20:54:28 UTC) #32
sandersd (OOO until July 31)
media/ lgtm.
3 years, 7 months ago (2017-05-04 21:07:01 UTC) #33
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2682723003/120001
3 years, 7 months ago (2017-05-04 21:08:03 UTC) #36
commit-bot: I haz the power
3 years, 7 months ago (2017-05-04 23:24:07 UTC) #39
Message was sent while issue was closed.
Committed patchset #7 (id:120001) as
https://chromium.googlesource.com/chromium/src/+/beabb626561e9899cb3099b3c7cd...

Powered by Google App Engine
This is Rietveld 408576698