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

Issue 2089183002: Don't recreate the speech encoder if we don't have to (Closed)

Created:
4 years, 6 months ago by kwiberg-webrtc
Modified:
4 years, 6 months ago
Reviewers:
*hlundin-webrtc, ossu
CC:
webrtc-reviews_webrtc.org, tlegrand-webrtc, tterriberry_mozilla.com, audio-team_agora.io, hlundin-webrtc, peah-webrtc
Base URL:
https://chromium.googlesource.com/external/webrtc.git@master
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

Don't recreate the speech encoder if we don't have to If the specification for the speech encoder hasn't changed, we should reuse it instead of recreating it. Otherwise, we lose its state. (This problem was originally discovered because AudioEncoderOpus instances would forget that they were supposed to be using DTX.) BUG=webrtc:6020, chromium:622647 Committed: https://crrev.com/3f81fcd2e845505c2873c7ec2edade910213596b Cr-Commit-Position: refs/heads/master@{#13273}

Patch Set 1 #

Total comments: 10
Unified diffs Side-by-side diffs Delta from patch set Stats (+93 lines, -21 lines) Patch
M webrtc/base/array_view.h View 2 chunks +2 lines, -0 lines 0 comments Download
M webrtc/modules/audio_coding/acm2/codec_manager.h View 1 chunk +2 lines, -20 lines 0 comments Download
M webrtc/modules/audio_coding/acm2/codec_manager.cc View 2 chunks +63 lines, -1 line 9 comments Download
M webrtc/modules/audio_coding/codecs/audio_encoder.h View 1 chunk +9 lines, -0 lines 1 comment Download
M webrtc/modules/audio_coding/codecs/audio_encoder.cc View 1 chunk +3 lines, -0 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.h View 1 chunk +2 lines, -0 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.cc View 1 chunk +5 lines, -0 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/red/audio_encoder_copy_red.h View 1 chunk +2 lines, -0 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/red/audio_encoder_copy_red.cc View 1 chunk +5 lines, -0 lines 0 comments Download

Messages

Total messages: 17 (6 generated)
kwiberg-webrtc
This CL fixes bug 6020. Reaching in and taking back the speech encoder from the ...
4 years, 6 months ago (2016-06-22 13:46:12 UTC) #3
minyue-webrtc
On 2016/06/22 13:46:12, kwiberg-webrtc wrote: > This CL fixes bug 6020. Reaching in and taking ...
4 years, 6 months ago (2016-06-22 15:47:34 UTC) #4
kwiberg-webrtc
On 2016/06/22 15:47:34, minyue-webrtc wrote: > On 2016/06/22 13:46:12, kwiberg-webrtc wrote: > > This CL ...
4 years, 6 months ago (2016-06-22 15:53:16 UTC) #5
hlundin-webrtc
LG. One question, though, repeated twice. https://codereview.webrtc.org/2089183002/diff/1/webrtc/modules/audio_coding/acm2/codec_manager.cc File webrtc/modules/audio_coding/acm2/codec_manager.cc (right): https://codereview.webrtc.org/2089183002/diff/1/webrtc/modules/audio_coding/acm2/codec_manager.cc#newcode242 webrtc/modules/audio_coding/acm2/codec_manager.cc:242: return true; Should ...
4 years, 6 months ago (2016-06-23 07:46:37 UTC) #6
ossu
https://codereview.webrtc.org/2089183002/diff/1/webrtc/modules/audio_coding/acm2/codec_manager.cc File webrtc/modules/audio_coding/acm2/codec_manager.cc (right): https://codereview.webrtc.org/2089183002/diff/1/webrtc/modules/audio_coding/acm2/codec_manager.cc#newcode197 webrtc/modules/audio_coding/acm2/codec_manager.cc:197: if (!recreate_encoder_) { The flow of this whole function ...
4 years, 6 months ago (2016-06-23 08:32:07 UTC) #7
kwiberg-webrtc
https://codereview.webrtc.org/2089183002/diff/1/webrtc/modules/audio_coding/acm2/codec_manager.cc File webrtc/modules/audio_coding/acm2/codec_manager.cc (right): https://codereview.webrtc.org/2089183002/diff/1/webrtc/modules/audio_coding/acm2/codec_manager.cc#newcode197 webrtc/modules/audio_coding/acm2/codec_manager.cc:197: if (!recreate_encoder_) { On 2016/06/23 08:32:07, ossu wrote: > ...
4 years, 6 months ago (2016-06-23 10:31:51 UTC) #8
ossu
> Hmm. Yes, that's possible. We change the cng and red encoders to hold either ...
4 years, 6 months ago (2016-06-23 10:34:50 UTC) #9
hlundin-webrtc
lgtm https://codereview.webrtc.org/2089183002/diff/1/webrtc/modules/audio_coding/acm2/codec_manager.cc File webrtc/modules/audio_coding/acm2/codec_manager.cc (right): https://codereview.webrtc.org/2089183002/diff/1/webrtc/modules/audio_coding/acm2/codec_manager.cc#newcode197 webrtc/modules/audio_coding/acm2/codec_manager.cc:197: if (!recreate_encoder_) { On 2016/06/23 10:31:51, kwiberg-webrtc wrote: ...
4 years, 6 months ago (2016-06-23 10:38:47 UTC) #10
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2089183002/1
4 years, 6 months ago (2016-06-23 10:57:03 UTC) #13
commit-bot: I haz the power
Committed patchset #1 (id:1)
4 years, 6 months ago (2016-06-23 10:58:41 UTC) #15
commit-bot: I haz the power
4 years, 6 months ago (2016-06-23 10:58:49 UTC) #17
Message was sent while issue was closed.
Patchset 1 (id:??) landed as
https://crrev.com/3f81fcd2e845505c2873c7ec2edade910213596b
Cr-Commit-Position: refs/heads/master@{#13273}

Powered by Google App Engine
This is Rietveld 408576698