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

Issue 2539213003: Support external audio mixer. (Closed)

Created:
4 years ago by GeorgeZ
Modified:
4 years ago
CC:
webrtc-reviews_webrtc.org, tterriberry_mozilla.com, tlegrand-webrtc
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

Support external audio mixer in webrtc. An external audio mixer will be passed from PeerConnectionFactory to AudioTransportProxy. BUG=webrtc:6457 Committed: https://crrev.com/f6bcac59e88c3be5ffd73bbb1098f2d82ee316a1 Cr-Commit-Position: refs/heads/master@{#15556}

Patch Set 1 #

Total comments: 15

Patch Set 2 : Review response #

Total comments: 14

Patch Set 3 : Review response 2 #

Patch Set 4 : remove GetRemoteAudioTrackSsrcs #

Total comments: 3

Patch Set 5 : try to fix OSX build issue #

Unified diffs Side-by-side diffs Delta from patch set Stats (+121 lines, -65 lines) Patch
M webrtc/api/peerconnectionfactory.h View 1 2 chunks +5 lines, -1 line 0 comments Download
M webrtc/api/peerconnectionfactory.cc View 1 2 5 chunks +36 lines, -27 lines 0 comments Download
M webrtc/api/peerconnectioninterface.h View 1 2 3 2 chunks +15 lines, -0 lines 0 comments Download
M webrtc/audio/audio_receive_stream.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/media/base/fakemediaengine.h View 2 chunks +5 lines, -4 lines 0 comments Download
M webrtc/media/base/mediaengine.h View 1 2 chunks +6 lines, -5 lines 0 comments Download
M webrtc/media/engine/nullwebrtcvideoengine_unittest.cc View 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/media/engine/webrtcmediaengine.h View 1 2 3 4 2 chunks +3 lines, -1 line 0 comments Download
M webrtc/media/engine/webrtcmediaengine.cc View 1 2 3 4 4 chunks +20 lines, -11 lines 0 comments Download
M webrtc/media/engine/webrtcmediaengine_unittest.cc View 1 2 3 4 1 chunk +2 lines, -1 line 0 comments Download
M webrtc/media/engine/webrtcvoiceengine.h View 1 2 chunks +4 lines, -1 line 0 comments Download
M webrtc/media/engine/webrtcvoiceengine.cc View 1 2 2 chunks +14 lines, -5 lines 0 comments Download
M webrtc/media/engine/webrtcvoiceengine_unittest.cc View 7 chunks +7 lines, -7 lines 0 comments Download

Messages

Total messages: 40 (20 generated)
GeorgeZ
Hi Solenberg, Would you please take a look of this CL? Thanks, https://codereview.webrtc.org/2539213003/diff/20001/webrtc/api/BUILD.gn File webrtc/api/BUILD.gn ...
4 years ago (2016-12-01 17:36:32 UTC) #4
aleloi
Hi GeorgeZ@! This CL looks very clean and short. I've only noticed minor things. Could ...
4 years ago (2016-12-05 14:03:09 UTC) #6
GeorgeZ
Alex, Thanks for your review. Here is the response of your comments. https://codereview.webrtc.org/2539213003/diff/20001/webrtc/api/BUILD.gn File webrtc/api/BUILD.gn ...
4 years ago (2016-12-05 17:56:19 UTC) #7
GeorgeZ
Hi Alex, Please see my response below On 2016/12/05 14:03:09, aleloi wrote: > Hi GeorgeZ@! ...
4 years ago (2016-12-05 18:11:36 UTC) #8
aleloi
Yes, please add webrtc/api:mixer_api to //webrtc/api:libjingle_peerconnection, //webrtc/media:rtc_media and //webrtc/media:rtc_media_base if it's not already there. There ...
4 years ago (2016-12-05 18:32:35 UTC) #9
GeorgeZ
Hi Fredrik. Would you please take a look of this CL. Thanks,
4 years ago (2016-12-06 16:25:54 UTC) #11
the sun
https://codereview.webrtc.org/2539213003/diff/60001/webrtc/api/peerconnection.cc File webrtc/api/peerconnection.cc (right): https://codereview.webrtc.org/2539213003/diff/60001/webrtc/api/peerconnection.cc#newcode1356 webrtc/api/peerconnection.cc:1356: std::vector<uint32_t> PeerConnection::GetRemoteAudioTrackSsrcs() { Is this utility really needed? Can ...
4 years ago (2016-12-07 15:56:08 UTC) #12
GeorgeZ
Hi Fredrik, A patch has uploaded to address your comments. Thanks https://codereview.webrtc.org/2539213003/diff/60001/webrtc/api/peerconnection.cc File webrtc/api/peerconnection.cc (right): ...
4 years ago (2016-12-07 18:28:17 UTC) #14
the sun
LG - just let's sort out whether remote audio ssrcs can be fetched using existing ...
4 years ago (2016-12-08 07:52:29 UTC) #15
GeorgeZ
Hi Fredrik, id() for MediaStreamTrackInterface is a string (ssrc is uint32_t) and is set by ...
4 years ago (2016-12-08 16:45:18 UTC) #16
the sun
Ah yes, I thought I remembered that the label/id was actually populated with the ssrc, ...
4 years ago (2016-12-08 20:16:35 UTC) #17
the sun
Looping in Taylor for advice on how to get SSRC of remote audio streams. I'd ...
4 years ago (2016-12-09 07:36:58 UTC) #19
GeorgeZ
Hi Fredrik, I removed the GetRemoteAudioTrackSSrcs() from PeerConnrction and tested with Taylor's CL https://codereview.webrtc.org/2568553002/. I ...
4 years ago (2016-12-12 17:13:33 UTC) #20
aleloi
LGTM! Did you look into adding a test? I agree with you that it's not ...
4 years ago (2016-12-12 17:23:54 UTC) #21
the sun
LGTM Great work, thanks for you patience! I have left one comment for you to ...
4 years ago (2016-12-12 20:50:05 UTC) #22
GeorgeZ
Fredrik, Thanks for review. https://codereview.webrtc.org/2539213003/diff/120001/webrtc/media/engine/webrtcmediaengine.h File webrtc/media/engine/webrtcmediaengine.h (right): https://codereview.webrtc.org/2539213003/diff/120001/webrtc/media/engine/webrtcmediaengine.h#newcode41 webrtc/media/engine/webrtcmediaengine.h:41: rtc::scoped_refptr<webrtc::AudioMixer> audio_mixer); On 2016/12/12 20:50:05, ...
4 years ago (2016-12-13 00:16:42 UTC) #31
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/2539213003/140001
4 years ago (2016-12-13 00:19:48 UTC) #34
commit-bot: I haz the power
Committed patchset #5 (id:140001)
4 years ago (2016-12-13 00:25:11 UTC) #37
commit-bot: I haz the power
Patchset 5 (id:??) landed as https://crrev.com/f6bcac59e88c3be5ffd73bbb1098f2d82ee316a1 Cr-Commit-Position: refs/heads/master@{#15556}
4 years ago (2016-12-13 00:25:24 UTC) #39
GeorgeZ
4 years ago (2016-12-13 01:03:18 UTC) #40
Message was sent while issue was closed.
A revert of this CL (patchset #5 id:140001) has been created in
https://codereview.webrtc.org/2562333003/ by gyzhou@chromium.org.

The reason for reverting is: A interface change broke some downstream code in
google3..

Powered by Google App Engine
This is Rietveld 408576698