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

Issue 2503713003: Smooth BWE and pass it to Audio Network Adaptor. (Closed)

Created:
4 years, 1 month ago by michaelt
Modified:
4 years ago
CC:
webrtc-reviews_webrtc.org, henrika_webrtc, Andrew MacDonald, tterriberry_mozilla.com, audio-team_agora.io, hlundin-webrtc, peah-webrtc, minyue-webrtc, the sun
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

Smooth BWE and pass it to Audio Network Adaptor. BUG=webrtc:6443, webrtc:6303 Committed: https://crrev.com/2fedf9c69aa13752312c346e2f99e9df88aa6467 Cr-Commit-Position: refs/heads/master@{#15257}

Patch Set 1 #

Total comments: 8

Patch Set 2 : Response to comments. #

Total comments: 2

Patch Set 3 : Response to comments. #

Total comments: 5

Patch Set 4 : Resonse to comments. #

Patch Set 5 : Rebased #

Patch Set 6 : Rebased #

Unified diffs Side-by-side diffs Delta from patch set Stats (+30 lines, -2 lines) Patch
M webrtc/common_audio/mocks/mock_smoothing_filter.h View 1 2 3 5 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/common_audio/smoothing_filter.h View 1 2 3 4 5 2 chunks +3 lines, -1 line 0 comments Download
M webrtc/common_audio/smoothing_filter.cc View 1 2 3 5 1 chunk +5 lines, -0 lines 0 comments Download
M webrtc/voice_engine/channel.h View 1 2 3 4 2 chunks +3 lines, -0 lines 0 comments Download
M webrtc/voice_engine/channel.cc View 1 2 3 4 5 2 chunks +18 lines, -1 line 0 comments Download

Dependent Patchsets:

Messages

Total messages: 46 (28 generated)
michaelt
Hi, Here a quite simple impl. for the BWE smoothing.
4 years, 1 month ago (2016-11-15 14:10:19 UTC) #5
stefan-webrtc
lgtm from my side, but I think it's mostly up to minyue in this directory.
4 years, 1 month ago (2016-11-15 14:27:04 UTC) #6
minyue-webrtc
https://codereview.webrtc.org/2503713003/diff/1/webrtc/voice_engine/channel.cc File webrtc/voice_engine/channel.cc (right): https://codereview.webrtc.org/2503713003/diff/1/webrtc/voice_engine/channel.cc#newcode1315 webrtc/voice_engine/channel.cc:1315: bitrate_bps_smoothed_.AddSample(bitrate_bps); will it obtain time constant here? if so, ...
4 years, 1 month ago (2016-11-15 14:36:03 UTC) #9
stefan-webrtc
https://codereview.webrtc.org/2503713003/diff/1/webrtc/voice_engine/channel.h File webrtc/voice_engine/channel.h (right): https://codereview.webrtc.org/2503713003/diff/1/webrtc/voice_engine/channel.h#newcode553 webrtc/voice_engine/channel.h:553: SmoothingFilterImpl bitrate_bps_smoothed_; On 2016/11/15 14:36:03, minyue-webrtc wrote: > I ...
4 years, 1 month ago (2016-11-15 14:41:58 UTC) #10
minyue-webrtc
https://codereview.webrtc.org/2503713003/diff/1/webrtc/voice_engine/channel.h File webrtc/voice_engine/channel.h (right): https://codereview.webrtc.org/2503713003/diff/1/webrtc/voice_engine/channel.h#newcode553 webrtc/voice_engine/channel.h:553: SmoothingFilterImpl bitrate_bps_smoothed_; On 2016/11/15 14:41:58, stefan-webrtc (holmer) wrote: > ...
4 years, 1 month ago (2016-11-16 08:56:45 UTC) #11
michaelt
https://codereview.webrtc.org/2503713003/diff/1/webrtc/voice_engine/channel.cc File webrtc/voice_engine/channel.cc (right): https://codereview.webrtc.org/2503713003/diff/1/webrtc/voice_engine/channel.cc#newcode1315 webrtc/voice_engine/channel.cc:1315: bitrate_bps_smoothed_.AddSample(bitrate_bps); Yes. Not really but we have to set ...
4 years, 1 month ago (2016-11-16 09:50:25 UTC) #13
minyue-webrtc
https://codereview.webrtc.org/2503713003/diff/20001/webrtc/voice_engine/channel.h File webrtc/voice_engine/channel.h (right): https://codereview.webrtc.org/2503713003/diff/20001/webrtc/voice_engine/channel.h#newcode551 webrtc/voice_engine/channel.h:551: SmoothingFilterImpl bitrate_bps_smoothed_; better bitrate_bps_smoothed_ -> bitrate_smoother_
4 years, 1 month ago (2016-11-17 12:04:02 UTC) #14
michaelt
https://codereview.webrtc.org/2503713003/diff/20001/webrtc/voice_engine/channel.h File webrtc/voice_engine/channel.h (right): https://codereview.webrtc.org/2503713003/diff/20001/webrtc/voice_engine/channel.h#newcode551 webrtc/voice_engine/channel.h:551: SmoothingFilterImpl bitrate_bps_smoothed_; On 2016/11/17 12:04:02, minyue-webrtc wrote: > better ...
4 years, 1 month ago (2016-11-21 08:57:32 UTC) #16
minyue-webrtc
https://codereview.webrtc.org/2503713003/diff/60001/webrtc/base/smoothing_filter.cc File webrtc/base/smoothing_filter.cc (right): https://codereview.webrtc.org/2503713003/diff/60001/webrtc/base/smoothing_filter.cc#newcode64 webrtc/base/smoothing_filter.cc:64: filter_.UpdateBase(exp(1.0f / time_constant_ms_)); is this needed. Don't we always ...
4 years, 1 month ago (2016-11-21 09:18:25 UTC) #17
michaelt
https://codereview.webrtc.org/2503713003/diff/60001/webrtc/base/smoothing_filter.cc File webrtc/base/smoothing_filter.cc (right): https://codereview.webrtc.org/2503713003/diff/60001/webrtc/base/smoothing_filter.cc#newcode64 webrtc/base/smoothing_filter.cc:64: filter_.UpdateBase(exp(1.0f / time_constant_ms_)); Just in the case the filter ...
4 years, 1 month ago (2016-11-21 09:48:32 UTC) #18
minyue-webrtc
lgtm https://codereview.webrtc.org/2503713003/diff/60001/webrtc/base/smoothing_filter.cc File webrtc/base/smoothing_filter.cc (right): https://codereview.webrtc.org/2503713003/diff/60001/webrtc/base/smoothing_filter.cc#newcode64 webrtc/base/smoothing_filter.cc:64: filter_.UpdateBase(exp(1.0f / time_constant_ms_)); On 2016/11/21 09:48:32, michaelt wrote: ...
4 years, 1 month ago (2016-11-21 10:59:01 UTC) #19
minyue-webrtc
but you need to wait until the common_audio/smoothing_filter is landed.
4 years, 1 month ago (2016-11-21 10:59:57 UTC) #20
michaelt
Yes
4 years, 1 month ago (2016-11-21 11:00:17 UTC) #21
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/2503713003/80001
4 years, 1 month ago (2016-11-21 11:00:51 UTC) #24
commit-bot: I haz the power
Try jobs failed on following builders: ios32_sim_dbg on master.tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/ios32_sim_dbg/builds/12662) ios64_sim_dbg on master.tryserver.webrtc (JOB_FAILED, ...
4 years, 1 month ago (2016-11-21 11:01:43 UTC) #26
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/2503713003/120001
4 years ago (2016-11-28 10:14:06 UTC) #41
commit-bot: I haz the power
Committed patchset #6 (id:120001)
4 years ago (2016-11-28 10:34:24 UTC) #44
commit-bot: I haz the power
4 years ago (2016-11-28 10:34:27 UTC) #46
Message was sent while issue was closed.
Patchset 6 (id:??) landed as
https://crrev.com/2fedf9c69aa13752312c346e2f99e9df88aa6467
Cr-Commit-Position: refs/heads/master@{#15257}

Powered by Google App Engine
This is Rietveld 408576698