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

Unified Diff: webrtc/modules/audio_coding/acm2/codec_manager.h

Issue 2089183002: Don't recreate the speech encoder if we don't have to (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_coding/acm2/codec_manager.h
diff --git a/webrtc/modules/audio_coding/acm2/codec_manager.h b/webrtc/modules/audio_coding/acm2/codec_manager.h
index f6c6cd46d2cfa826de65dcedf06a8eebe1f0640e..b60b7e7bcbd99a4acf5a225a813e80e9f105904a 100644
--- a/webrtc/modules/audio_coding/acm2/codec_manager.h
+++ b/webrtc/modules/audio_coding/acm2/codec_manager.h
@@ -59,31 +59,13 @@ class CodecManager final {
// Uses the provided Rent-A-Codec to create a new encoder stack, if we have a
// complete specification; if so, it is then passed to set_encoder. On error,
// returns false.
- bool MakeEncoder(RentACodec* rac, AudioCodingModule* acm) {
- RTC_DCHECK(rac);
- RTC_DCHECK(acm);
- if (!codec_stack_params_.speech_encoder && send_codec_inst_) {
- // We have no speech encoder, but we have a specification for making one.
- auto enc = rac->RentEncoder(*send_codec_inst_);
- if (!enc)
- return false;
- codec_stack_params_.speech_encoder = std::move(enc);
- }
- auto stack = rac->RentEncoderStack(&codec_stack_params_);
- if (stack) {
- // Give new encoder stack to the ACM.
- acm->SetEncoder(std::move(stack));
- } else {
- // The specification was good but incomplete, so we have no encoder stack
- // to give to the ACM.
- }
- return true;
- }
+ bool MakeEncoder(RentACodec* rac, AudioCodingModule* acm);
private:
rtc::ThreadChecker thread_checker_;
rtc::Optional<CodecInst> send_codec_inst_;
RentACodec::StackParameters codec_stack_params_;
+ bool recreate_encoder_ = true; // Need to recreate encoder?
RTC_DISALLOW_COPY_AND_ASSIGN(CodecManager);
};

Powered by Google App Engine
This is Rietveld 408576698