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

Issue 2546493002: Update smoothed bitrate. (Closed)

Created:
4 years ago by michaelt
Modified:
3 years, 11 months ago
CC:
webrtc-reviews_webrtc.org, Andrew MacDonald, henrika_webrtc, tlegrand-webrtc, tterriberry_mozilla.com, audio-team_agora.io, hlundin-webrtc, peah-webrtc
Target Ref:
refs/heads/master
Project:
webrtc
Visibility:
Public.

Description

Update smoothed bitrate. BUG=webrtc:6443 Review-Url: https://codereview.webrtc.org/2546493002 Cr-Commit-Position: refs/heads/master@{#16036} Committed: https://chromium.googlesource.com/external/webrtc/+/566d820e004700df9a152602cbda44fac839d7e7

Patch Set 1 #

Total comments: 6

Patch Set 2 : Fix thread safety problem and changed smoothing filter. #

Total comments: 1

Patch Set 3 : Removed smoothing filter changes from CL. #

Patch Set 4 : Fix for unittest. #

Patch Set 5 : Check if AdaptCodec runs on worker queue. #

Total comments: 8

Patch Set 6 : Sync worker queue for unittests. #

Patch Set 7 : Response to comments. #

Total comments: 16

Patch Set 8 : Rebased #

Patch Set 9 : Response to comments #

Total comments: 2

Patch Set 10 : Response to comments. #

Total comments: 6

Patch Set 11 : Response to comments #

Total comments: 4

Patch Set 12 : Response to comments #

Total comments: 4

Patch Set 13 : Responde to comments. #

Patch Set 14 : Changed cl according to offline discussions. #

Total comments: 20

Patch Set 15 : Rename MayUpdateUplinkBandwidth to MaybeUpdateUplinkBandwidth #

Patch Set 16 : Response to comments. #

Patch Set 17 : Deprecated OnReceivedTargetAudioBitrate. #

Total comments: 8

Patch Set 18 : Respond to comments #

Patch Set 19 : Fix opus dependency #

Patch Set 20 : Fix android build error #

Total comments: 2

Patch Set 21 : Response to comments. #

Patch Set 22 : fix clock set to nullptr by accident. #

Patch Set 23 : Add metrics::Enable() to unittest main to activate metrics. #

Patch Set 24 : Fix linking error #

Patch Set 25 : Response to comments #

Patch Set 26 : Rebased #

Patch Set 27 : Fix for windwos build #

Patch Set 28 : Renamed OnReceivedTargetAudioBitrate to OnReceivedUplinkBandwidth #

Unified diffs Side-by-side diffs Delta from patch set Stats (+199 lines, -108 lines) Patch
M webrtc/base/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 7 chunks +25 lines, -6 lines 0 comments Download
M webrtc/media/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +3 lines, -1 line 0 comments Download
M webrtc/modules/audio_coding/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/modules/audio_coding/acm2/audio_coding_module.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 1 chunk +2 lines, -1 line 0 comments Download
M webrtc/modules/audio_coding/codecs/audio_encoder.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 2 chunks +8 lines, -4 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/audio_encoder.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 1 chunk +7 lines, -3 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 1 chunk +5 lines, -3 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 1 chunk +3 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/mock/mock_audio_encoder.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 1 chunk +3 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 6 chunks +12 lines, -4 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 6 chunks +42 lines, -13 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 11 chunks +68 lines, -33 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/red/audio_encoder_copy_red.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/modules/audio_coding/codecs/red/audio_encoder_copy_red.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 1 chunk +5 lines, -3 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/red/audio_encoder_copy_red_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 1 chunk +3 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/audio_decoder_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 1 chunk +1 line, -1 line 0 comments Download
M webrtc/stats/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +1 line, -1 line 0 comments Download
M webrtc/voice_engine/channel.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 2 chunks +0 lines, -3 lines 0 comments Download
M webrtc/voice_engine/channel.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 2 chunks +3 lines, -23 lines 0 comments Download

Messages

Total messages: 186 (139 generated)
minyue-webrtc
Good work! this looks very promising. But my preference would be 1. Call a method ...
4 years ago (2016-12-01 09:02:36 UTC) #2
the sun
https://codereview.webrtc.org/2546493002/diff/1/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2546493002/diff/1/webrtc/audio/audio_send_stream.cc#newcode230 webrtc/audio/audio_send_stream.cc:230: uint32_t AudioSendStream::OnBitrateUpdated(uint32_t bitrate_bps, If we can't RTC_DCHECK(thread_checker_.CalledOnValidThread()); please document ...
4 years ago (2016-12-01 09:16:56 UTC) #4
minyue-webrtc
https://codereview.webrtc.org/2546493002/diff/20001/webrtc/common_audio/smoothing_filter.cc File webrtc/common_audio/smoothing_filter.cc (right): https://codereview.webrtc.org/2546493002/diff/20001/webrtc/common_audio/smoothing_filter.cc#newcode62 webrtc/common_audio/smoothing_filter.cc:62: return rtc::Optional<float>( I like the idea of making the ...
4 years ago (2016-12-01 11:32:50 UTC) #5
michaelt
https://codereview.webrtc.org/2546493002/diff/1/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2546493002/diff/1/webrtc/audio/audio_send_stream.cc#newcode230 webrtc/audio/audio_send_stream.cc:230: uint32_t AudioSendStream::OnBitrateUpdated(uint32_t bitrate_bps, OnBitrateUpdated is called on the worker ...
4 years ago (2016-12-05 15:08:49 UTC) #41
minyue-webrtc
https://codereview.webrtc.org/2546493002/diff/140001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2546493002/diff/140001/webrtc/audio/audio_send_stream.cc#newcode417 webrtc/audio/audio_send_stream.cc:417: constexpr uint32_t kAdaptCodecIntervalMs = 200; any reason for this ...
4 years ago (2016-12-07 16:44:44 UTC) #44
michaelt
https://codereview.webrtc.org/2546493002/diff/140001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2546493002/diff/140001/webrtc/audio/audio_send_stream.cc#newcode417 webrtc/audio/audio_send_stream.cc:417: constexpr uint32_t kAdaptCodecIntervalMs = 200; No this was just ...
4 years ago (2016-12-08 14:06:40 UTC) #45
stefan-webrtc
https://codereview.webrtc.org/2546493002/diff/180001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2546493002/diff/180001/webrtc/audio/audio_send_stream.cc#newcode53 webrtc/audio/audio_send_stream.cc:53: if (send_stream_) { Are we not able to DCHECK ...
4 years ago (2016-12-13 12:29:55 UTC) #46
the sun
https://codereview.webrtc.org/2546493002/diff/180001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2546493002/diff/180001/webrtc/audio/audio_send_stream.cc#newcode420 webrtc/audio/audio_send_stream.cc:420: std::unique_ptr<rtc::QueuedTask>(new AdaptCodecTask(weak_ptr_)), Can you just post a lambda here, ...
4 years ago (2016-12-13 16:43:25 UTC) #47
michaelt
https://codereview.webrtc.org/2546493002/diff/180001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2546493002/diff/180001/webrtc/audio/audio_send_stream.cc#newcode53 webrtc/audio/audio_send_stream.cc:53: if (send_stream_) { Yes and that is as well ...
4 years ago (2016-12-13 17:01:26 UTC) #48
minyue-webrtc
lgtm
4 years ago (2016-12-13 17:15:55 UTC) #49
minyue-webrtc
adding one comment https://codereview.webrtc.org/2546493002/diff/220001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2546493002/diff/220001/webrtc/audio/audio_send_stream.cc#newcode422 webrtc/audio/audio_send_stream.cc:422: constexpr uint32_t kAdaptCodecIntervalMs = 200; oh, ...
4 years ago (2016-12-13 17:21:27 UTC) #50
michaelt
https://codereview.webrtc.org/2546493002/diff/220001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2546493002/diff/220001/webrtc/audio/audio_send_stream.cc#newcode422 webrtc/audio/audio_send_stream.cc:422: constexpr uint32_t kAdaptCodecIntervalMs = 200; On 2016/12/13 17:21:27, minyue-webrtc ...
4 years ago (2016-12-14 11:31:22 UTC) #51
minyue-webrtc
lgtm % nit https://codereview.webrtc.org/2546493002/diff/240001/webrtc/call/audio_send_stream.h File webrtc/call/audio_send_stream.h (right): https://codereview.webrtc.org/2546493002/diff/240001/webrtc/call/audio_send_stream.h#newcode103 webrtc/call/audio_send_stream.h:103: // Interval in which adapt codec ...
4 years ago (2016-12-14 11:36:37 UTC) #52
stefan-webrtc
https://codereview.webrtc.org/2546493002/diff/240001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2546493002/diff/240001/webrtc/audio/audio_send_stream.cc#newcode128 webrtc/audio/audio_send_stream.cc:128: weak_ptr_ = weak_ptr_factory_->GetWeakPtr(); We should give weak_ptr_ a more ...
4 years ago (2016-12-14 11:58:34 UTC) #53
michaelt
https://codereview.webrtc.org/2546493002/diff/240001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2546493002/diff/240001/webrtc/audio/audio_send_stream.cc#newcode128 webrtc/audio/audio_send_stream.cc:128: weak_ptr_ = weak_ptr_factory_->GetWeakPtr(); On 2016/12/14 11:58:33, stefan-webrtc (holmer) wrote: ...
4 years ago (2016-12-14 13:45:51 UTC) #54
stefan-webrtc
lgtm https://codereview.webrtc.org/2546493002/diff/240001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2546493002/diff/240001/webrtc/audio/audio_send_stream.cc#newcode273 webrtc/audio/audio_send_stream.cc:273: worker_queue_->PostTask([this]() { AdaptCodec(); }); On 2016/12/14 13:45:51, michaelt ...
4 years ago (2016-12-14 16:08:02 UTC) #56
stefan-webrtc
lgtm
4 years ago (2016-12-14 16:08:03 UTC) #57
the sun
https://codereview.webrtc.org/2546493002/diff/180001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2546493002/diff/180001/webrtc/audio/audio_send_stream.cc#newcode270 webrtc/audio/audio_send_stream.cc:270: worker_queue_->PostTask([this]() { AdaptCodec(); }); When is OnBitrateUpdated() called? IIUC ...
4 years ago (2016-12-15 14:58:38 UTC) #58
the sun
On 2016/12/15 14:58:38, the sun wrote: > https://codereview.webrtc.org/2546493002/diff/180001/webrtc/audio/audio_send_stream.cc > File webrtc/audio/audio_send_stream.cc (right): > > https://codereview.webrtc.org/2546493002/diff/180001/webrtc/audio/audio_send_stream.cc#newcode270 ...
4 years ago (2016-12-15 14:59:21 UTC) #60
ossu
Why is bitrate smoothing put in AudioSendStream? It seems to me either something only ANA ...
4 years ago (2016-12-19 14:09:27 UTC) #61
stefan-webrtc
On 2016/12/19 14:09:27, ossu wrote: > Why is bitrate smoothing put in AudioSendStream? It seems ...
4 years ago (2016-12-19 14:21:48 UTC) #62
michaelt
https://codereview.webrtc.org/2546493002/diff/180001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2546493002/diff/180001/webrtc/audio/audio_send_stream.cc#newcode270 webrtc/audio/audio_send_stream.cc:270: worker_queue_->PostTask([this]() { AdaptCodec(); }); I removed the conditions here ...
4 years ago (2016-12-19 14:43:28 UTC) #63
michaelt
Calling adapt encode in each encode would be possible as well. But it think we ...
4 years ago (2016-12-19 14:47:23 UTC) #64
ossu
On 2016/12/19 14:21:48, stefan-webrtc (holmer) wrote: > As you noted, there are two options: > ...
4 years ago (2016-12-20 13:58:09 UTC) #69
stefan-webrtc
On 2016/12/20 13:58:09, ossu wrote: > On 2016/12/19 14:21:48, stefan-webrtc (holmer) wrote: > > As ...
4 years ago (2016-12-20 14:25:08 UTC) #70
michaelt
https://codereview.webrtc.org/2546493002/diff/280001/webrtc/audio/audio_send_stream.cc File webrtc/audio/audio_send_stream.cc (right): https://codereview.webrtc.org/2546493002/diff/280001/webrtc/audio/audio_send_stream.cc#newcode55 webrtc/audio/audio_send_stream.cc:55: if (send_stream_) { You are right. Done I think ...
4 years ago (2016-12-20 15:13:04 UTC) #71
minyue-webrtc
On 2016/12/20 15:13:04, michaelt wrote: > https://codereview.webrtc.org/2546493002/diff/280001/webrtc/audio/audio_send_stream.cc > File webrtc/audio/audio_send_stream.cc (right): > > https://codereview.webrtc.org/2546493002/diff/280001/webrtc/audio/audio_send_stream.cc#newcode55 > ...
4 years ago (2016-12-21 09:22:15 UTC) #72
michaelt
The patch change the cl complete. It should be simpler to understand now.
4 years ago (2016-12-22 10:11:41 UTC) #73
ossu
lgtm with a tiny nit (the May -> Maybe thing). https://codereview.webrtc.org/2546493002/diff/320001/webrtc/modules/audio_coding/codecs/audio_encoder.h File webrtc/modules/audio_coding/codecs/audio_encoder.h (right): https://codereview.webrtc.org/2546493002/diff/320001/webrtc/modules/audio_coding/codecs/audio_encoder.h#newcode177 ...
4 years ago (2016-12-22 14:01:15 UTC) #74
minyue-webrtc
nice work. see some nits https://codereview.webrtc.org/2546493002/diff/320001/webrtc/modules/audio_coding/codecs/audio_encoder.h File webrtc/modules/audio_coding/codecs/audio_encoder.h (right): https://codereview.webrtc.org/2546493002/diff/320001/webrtc/modules/audio_coding/codecs/audio_encoder.h#newcode177 webrtc/modules/audio_coding/codecs/audio_encoder.h:177: virtual void OnReceivedTargetAudioBitrate( RTC_DEPRECATED ...
4 years ago (2016-12-22 14:51:27 UTC) #75
michaelt
https://codereview.webrtc.org/2546493002/diff/320001/webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.cc File webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.cc (right): https://codereview.webrtc.org/2546493002/diff/320001/webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.cc#newcode540 webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.cc:540: void AudioEncoderOpus::MayUpdateUplinkBandwidth() { On 2016/12/22 14:01:15, ossu wrote: > ...
4 years ago (2016-12-22 14:56:10 UTC) #76
michaelt
https://codereview.webrtc.org/2546493002/diff/320001/webrtc/modules/audio_coding/codecs/audio_encoder.h File webrtc/modules/audio_coding/codecs/audio_encoder.h (right): https://codereview.webrtc.org/2546493002/diff/320001/webrtc/modules/audio_coding/codecs/audio_encoder.h#newcode177 webrtc/modules/audio_coding/codecs/audio_encoder.h:177: virtual void OnReceivedTargetAudioBitrate( Do you think this is necessary, ...
4 years ago (2016-12-22 15:10:10 UTC) #77
minyue-webrtc
https://codereview.webrtc.org/2546493002/diff/320001/webrtc/modules/audio_coding/codecs/audio_encoder.h File webrtc/modules/audio_coding/codecs/audio_encoder.h (right): https://codereview.webrtc.org/2546493002/diff/320001/webrtc/modules/audio_coding/codecs/audio_encoder.h#newcode177 webrtc/modules/audio_coding/codecs/audio_encoder.h:177: virtual void OnReceivedTargetAudioBitrate( On 2016/12/22 15:10:10, michaelt wrote: > ...
4 years ago (2016-12-22 15:12:02 UTC) #78
michaelt
https://codereview.webrtc.org/2546493002/diff/320001/webrtc/modules/audio_coding/codecs/audio_encoder.h File webrtc/modules/audio_coding/codecs/audio_encoder.h (right): https://codereview.webrtc.org/2546493002/diff/320001/webrtc/modules/audio_coding/codecs/audio_encoder.h#newcode177 webrtc/modules/audio_coding/codecs/audio_encoder.h:177: virtual void OnReceivedTargetAudioBitrate( On 2016/12/22 15:12:02, minyue-webrtc wrote: > ...
4 years ago (2016-12-22 15:35:25 UTC) #79
minyue-webrtc
suggest rewording a comment. https://codereview.webrtc.org/2546493002/diff/380001/webrtc/modules/audio_coding/codecs/audio_encoder.h File webrtc/modules/audio_coding/codecs/audio_encoder.h (right): https://codereview.webrtc.org/2546493002/diff/380001/webrtc/modules/audio_coding/codecs/audio_encoder.h#newcode179 webrtc/modules/audio_coding/codecs/audio_encoder.h:179: // Provides target audio bitrate ...
3 years, 12 months ago (2016-12-27 14:48:58 UTC) #80
minyue-webrtc
Hi Michael, I cannot help you landing it since owner of the CL (you) can ...
3 years, 12 months ago (2016-12-28 08:46:07 UTC) #85
michaelt
https://codereview.webrtc.org/2546493002/diff/380001/webrtc/modules/audio_coding/codecs/audio_encoder.h File webrtc/modules/audio_coding/codecs/audio_encoder.h (left): https://codereview.webrtc.org/2546493002/diff/380001/webrtc/modules/audio_coding/codecs/audio_encoder.h#oldcode171 webrtc/modules/audio_coding/codecs/audio_encoder.h:171: virtual void OnReceivedUplinkBandwidth(int uplink_bandwidth_bps); On 2016/12/28 08:46:07, minyue-webrtc wrote: ...
3 years, 11 months ago (2017-01-09 09:24:05 UTC) #86
the sun
lgtm % comment https://codereview.webrtc.org/2546493002/diff/440001/webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.h File webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.h (right): https://codereview.webrtc.org/2546493002/diff/440001/webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.h#newcode66 webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.h:66: const Clock* clock = Clock::GetRealTimeClock(); The ...
3 years, 11 months ago (2017-01-09 12:56:52 UTC) #99
michaelt
https://codereview.webrtc.org/2546493002/diff/440001/webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.h File webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.h (right): https://codereview.webrtc.org/2546493002/diff/440001/webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.h#newcode66 webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.h:66: const Clock* clock = Clock::GetRealTimeClock(); I changed the direct ...
3 years, 11 months ago (2017-01-09 15:09:26 UTC) #100
hlundin-webrtc
nisse@, please take a look at the deps problems/solutions that Michael ran into. You can ...
3 years, 11 months ago (2017-01-10 09:18:08 UTC) #116
kjellander_webrtc
On 2017/01/10 09:18:08, hlundin-webrtc wrote: > nisse@, please take a look at the deps problems/solutions ...
3 years, 11 months ago (2017-01-10 12:31:45 UTC) #119
michaelt
I could create a build target for fakeclock in base. An link modules unittest to ...
3 years, 11 months ago (2017-01-10 12:36:45 UTC) #120
nisse-webrtc
On 2017/01/10 12:36:45, michaelt wrote: > I could create a build target for fakeclock in ...
3 years, 11 months ago (2017-01-10 13:18:30 UTC) #121
michaelt
Ok then i will create a target "rtc_base_tests_main" and move "base/unittest_main.cc" to it. Sounds ok ...
3 years, 11 months ago (2017-01-10 13:25:58 UTC) #122
michaelt
On 2017/01/10 13:25:58, michaelt wrote: > Ok then i will create a target "rtc_base_tests_main" and ...
3 years, 11 months ago (2017-01-10 16:27:15 UTC) #123
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/2546493002/770001
3 years, 11 months ago (2017-01-12 18:15:03 UTC) #183
commit-bot: I haz the power
3 years, 11 months ago (2017-01-12 18:17:55 UTC) #186
Message was sent while issue was closed.
Committed patchset #28 (id:770001) as
https://chromium.googlesource.com/external/webrtc/+/566d820e004700df9a152602c...

Powered by Google App Engine
This is Rietveld 408576698