| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 class AudioDecoder; | 26 class AudioDecoder; |
| 27 class AudioEncoder; | 27 class AudioEncoder; |
| 28 | 28 |
| 29 namespace acm2 { | 29 namespace acm2 { |
| 30 | 30 |
| 31 class CodecManager final { | 31 class CodecManager final { |
| 32 public: | 32 public: |
| 33 CodecManager(); | 33 CodecManager(); |
| 34 ~CodecManager(); | 34 ~CodecManager(); |
| 35 | 35 |
| 36 int RegisterEncoder(const CodecInst& send_codec); | 36 // Parses the given specification. On success, returns true and updates the |
| 37 // stored CodecInst and stack parameters; on error, returns false. |
| 38 bool RegisterEncoder(const CodecInst& send_codec); |
| 37 | 39 |
| 38 void RegisterEncoder(AudioEncoder* external_speech_encoder); | 40 static CodecInst ForgeCodecInst(const AudioEncoder* external_speech_encoder); |
| 39 | 41 |
| 40 rtc::Optional<CodecInst> GetCodecInst() const; | 42 const CodecInst* GetCodecInst() const { |
| 43 return send_codec_inst_ ? &*send_codec_inst_ : nullptr; |
| 44 } |
| 45 const RentACodec::StackParameters* GetStackParams() const { |
| 46 return &codec_stack_params_; |
| 47 } |
| 48 RentACodec::StackParameters* GetStackParams() { return &codec_stack_params_; } |
| 41 | 49 |
| 42 bool SetCopyRed(bool enable); | 50 bool SetCopyRed(bool enable); |
| 43 | 51 |
| 44 int SetVAD(bool enable, ACMVADMode mode); | 52 bool SetVAD(bool enable, ACMVADMode mode); |
| 45 | 53 |
| 46 void VAD(bool* dtx_enabled, bool* vad_enabled, ACMVADMode* mode) const; | 54 bool SetCodecFEC(bool enable_codec_fec); |
| 47 | 55 |
| 48 int SetCodecFEC(bool enable_codec_fec); | 56 bool CurrentEncoderIsOpus() const; |
| 49 | |
| 50 // Returns a pointer to AudioDecoder of the given codec. For iSAC, encoding | |
| 51 // and decoding have to be performed on a shared codec instance. By calling | |
| 52 // this method, we get the codec instance that ACM owns. | |
| 53 // If |codec| does not share an instance between encoder and decoder, returns | |
| 54 // null. | |
| 55 AudioDecoder* GetAudioDecoder(const CodecInst& codec); | |
| 56 | |
| 57 bool red_enabled() const { return codec_stack_params_.use_red; } | |
| 58 | |
| 59 bool codec_fec_enabled() const { return codec_stack_params_.use_codec_fec; } | |
| 60 | |
| 61 AudioEncoder* CurrentEncoder() { return rent_a_codec_.GetEncoderStack(); } | |
| 62 const AudioEncoder* CurrentEncoder() const { | |
| 63 return rent_a_codec_.GetEncoderStack(); | |
| 64 } | |
| 65 | |
| 66 bool CurrentEncoderIsOpus() const { return encoder_is_opus_; } | |
| 67 | 57 |
| 68 private: | 58 private: |
| 69 rtc::ThreadChecker thread_checker_; | 59 rtc::ThreadChecker thread_checker_; |
| 70 CodecInst send_codec_inst_; | 60 rtc::Optional<CodecInst> send_codec_inst_; |
| 71 RentACodec rent_a_codec_; | |
| 72 RentACodec::StackParameters codec_stack_params_; | 61 RentACodec::StackParameters codec_stack_params_; |
| 73 | 62 |
| 74 bool encoder_is_opus_; | |
| 75 | |
| 76 RTC_DISALLOW_COPY_AND_ASSIGN(CodecManager); | 63 RTC_DISALLOW_COPY_AND_ASSIGN(CodecManager); |
| 77 }; | 64 }; |
| 78 | 65 |
| 79 } // namespace acm2 | 66 } // namespace acm2 |
| 80 } // namespace webrtc | 67 } // namespace webrtc |
| 81 #endif // WEBRTC_MODULES_AUDIO_CODING_ACM2_CODEC_MANAGER_H_ | 68 #endif // WEBRTC_MODULES_AUDIO_CODING_ACM2_CODEC_MANAGER_H_ |
| OLD | NEW |