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

Issue 2705093002: Injectable audio encoders: WebRtcVoiceEngine and company (Closed)

Created:
3 years, 10 months ago by ossu
Modified:
3 years, 8 months ago
CC:
webrtc-reviews_webrtc.org, video-team_agora.io, yujie_mao (webrtc), Andrew MacDonald, zhengzhonghou_agora.io, henrika_webrtc, stefan-webrtc, tlegrand-webrtc, tterriberry_mozilla.com, audio-team_agora.io, hlundin-webrtc, peah-webrtc, mflodman, lliuu
Target Ref:
refs/heads/master
Project:
webrtc
Visibility:
Public.

Description

Injectable audio encoders: WebRtcVoiceEngine and company These are the changes made to WebRtcVoiceEngine and surrounding code. It still contains some things that are inelegant, like how AudioCodecSpec and AudioFormatInfo is ferried around in SendCodecSpec. This should probably be resolved before landing. There are also a few test still that are disabled. They should be removed or fixed, as the case may be. I've put this CL up to get a better overview of the changes made and how reviewable they are. BUG=webrtc:5806 Review-Url: https://codereview.webrtc.org/2705093002 Cr-Commit-Position: refs/heads/master@{#17904} Committed: https://chromium.googlesource.com/external/webrtc/+/20a4b3fb2ae5502488739f852aa73ba6ab26f7ec

Patch Set 1 #

Total comments: 39

Patch Set 2 : Rebased onto different parent CL. #

Total comments: 2

Patch Set 3 : Moved encoder creation up into AudioSendStream, bypassing most of Channel. #

Total comments: 45

Patch Set 4 : audio_send_spec made optional<>, EnableAudioNetworkAdapter now called directly on encoder, VAD supp… #

Total comments: 15

Patch Set 5 : AudioSendStream::Reconfigure() #

Total comments: 21

Patch Set 6 : Rebase (and removed 'virtual' from Channel::ModifyEncoder) #

Total comments: 4

Patch Set 7 : Moved duplicated configuration from constructor to ConfigureStream (previously Reconfigure) #

Total comments: 14

Patch Set 8 : Simplified ConfigureStream, fixed BitrateObserver setup, added ModifyEncoder mock #

Patch Set 9 : Rebase. #

Total comments: 44

Patch Set 10 : Cleaned up WebRtcAudioSendStream a bit. Reinstated check of bitrate in test. Comment cleanups. #

Patch Set 11 : Rebase #

Patch Set 12 : Channel::GetSendCodec asks both its acm and its codec manager. #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+1019 lines, -1547 lines) Patch
M webrtc/audio/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 1 chunk +3 lines, -0 lines 0 comments Download
M webrtc/audio/DEPS View 1 2 3 4 5 1 chunk +12 lines, -0 lines 0 comments Download
M webrtc/audio/audio_send_stream.h View 1 2 3 4 5 6 7 2 chunks +19 lines, -2 lines 0 comments Download
M webrtc/audio/audio_send_stream.cc View 1 2 3 4 5 6 7 8 9 10 8 chunks +296 lines, -159 lines 0 comments Download
M webrtc/audio/audio_send_stream_unittest.cc View 1 2 3 4 5 6 7 8 9 10 23 chunks +150 lines, -83 lines 0 comments Download
M webrtc/audio/test/low_bandwidth_audio_test.cc View 1 2 3 4 5 6 7 8 2 chunks +15 lines, -10 lines 0 comments Download
M webrtc/call/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 2 chunks +2 lines, -0 lines 0 comments Download
M webrtc/call/audio_send_stream.h View 1 2 3 4 3 chunks +16 lines, -11 lines 0 comments Download
M webrtc/call/audio_send_stream.cc View 1 2 3 4 5 6 7 8 9 4 chunks +13 lines, -34 lines 0 comments Download
M webrtc/call/call_perf_tests.cc View 1 2 3 4 5 6 7 8 2 chunks +5 lines, -2 lines 0 comments Download
M webrtc/media/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 1 chunk +2 lines, -0 lines 0 comments Download
M webrtc/media/engine/fakewebrtccall.h View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -0 lines 0 comments Download
M webrtc/media/engine/fakewebrtccall.cc View 1 2 3 4 5 1 chunk +5 lines, -0 lines 0 comments Download
M webrtc/media/engine/webrtcvoiceengine.h View 1 2 3 4 5 6 7 8 4 chunks +6 lines, -5 lines 0 comments Download
M webrtc/media/engine/webrtcvoiceengine.cc View 1 2 3 4 5 6 7 8 9 24 chunks +186 lines, -525 lines 0 comments Download
M webrtc/media/engine/webrtcvoiceengine_unittest.cc View 1 2 3 4 5 6 7 8 9 32 chunks +148 lines, -603 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/mock/mock_audio_encoder.h View 1 2 3 4 5 6 7 8 1 chunk +4 lines, -0 lines 0 comments Download
A webrtc/modules/audio_coding/codecs/mock/mock_audio_encoder_factory.h View 1 2 3 1 chunk +91 lines, -0 lines 0 comments Download
M webrtc/test/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/test/call_test.h View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/test/call_test.cc View 1 2 3 4 5 6 7 8 3 chunks +6 lines, -2 lines 0 comments Download
M webrtc/test/mock_voe_channel_proxy.h View 1 2 3 4 5 6 7 8 3 chunks +3 lines, -13 lines 0 comments Download
M webrtc/video/video_quality_test.cc View 1 2 3 4 5 6 7 8 1 chunk +7 lines, -3 lines 0 comments Download
M webrtc/voice_engine/channel.h View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -0 lines 0 comments Download
M webrtc/voice_engine/channel.cc View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +16 lines, -3 lines 2 comments Download
M webrtc/voice_engine/channel_proxy.h View 1 2 3 4 5 6 7 8 3 chunks +2 lines, -11 lines 0 comments Download
M webrtc/voice_engine/channel_proxy.cc View 1 2 3 4 5 6 7 8 9 10 3 chunks +6 lines, -81 lines 0 comments Download

Depends on Patchset:

Messages

Total messages: 79 (28 generated)
ossu
The second of, what I expect to be, three CLs for Injectable audio encoders. This ...
3 years, 10 months ago (2017-02-21 11:04:15 UTC) #2
kwiberg-webrtc
This CL is very large. Is it reasonable to split it into smaller pieces? https://codereview.webrtc.org/2705093002/diff/1/webrtc/api/DEPS ...
3 years, 10 months ago (2017-02-21 23:35:04 UTC) #3
ossu
https://codereview.webrtc.org/2705093002/diff/1/webrtc/media/engine/webrtcvoiceengine_unittest.cc File webrtc/media/engine/webrtcvoiceengine_unittest.cc (right): https://codereview.webrtc.org/2705093002/diff/1/webrtc/media/engine/webrtcvoiceengine_unittest.cc#newcode1609 webrtc/media/engine/webrtcvoiceengine_unittest.cc:1609: #if 0 I think these should be removed. The ...
3 years, 10 months ago (2017-02-22 10:24:23 UTC) #4
ossu
On 2017/02/21 23:35:04, kwiberg-webrtc wrote: > This CL is very large. Is it reasonable to ...
3 years, 10 months ago (2017-02-22 10:26:44 UTC) #5
kwiberg-webrtc
https://codereview.webrtc.org/2705093002/diff/1/webrtc/media/engine/webrtcvoiceengine_unittest.cc File webrtc/media/engine/webrtcvoiceengine_unittest.cc (right): https://codereview.webrtc.org/2705093002/diff/1/webrtc/media/engine/webrtcvoiceengine_unittest.cc#newcode1609 webrtc/media/engine/webrtcvoiceengine_unittest.cc:1609: #if 0 On 2017/02/22 10:24:23, ossu wrote: > I ...
3 years, 10 months ago (2017-02-22 10:42:06 UTC) #6
ossu
https://codereview.webrtc.org/2705093002/diff/1/webrtc/voice_engine/channel.cc File webrtc/voice_engine/channel.cc (right): https://codereview.webrtc.org/2705093002/diff/1/webrtc/voice_engine/channel.cc#newcode1225 webrtc/voice_engine/channel.cc:1225: strncpy(lies.plname, format.name.c_str(), RTP_PAYLOAD_NAME_SIZE); On 2017/02/22 10:42:06, kwiberg-webrtc wrote: > ...
3 years, 10 months ago (2017-02-22 10:47:07 UTC) #7
ossu
On 2017/02/22 10:26:44, ossu wrote: > On 2017/02/21 23:35:04, kwiberg-webrtc wrote: > > This CL ...
3 years, 10 months ago (2017-02-22 12:52:07 UTC) #8
the sun
https://codereview.webrtc.org/2705093002/diff/20001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2705093002/diff/20001/webrtc/audio/audio_send_stream.cc#newcode279 webrtc/audio/audio_send_stream.cc:279: channel_proxy_->SetSendFormat(send_codec_spec.payload_type, I'd like to get to a point when ...
3 years, 10 months ago (2017-02-22 14:35:01 UTC) #9
ossu
https://codereview.webrtc.org/2705093002/diff/20001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2705093002/diff/20001/webrtc/audio/audio_send_stream.cc#newcode279 webrtc/audio/audio_send_stream.cc:279: channel_proxy_->SetSendFormat(send_codec_spec.payload_type, On 2017/02/22 14:35:01, the sun wrote: > I'd ...
3 years, 10 months ago (2017-02-22 15:03:35 UTC) #10
ossu
I've moved audio encoder creation into AudioSendStream. I think it looks much neater than before. ...
3 years, 10 months ago (2017-02-23 19:41:04 UTC) #11
kwiberg-webrtc
Looks good! https://codereview.webrtc.org/2705093002/diff/40001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2705093002/diff/40001/webrtc/audio/audio_send_stream.cc#newcode167 webrtc/audio/audio_send_stream.cc:167: if (config_.send_codec_spec.format.name != "") { Is this ...
3 years, 9 months ago (2017-03-01 12:26:48 UTC) #12
ossu
https://codereview.webrtc.org/2705093002/diff/40001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2705093002/diff/40001/webrtc/audio/audio_send_stream.cc#newcode298 webrtc/audio/audio_send_stream.cc:298: std::unique_ptr<AudioEncoder>(new AudioEncoderCng(std::move(config))); On 2017/03/01 12:26:47, kwiberg-webrtc wrote: > encoder.reset(...) ...
3 years, 9 months ago (2017-03-02 01:30:28 UTC) #13
kwiberg-webrtc
https://codereview.webrtc.org/2705093002/diff/40001/webrtc/media/engine/webrtcvoiceengine.cc File webrtc/media/engine/webrtcvoiceengine.cc (right): https://codereview.webrtc.org/2705093002/diff/40001/webrtc/media/engine/webrtcvoiceengine.cc#newcode996 webrtc/media/engine/webrtcvoiceengine.cc:996: if (send_codec_spec_.format.name != "") { On 2017/03/02 01:30:28, ossu ...
3 years, 9 months ago (2017-03-02 02:17:56 UTC) #14
the sun
https://codereview.webrtc.org/2705093002/diff/40001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2705093002/diff/40001/webrtc/audio/audio_send_stream.cc#newcode167 webrtc/audio/audio_send_stream.cc:167: if (config_.send_codec_spec.format.name != "") { nit: use spec.format.name https://codereview.webrtc.org/2705093002/diff/40001/webrtc/audio/audio_send_stream.cc#newcode307 ...
3 years, 9 months ago (2017-03-02 20:37:24 UTC) #15
ossu
https://codereview.webrtc.org/2705093002/diff/40001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2705093002/diff/40001/webrtc/audio/audio_send_stream.cc#newcode167 webrtc/audio/audio_send_stream.cc:167: if (config_.send_codec_spec.format.name != "") { On 2017/03/02 20:37:24, the ...
3 years, 9 months ago (2017-03-02 20:43:28 UTC) #16
the sun
A few more comments. Haven't dug through the tricky stuff in WVoE/MC yet. https://codereview.webrtc.org/2705093002/diff/40001/webrtc/audio/audio_send_stream.cc File ...
3 years, 9 months ago (2017-03-16 08:48:20 UTC) #17
ossu
Fixed a bunch of stuff here. Unfortunately, looks like a rebase made it in as ...
3 years, 9 months ago (2017-03-20 18:19:48 UTC) #21
the sun
Mostly nits, and one concern. https://codereview.webrtc.org/2705093002/diff/120001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2705093002/diff/120001/webrtc/audio/audio_send_stream.cc#newcode86 webrtc/audio/audio_send_stream.cc:86: LOG(LS_ERROR) << "Failed to ...
3 years, 9 months ago (2017-03-20 20:17:25 UTC) #22
ossu
https://codereview.webrtc.org/2705093002/diff/120001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2705093002/diff/120001/webrtc/audio/audio_send_stream.cc#newcode86 webrtc/audio/audio_send_stream.cc:86: LOG(LS_ERROR) << "Failed to set up send codec state."; ...
3 years, 9 months ago (2017-03-21 14:53:25 UTC) #23
kwiberg-webrtc
I'm out of things to complain about, I think... https://codereview.webrtc.org/2705093002/diff/120001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2705093002/diff/120001/webrtc/audio/audio_send_stream.cc#newcode293 webrtc/audio/audio_send_stream.cc:293: ...
3 years, 9 months ago (2017-03-22 00:00:45 UTC) #24
ossu
https://codereview.webrtc.org/2705093002/diff/120001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2705093002/diff/120001/webrtc/audio/audio_send_stream.cc#newcode302 webrtc/audio/audio_send_stream.cc:302: channel_proxy_->SetEncoder(spec.payload_type, std::move(encoder)); On 2017/03/21 14:53:25, ossu wrote: > On ...
3 years, 9 months ago (2017-03-22 13:28:32 UTC) #25
the sun
On 2017/03/22 13:28:32, ossu wrote: > https://codereview.webrtc.org/2705093002/diff/120001/webrtc/audio/audio_send_stream.cc > File webrtc/audio/audio_send_stream.cc (right): > > https://codereview.webrtc.org/2705093002/diff/120001/webrtc/audio/audio_send_stream.cc#newcode302 > ...
3 years, 9 months ago (2017-03-22 14:05:01 UTC) #26
ossu
On 2017/03/22 14:05:01, the sun wrote: > On 2017/03/22 13:28:32, ossu wrote: > > > ...
3 years, 9 months ago (2017-03-22 15:31:01 UTC) #27
the sun
On 2017/03/22 15:31:01, ossu wrote: > On 2017/03/22 14:05:01, the sun wrote: > > On ...
3 years, 9 months ago (2017-03-23 12:59:34 UTC) #28
ossu
Made AudioSendStream reconfigurable. Also addressed a few nits and ran git cl format. Next patch ...
3 years, 8 months ago (2017-04-04 15:36:38 UTC) #29
the sun
As usual, a lot to take in. Here are a few initial comments. https://codereview.webrtc.org/2705093002/diff/140001/webrtc/audio/audio_send_stream.cc File ...
3 years, 8 months ago (2017-04-04 23:02:54 UTC) #30
kwiberg-webrtc
https://codereview.webrtc.org/2705093002/diff/140001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2705093002/diff/140001/webrtc/audio/audio_send_stream.cc#newcode43 webrtc/audio/audio_send_stream.cc:43: [&lambda](std::unique_ptr<AudioEncoder>* encoder_ptr) { Or just [&]. That way, you ...
3 years, 8 months ago (2017-04-06 10:13:29 UTC) #31
ossu
https://codereview.webrtc.org/2705093002/diff/140001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2705093002/diff/140001/webrtc/audio/audio_send_stream.cc#newcode48 webrtc/audio/audio_send_stream.cc:48: } On 2017/04/04 23:02:54, the sun wrote: > nit: ...
3 years, 8 months ago (2017-04-06 10:15:21 UTC) #32
ossu
https://codereview.webrtc.org/2705093002/diff/140001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2705093002/diff/140001/webrtc/audio/audio_send_stream.cc#newcode43 webrtc/audio/audio_send_stream.cc:43: [&lambda](std::unique_ptr<AudioEncoder>* encoder_ptr) { On 2017/04/06 10:13:29, kwiberg-webrtc wrote: > ...
3 years, 8 months ago (2017-04-06 11:14:24 UTC) #33
the sun
https://codereview.webrtc.org/2705093002/diff/140001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2705093002/diff/140001/webrtc/audio/audio_send_stream.cc#newcode114 webrtc/audio/audio_send_stream.cc:114: void AudioSendStream::Reconfigure( On 2017/04/06 10:15:21, ossu wrote: > On ...
3 years, 8 months ago (2017-04-06 20:33:47 UTC) #34
the sun
https://codereview.webrtc.org/2705093002/diff/160001/webrtc/media/BUILD.gn File webrtc/media/BUILD.gn (right): https://codereview.webrtc.org/2705093002/diff/160001/webrtc/media/BUILD.gn#newcode46 webrtc/media/BUILD.gn:46: "../modules/audio_coding:audio_encoder_factory_interface", Why isn't there anything else in this deps ...
3 years, 8 months ago (2017-04-07 11:52:58 UTC) #35
ossu
Uploaded a new patch set on Friday, but forgot to send an email about it. ...
3 years, 8 months ago (2017-04-10 10:18:39 UTC) #37
kwiberg-webrtc
lgtm
3 years, 8 months ago (2017-04-12 10:05:04 UTC) #38
the sun
The configure/reconfigure logic makes me worried. I'd prefer to make it simpler, trading away some ...
3 years, 8 months ago (2017-04-18 08:24:12 UTC) #40
ossu
On 2017/04/18 08:24:12, the sun wrote: > The configure/reconfigure logic makes me worried. I'd prefer ...
3 years, 8 months ago (2017-04-20 10:11:17 UTC) #41
the sun
https://codereview.webrtc.org/2705093002/diff/180001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2705093002/diff/180001/webrtc/audio/audio_send_stream.cc#newcode159 webrtc/audio/audio_send_stream.cc:159: if (!is_configured || new_ids.audio_level != old_ids.audio_level) { On 2017/04/20 ...
3 years, 8 months ago (2017-04-20 10:35:45 UTC) #42
ossu
I've made ConfigureStream take a first_time argument, instead of the stream having to keep track ...
3 years, 8 months ago (2017-04-21 16:10:18 UTC) #43
minyue-webrtc
On 2017/04/21 16:10:18, ossu wrote: > I've made ConfigureStream take a first_time argument, instead of ...
3 years, 8 months ago (2017-04-21 17:53:02 UTC) #48
the sun
lg https://codereview.webrtc.org/2705093002/diff/220001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2705093002/diff/220001/webrtc/audio/audio_send_stream.cc#newcode390 webrtc/audio/audio_send_stream.cc:390: // Explicitly hide config_ here, so we don't ...
3 years, 8 months ago (2017-04-24 14:48:50 UTC) #49
ossu
https://codereview.webrtc.org/2705093002/diff/220001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2705093002/diff/220001/webrtc/audio/audio_send_stream.cc#newcode390 webrtc/audio/audio_send_stream.cc:390: // Explicitly hide config_ here, so we don't accidentally ...
3 years, 8 months ago (2017-04-24 16:20:30 UTC) #50
ossu
https://codereview.webrtc.org/2705093002/diff/220001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2705093002/diff/220001/webrtc/audio/audio_send_stream.cc#newcode450 webrtc/audio/audio_send_stream.cc:450: if (!new_config.send_codec_spec) { On 2017/04/24 16:20:30, ossu wrote: > ...
3 years, 8 months ago (2017-04-24 16:22:09 UTC) #51
the sun
https://codereview.webrtc.org/2705093002/diff/220001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2705093002/diff/220001/webrtc/audio/audio_send_stream.cc#newcode462 webrtc/audio/audio_send_stream.cc:462: if (new_target_bitrate_bps && On 2017/04/24 16:20:30, ossu wrote: > ...
3 years, 8 months ago (2017-04-25 11:38:54 UTC) #52
ossu
Went through and annotated the removed tests. Most were moved into codec or factory specific ...
3 years, 8 months ago (2017-04-25 11:58:11 UTC) #53
the sun
On 2017/04/25 11:58:11, ossu wrote: > Went through and annotated the removed tests. Most were ...
3 years, 8 months ago (2017-04-25 12:50:35 UTC) #54
ossu
https://codereview.webrtc.org/2705093002/diff/220001/webrtc/media/engine/webrtcvoiceengine_unittest.cc File webrtc/media/engine/webrtcvoiceengine_unittest.cc (right): https://codereview.webrtc.org/2705093002/diff/220001/webrtc/media/engine/webrtcvoiceengine_unittest.cc#newcode1213 webrtc/media/engine/webrtcvoiceengine_unittest.cc:1213: // EXPECT_EQ(48000, send_codec_spec.codec_inst.rate); On 2017/04/25 11:38:53, the sun wrote: ...
3 years, 8 months ago (2017-04-25 12:58:38 UTC) #55
ossu
https://codereview.webrtc.org/2705093002/diff/220001/webrtc/media/engine/webrtcvoiceengine.cc File webrtc/media/engine/webrtcvoiceengine.cc (right): https://codereview.webrtc.org/2705093002/diff/220001/webrtc/media/engine/webrtcvoiceengine.cc#newcode107 webrtc/media/engine/webrtcvoiceengine.cc:107: // Dumps an AudioCodec in RFC 2327-ish format. On ...
3 years, 8 months ago (2017-04-25 17:10:07 UTC) #61
ossu
kwiberg@ PTAL at the change to channel.cc in patchset 12. It fixes the previously failing ...
3 years, 8 months ago (2017-04-26 15:45:37 UTC) #69
kwiberg-webrtc
lgtm https://codereview.webrtc.org/2705093002/diff/320001/webrtc/voice_engine/channel.cc File webrtc/voice_engine/channel.cc (right): https://codereview.webrtc.org/2705093002/diff/320001/webrtc/voice_engine/channel.cc#newcode1346 webrtc/voice_engine/channel.cc:1346: { On 2017/04/26 15:45:36, ossu wrote: > At ...
3 years, 8 months ago (2017-04-26 20:03:36 UTC) #72
ossu
On 2017/04/26 20:03:36, kwiberg-webrtc wrote: > lgtm > > https://codereview.webrtc.org/2705093002/diff/320001/webrtc/voice_engine/channel.cc > File webrtc/voice_engine/channel.cc (right): > ...
3 years, 8 months ago (2017-04-27 08:53:49 UTC) #73
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/2705093002/320001
3 years, 8 months ago (2017-04-27 09:06:19 UTC) #76
commit-bot: I haz the power
3 years, 8 months ago (2017-04-27 09:09:00 UTC) #79
Message was sent while issue was closed.
Committed patchset #12 (id:320001) as
https://chromium.googlesource.com/external/webrtc/+/20a4b3fb2ae5502488739f852...

Powered by Google App Engine
This is Rietveld 408576698