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

Issue 2778163005: Use new RTCCameraVideoCapturer in AppRTCMobile. (Closed)

Created:
3 years, 8 months ago by sakal
Modified:
3 years, 8 months ago
CC:
webrtc-reviews_webrtc.org, tterriberry_mozilla.com
Target Ref:
refs/heads/master
Project:
webrtc
Visibility:
Public.

Description

Use new RTCCameraVideoCapturer in AppRTCMobile. Because the new API doesn't use constraints, refactors settings to instead have a video resolution setting. BUG=webrtc:7177 Review-Url: https://codereview.webrtc.org/2778163005 Cr-Commit-Position: refs/heads/master@{#17545} Committed: https://chromium.googlesource.com/external/webrtc/+/c522e758f6a364c23e7232d4f402713601f0b35e

Patch Set 1 : Fix tests 2. #

Total comments: 20

Patch Set 2 : Fix comments. #

Patch Set 3 : Move startCapture from client to view controller. #

Patch Set 4 : CaptureController #

Patch Set 5 : Rename remaining media constraint references. #

Total comments: 5

Patch Set 6 : Move calling stopCapture out of ARDAppClient. #

Patch Set 7 : Remove localCapturer property from ARDVideoCallViewController. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+244 lines, -172 lines) Patch
M webrtc/examples/BUILD.gn View 1 2 3 1 chunk +2 lines, -0 lines 0 comments Download
M webrtc/examples/objc/AppRTCMobile/ARDAppClient.h View 1 2 3 2 chunks +4 lines, -0 lines 0 comments Download
M webrtc/examples/objc/AppRTCMobile/ARDAppClient.m View 1 2 3 4 5 7 chunks +11 lines, -15 lines 0 comments Download
A webrtc/examples/objc/AppRTCMobile/ARDCaptureController.h View 1 2 3 4 5 1 chunk +24 lines, -0 lines 0 comments Download
A webrtc/examples/objc/AppRTCMobile/ARDCaptureController.m View 1 2 3 4 5 1 chunk +92 lines, -0 lines 0 comments Download
M webrtc/examples/objc/AppRTCMobile/ARDSettingsModel.h View 1 4 chunks +14 lines, -23 lines 0 comments Download
M webrtc/examples/objc/AppRTCMobile/ARDSettingsModel.m View 2 chunks +22 lines, -39 lines 0 comments Download
M webrtc/examples/objc/AppRTCMobile/ARDSettingsModel+Private.h View 1 chunk +0 lines, -2 lines 0 comments Download
M webrtc/examples/objc/AppRTCMobile/ARDSettingsStore.h View 1 chunk +1 line, -11 lines 0 comments Download
M webrtc/examples/objc/AppRTCMobile/ARDSettingsStore.m View 2 chunks +5 lines, -5 lines 0 comments Download
M webrtc/examples/objc/AppRTCMobile/ios/ARDSettingsViewController.m View 1 2 3 4 8 chunks +24 lines, -24 lines 0 comments Download
M webrtc/examples/objc/AppRTCMobile/ios/ARDVideoCallView.m View 1 2 3 1 chunk +0 lines, -1 line 0 comments Download
M webrtc/examples/objc/AppRTCMobile/ios/ARDVideoCallViewController.m View 1 2 3 4 5 6 8 chunks +16 lines, -28 lines 0 comments Download
M webrtc/examples/objc/AppRTCMobile/mac/APPRTCViewController.m View 1 2 3 4 5 5 chunks +13 lines, -1 line 0 comments Download
M webrtc/examples/objc/AppRTCMobile/tests/ARDSettingsModel_xctest.mm View 1 2 3 2 chunks +16 lines, -23 lines 0 comments Download

Messages

Total messages: 57 (46 generated)
sakal
PTAL
3 years, 8 months ago (2017-03-31 13:41:24 UTC) #40
daniela-webrtc
https://codereview.webrtc.org/2778163005/diff/180001/webrtc/examples/objc/AppRTCMobile/ARDAppClient.m File webrtc/examples/objc/AppRTCMobile/ARDAppClient.m (right): https://codereview.webrtc.org/2778163005/diff/180001/webrtc/examples/objc/AppRTCMobile/ARDAppClient.m#newcode689 webrtc/examples/objc/AppRTCMobile/ARDAppClient.m:689: [_delegate appClient:self didReceiveLocalVideoTrack:_localVideoTrack]; Not sure if we should invoke ...
3 years, 8 months ago (2017-04-03 10:16:50 UTC) #41
sakal
https://codereview.webrtc.org/2778163005/diff/180001/webrtc/examples/objc/AppRTCMobile/ARDAppClient.m File webrtc/examples/objc/AppRTCMobile/ARDAppClient.m (right): https://codereview.webrtc.org/2778163005/diff/180001/webrtc/examples/objc/AppRTCMobile/ARDAppClient.m#newcode689 webrtc/examples/objc/AppRTCMobile/ARDAppClient.m:689: [_delegate appClient:self didReceiveLocalVideoTrack:_localVideoTrack]; On 2017/04/03 10:16:50, daniela-webrtc wrote: > ...
3 years, 8 months ago (2017-04-04 09:18:24 UTC) #42
daniela-webrtc
https://codereview.webrtc.org/2778163005/diff/260001/webrtc/examples/objc/AppRTCMobile/ios/ARDVideoCallViewController.m File webrtc/examples/objc/AppRTCMobile/ios/ARDVideoCallViewController.m (right): https://codereview.webrtc.org/2778163005/diff/260001/webrtc/examples/objc/AppRTCMobile/ios/ARDVideoCallViewController.m#newcode106 webrtc/examples/objc/AppRTCMobile/ios/ARDVideoCallViewController.m:106: [_captureController startCapture]; I'd add [_capturerController stopCapture] in [self hangup] ...
3 years, 8 months ago (2017-04-04 12:25:21 UTC) #44
magjed_webrtc
lgtm
3 years, 8 months ago (2017-04-05 12:01:03 UTC) #45
sakal
https://codereview.webrtc.org/2778163005/diff/260001/webrtc/examples/objc/AppRTCMobile/ios/ARDVideoCallViewController.m File webrtc/examples/objc/AppRTCMobile/ios/ARDVideoCallViewController.m (right): https://codereview.webrtc.org/2778163005/diff/260001/webrtc/examples/objc/AppRTCMobile/ios/ARDVideoCallViewController.m#newcode106 webrtc/examples/objc/AppRTCMobile/ios/ARDVideoCallViewController.m:106: [_captureController startCapture]; On 2017/04/04 12:25:21, daniela-webrtc wrote: > I'd ...
3 years, 8 months ago (2017-04-05 12:35:49 UTC) #46
daniela-webrtc
On 2017/04/05 12:35:49, sakal wrote: > https://codereview.webrtc.org/2778163005/diff/260001/webrtc/examples/objc/AppRTCMobile/ios/ARDVideoCallViewController.m > File webrtc/examples/objc/AppRTCMobile/ios/ARDVideoCallViewController.m (right): > > https://codereview.webrtc.org/2778163005/diff/260001/webrtc/examples/objc/AppRTCMobile/ios/ARDVideoCallViewController.m#newcode106 > ...
3 years, 8 months ago (2017-04-05 13:49:25 UTC) #47
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/2778163005/300001
3 years, 8 months ago (2017-04-05 13:52:18 UTC) #50
commit-bot: I haz the power
Try jobs failed on following builders: linux_tsan2 on master.tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/linux_tsan2/builds/21495)
3 years, 8 months ago (2017-04-05 14:11:21 UTC) #52
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/2778163005/300001
3 years, 8 months ago (2017-04-05 19:05:14 UTC) #54
commit-bot: I haz the power
3 years, 8 months ago (2017-04-05 19:17:57 UTC) #57
Message was sent while issue was closed.
Committed patchset #7 (id:300001) as
https://chromium.googlesource.com/external/webrtc/+/c522e758f6a364c23e7232d4f...

Powered by Google App Engine
This is Rietveld 408576698