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

Issue 2682913002: [DesktopCapture] Detect screen resolution changes in DirectX capturer (Closed)

Created:
3 years, 10 months ago by Hzj_jie
Modified:
3 years, 10 months ago
Reviewers:
Sergey Ulanov, Jamie
CC:
webrtc-reviews_webrtc.org, tterriberry_mozilla.com
Target Ref:
refs/heads/master
Project:
webrtc
Visibility:
Public.

Description

[DesktopCapture] Detect screen resolution changes in DirectX capturer This change adds a ResolutionChangeDetector to help dxgi components, say DxgiDuplicatorController and DxgiTexture to detect resolution changes. BUG=684162 Review-Url: https://codereview.webrtc.org/2682913002 Cr-Commit-Position: refs/heads/master@{#16654} Committed: https://chromium.googlesource.com/external/webrtc/+/5fea5fb1836076d5df22a1f869ac8484d3b7dad0

Patch Set 1 #

Patch Set 2 : Avoid a CaptureFrame failure in first place #

Total comments: 18

Patch Set 3 : Resolve review comments #

Patch Set 4 : Resolve review comments #

Patch Set 5 : Resolve review comments #

Patch Set 6 : Resolve review comments #

Unified diffs Side-by-side diffs Delta from patch set Stats (+218 lines, -63 lines) Patch
M webrtc/modules/desktop_capture/BUILD.gn View 1 chunk +2 lines, -0 lines 0 comments Download
A webrtc/modules/desktop_capture/resolution_change_detector.h View 1 chunk +30 lines, -0 lines 0 comments Download
A webrtc/modules/desktop_capture/resolution_change_detector.cc View 1 chunk +29 lines, -0 lines 0 comments Download
M webrtc/modules/desktop_capture/win/dxgi_duplicator_controller.h View 1 2 3 5 chunks +14 lines, -0 lines 0 comments Download
M webrtc/modules/desktop_capture/win/dxgi_duplicator_controller.cc View 1 2 3 5 chunks +32 lines, -3 lines 0 comments Download
M webrtc/modules/desktop_capture/win/dxgi_output_duplicator.cc View 1 chunk +2 lines, -5 lines 0 comments Download
M webrtc/modules/desktop_capture/win/dxgi_texture.h View 1 2 3 3 chunks +13 lines, -6 lines 0 comments Download
M webrtc/modules/desktop_capture/win/dxgi_texture.cc View 1 2 3 3 chunks +38 lines, -3 lines 0 comments Download
M webrtc/modules/desktop_capture/win/dxgi_texture_mapping.h View 1 2 3 1 chunk +5 lines, -5 lines 0 comments Download
M webrtc/modules/desktop_capture/win/dxgi_texture_mapping.cc View 1 2 3 1 chunk +9 lines, -9 lines 0 comments Download
M webrtc/modules/desktop_capture/win/dxgi_texture_staging.h View 1 2 3 1 chunk +5 lines, -4 lines 0 comments Download
M webrtc/modules/desktop_capture/win/dxgi_texture_staging.cc View 1 2 3 3 chunks +11 lines, -26 lines 0 comments Download
M webrtc/modules/desktop_capture/win/screen_capturer_win_directx.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/desktop_capture/win/screen_capturer_win_directx.cc View 1 2 3 4 5 5 chunks +26 lines, -0 lines 0 comments Download

Messages

Total messages: 102 (85 generated)
Hzj_jie
3 years, 10 months ago (2017-02-08 22:19:53 UTC) #45
Sergey Ulanov
With this change one Capture() request will always fail when screen resolution changes. Is it ...
3 years, 10 months ago (2017-02-09 00:16:57 UTC) #48
Hzj_jie
On 2017/02/09 00:16:57, Sergey Ulanov wrote: > With this change one Capture() request will always ...
3 years, 10 months ago (2017-02-09 00:18:47 UTC) #49
Sergey Ulanov
On 2017/02/09 00:18:47, Hzj_jie wrote: > On 2017/02/09 00:16:57, Sergey Ulanov wrote: > > With ...
3 years, 10 months ago (2017-02-09 00:59:30 UTC) #50
Hzj_jie
On 2017/02/09 00:59:30, Sergey Ulanov wrote: > On 2017/02/09 00:18:47, Hzj_jie wrote: > > On ...
3 years, 10 months ago (2017-02-09 01:43:54 UTC) #51
Hzj_jie
Updated.
3 years, 10 months ago (2017-02-09 02:37:30 UTC) #57
Sergey Ulanov
https://codereview.webrtc.org/2682913002/diff/220001/webrtc/modules/desktop_capture/win/dxgi_texture.h File webrtc/modules/desktop_capture/win/dxgi_texture.h (right): https://codereview.webrtc.org/2682913002/diff/220001/webrtc/modules/desktop_capture/win/dxgi_texture.h#newcode65 webrtc/modules/desktop_capture/win/dxgi_texture.h:65: virtual bool DoRelease() = 0; These two methods are ...
3 years, 10 months ago (2017-02-10 19:58:25 UTC) #60
Hzj_jie
https://codereview.webrtc.org/2682913002/diff/220001/webrtc/modules/desktop_capture/win/dxgi_texture.h File webrtc/modules/desktop_capture/win/dxgi_texture.h (right): https://codereview.webrtc.org/2682913002/diff/220001/webrtc/modules/desktop_capture/win/dxgi_texture.h#newcode65 webrtc/modules/desktop_capture/win/dxgi_texture.h:65: virtual bool DoRelease() = 0; On 2017/02/10 19:58:25, Sergey ...
3 years, 10 months ago (2017-02-11 01:51:22 UTC) #73
Sergey Ulanov
https://codereview.webrtc.org/2682913002/diff/220001/webrtc/modules/desktop_capture/win/dxgi_texture.h File webrtc/modules/desktop_capture/win/dxgi_texture.h (right): https://codereview.webrtc.org/2682913002/diff/220001/webrtc/modules/desktop_capture/win/dxgi_texture.h#newcode59 webrtc/modules/desktop_capture/win/dxgi_texture.h:59: DXGI_MAPPED_RECT rect_ = {0}; BTW, style guide doesn't allow ...
3 years, 10 months ago (2017-02-15 01:38:52 UTC) #76
Hzj_jie
https://codereview.webrtc.org/2682913002/diff/220001/webrtc/modules/desktop_capture/win/dxgi_texture.h File webrtc/modules/desktop_capture/win/dxgi_texture.h (right): https://codereview.webrtc.org/2682913002/diff/220001/webrtc/modules/desktop_capture/win/dxgi_texture.h#newcode65 webrtc/modules/desktop_capture/win/dxgi_texture.h:65: virtual bool DoRelease() = 0; On 2017/02/15 01:38:51, Sergey ...
3 years, 10 months ago (2017-02-15 03:53:16 UTC) #84
Sergey Ulanov
https://codereview.webrtc.org/2682913002/diff/220001/webrtc/modules/desktop_capture/win/screen_capturer_win_directx.cc File webrtc/modules/desktop_capture/win/screen_capturer_win_directx.cc (right): https://codereview.webrtc.org/2682913002/diff/220001/webrtc/modules/desktop_capture/win/screen_capturer_win_directx.cc#newcode71 webrtc/modules/desktop_capture/win/screen_capturer_win_directx.cc:71: GetScreenRect(kFullDesktopScreenId, L"").size())) { On 2017/02/15 03:53:16, Hzj_jie wrote: > ...
3 years, 10 months ago (2017-02-15 22:39:38 UTC) #87
Hzj_jie
On 2017/02/15 22:39:38, Sergey Ulanov wrote: > https://codereview.webrtc.org/2682913002/diff/220001/webrtc/modules/desktop_capture/win/screen_capturer_win_directx.cc > File webrtc/modules/desktop_capture/win/screen_capturer_win_directx.cc (right): > > https://codereview.webrtc.org/2682913002/diff/220001/webrtc/modules/desktop_capture/win/screen_capturer_win_directx.cc#newcode71 ...
3 years, 10 months ago (2017-02-15 23:15:22 UTC) #88
Sergey Ulanov
On 2017/02/15 23:15:22, Hzj_jie wrote: > I will surely add comments. But I do think ...
3 years, 10 months ago (2017-02-15 23:21:19 UTC) #89
Hzj_jie
On 2017/02/15 23:21:19, Sergey Ulanov wrote: > On 2017/02/15 23:15:22, Hzj_jie wrote: > > I ...
3 years, 10 months ago (2017-02-15 23:57:30 UTC) #94
Sergey Ulanov
lgtm
3 years, 10 months ago (2017-02-16 18:36:09 UTC) #97
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.webrtc.org/2682913002/360001
3 years, 10 months ago (2017-02-16 20:04:44 UTC) #99
commit-bot: I haz the power
3 years, 10 months ago (2017-02-16 20:07:51 UTC) #102
Message was sent while issue was closed.
Committed patchset #6 (id:360001) as
https://chromium.googlesource.com/external/webrtc/+/5fea5fb1836076d5df22a1f86...

Powered by Google App Engine
This is Rietveld 408576698