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

Side by Side Diff: webrtc/modules/audio_coding/main/acm2/codec_manager.h

Issue 1481493004: audio_coding: remove "main" directory (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased Created 5 years 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 unified diff | Download patch
OLDNEW
(Empty)
1 /*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11 #ifndef WEBRTC_MODULES_AUDIO_CODING_MAIN_ACM2_CODEC_MANAGER_H_
12 #define WEBRTC_MODULES_AUDIO_CODING_MAIN_ACM2_CODEC_MANAGER_H_
13
14 #include <map>
15
16 #include "webrtc/base/constructormagic.h"
17 #include "webrtc/base/optional.h"
18 #include "webrtc/base/scoped_ptr.h"
19 #include "webrtc/base/thread_checker.h"
20 #include "webrtc/modules/audio_coding/main/acm2/rent_a_codec.h"
21 #include "webrtc/modules/audio_coding/main/include/audio_coding_module_typedefs. h"
22 #include "webrtc/common_types.h"
23
24 namespace webrtc {
25
26 class AudioDecoder;
27 class AudioEncoder;
28
29 namespace acm2 {
30
31 class CodecManager final {
32 public:
33 CodecManager();
34 ~CodecManager();
35
36 int RegisterEncoder(const CodecInst& send_codec);
37
38 void RegisterEncoder(AudioEncoder* external_speech_encoder);
39
40 rtc::Optional<CodecInst> GetCodecInst() const;
41
42 bool SetCopyRed(bool enable);
43
44 int SetVAD(bool enable, ACMVADMode mode);
45
46 void VAD(bool* dtx_enabled, bool* vad_enabled, ACMVADMode* mode) const;
47
48 int SetCodecFEC(bool enable_codec_fec);
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
68 private:
69 rtc::ThreadChecker thread_checker_;
70 CodecInst send_codec_inst_;
71 RentACodec rent_a_codec_;
72 RentACodec::StackParameters codec_stack_params_;
73
74 bool encoder_is_opus_;
75
76 RTC_DISALLOW_COPY_AND_ASSIGN(CodecManager);
77 };
78
79 } // namespace acm2
80 } // namespace webrtc
81 #endif // WEBRTC_MODULES_AUDIO_CODING_MAIN_ACM2_CODEC_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698