OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 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 |
11 #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_OPUS_AUDIO_ENCODER_OPUS_H_ | 11 #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_OPUS_AUDIO_ENCODER_OPUS_H_ |
12 #define WEBRTC_MODULES_AUDIO_CODING_CODECS_OPUS_AUDIO_ENCODER_OPUS_H_ | 12 #define WEBRTC_MODULES_AUDIO_CODING_CODECS_OPUS_AUDIO_ENCODER_OPUS_H_ |
13 | 13 |
14 #include <vector> | 14 #include <vector> |
15 | 15 |
16 #include "webrtc/base/constructormagic.h" | 16 #include "webrtc/base/constructormagic.h" |
17 #include "webrtc/base/optional.h" | 17 #include "webrtc/base/optional.h" |
18 #include "webrtc/modules/audio_coding/audio_network_adaptor/include/audio_networ k_adaptor.h" | |
18 #include "webrtc/modules/audio_coding/codecs/opus/opus_interface.h" | 19 #include "webrtc/modules/audio_coding/codecs/opus/opus_interface.h" |
19 #include "webrtc/modules/audio_coding/codecs/audio_encoder.h" | 20 #include "webrtc/modules/audio_coding/codecs/audio_encoder.h" |
20 | 21 |
21 namespace webrtc { | 22 namespace webrtc { |
22 | 23 |
23 struct CodecInst; | 24 struct CodecInst; |
24 | 25 |
25 class AudioEncoderOpus final : public AudioEncoder { | 26 class AudioEncoderOpus final : public AudioEncoder { |
26 public: | 27 public: |
27 enum ApplicationMode { | 28 enum ApplicationMode { |
(...skipping 23 matching lines...) Expand all Loading... | |
51 private: | 52 private: |
52 #if defined(WEBRTC_ANDROID) || defined(WEBRTC_IOS) || defined(WEBRTC_ARCH_ARM) | 53 #if defined(WEBRTC_ANDROID) || defined(WEBRTC_IOS) || defined(WEBRTC_ARCH_ARM) |
53 // If we are on Android, iOS and/or ARM, use a lower complexity setting as | 54 // If we are on Android, iOS and/or ARM, use a lower complexity setting as |
54 // default, to save encoder complexity. | 55 // default, to save encoder complexity. |
55 static const int kDefaultComplexity = 5; | 56 static const int kDefaultComplexity = 5; |
56 #else | 57 #else |
57 static const int kDefaultComplexity = 9; | 58 static const int kDefaultComplexity = 9; |
58 #endif | 59 #endif |
59 }; | 60 }; |
60 | 61 |
61 explicit AudioEncoderOpus(const Config& config); | 62 typedef std::function<std::unique_ptr<AudioNetworkAdaptor>(const std::string&, |
63 const Clock*)> | |
64 AudioNetworkAdaptorCreator; | |
kwiberg-webrtc
2016/10/04 16:04:06
"using" is much better, primarily because it puts
minyue-webrtc
2016/10/04 17:07:12
Done.
| |
65 | |
66 // |audio_network_adaptor| is for dependency injection for testing. | |
67 AudioEncoderOpus( | |
68 const Config& config, | |
69 AudioNetworkAdaptorCreator* audio_network_adaptor_creator = nullptr); | |
kwiberg-webrtc
2016/10/04 16:04:06
Pass the std::function by value. Or maybe rvalue r
minyue-webrtc
2016/10/04 17:07:13
Done.
| |
70 | |
62 explicit AudioEncoderOpus(const CodecInst& codec_inst); | 71 explicit AudioEncoderOpus(const CodecInst& codec_inst); |
72 | |
63 ~AudioEncoderOpus() override; | 73 ~AudioEncoderOpus() override; |
64 | 74 |
65 int SampleRateHz() const override; | 75 int SampleRateHz() const override; |
66 size_t NumChannels() const override; | 76 size_t NumChannels() const override; |
67 size_t Num10MsFramesInNextPacket() const override; | 77 size_t Num10MsFramesInNextPacket() const override; |
68 size_t Max10MsFramesInAPacket() const override; | 78 size_t Max10MsFramesInAPacket() const override; |
69 int GetTargetBitrate() const override; | 79 int GetTargetBitrate() const override; |
70 | 80 |
71 void Reset() override; | 81 void Reset() override; |
72 bool SetFec(bool enable) override; | 82 bool SetFec(bool enable) override; |
73 | 83 |
74 // Set Opus DTX. Once enabled, Opus stops transmission, when it detects voice | 84 // Set Opus DTX. Once enabled, Opus stops transmission, when it detects voice |
75 // being inactive. During that, it still sends 2 packets (one for content, one | 85 // being inactive. During that, it still sends 2 packets (one for content, one |
76 // for signaling) about every 400 ms. | 86 // for signaling) about every 400 ms. |
77 bool SetDtx(bool enable) override; | 87 bool SetDtx(bool enable) override; |
78 bool GetDtx() const override; | 88 bool GetDtx() const override; |
79 | 89 |
80 bool SetApplication(Application application) override; | 90 bool SetApplication(Application application) override; |
81 void SetMaxPlaybackRate(int frequency_hz) override; | 91 void SetMaxPlaybackRate(int frequency_hz) override; |
82 void SetProjectedPacketLossRate(double fraction) override; | 92 void SetProjectedPacketLossRate(double fraction) override; |
83 void SetTargetBitrate(int target_bps) override; | 93 void SetTargetBitrate(int target_bps) override; |
84 | 94 |
95 bool EnableAudioNetworkAdaptor(const std::string& config_string, | |
96 const Clock* clock) override; | |
97 void DisableAudioNetworkAdaptor() override; | |
98 void OnReceivedUplinkBandwidth(int uplink_bandwidth_bps) override; | |
99 void OnReceivedUplinkPacketLossFraction( | |
100 float uplink_packet_loss_fraction) override; | |
101 void OnReceivedTargetAudioBitrate(int target_audio_bitrate_bps) override; | |
102 void OnReceivedRtt(int rtt_ms) override; | |
103 void SetReceiverFrameLengthRange(int min_frame_length_ms, | |
104 int max_frame_length_ms) override; | |
105 | |
85 // Getters for testing. | 106 // Getters for testing. |
86 double packet_loss_rate() const { return packet_loss_rate_; } | 107 double packet_loss_rate() const { return packet_loss_rate_; } |
87 ApplicationMode application() const { return config_.application; } | 108 ApplicationMode application() const { return config_.application; } |
109 bool fec_enabled() const { return config_.fec_enabled; } | |
110 size_t num_channels_to_encode() const { return num_channels_to_encode_; } | |
111 int next_frame_length_ms() const { return next_frame_length_ms_; } | |
88 | 112 |
89 protected: | 113 protected: |
90 EncodedInfo EncodeImpl(uint32_t rtp_timestamp, | 114 EncodedInfo EncodeImpl(uint32_t rtp_timestamp, |
91 rtc::ArrayView<const int16_t> audio, | 115 rtc::ArrayView<const int16_t> audio, |
92 rtc::Buffer* encoded) override; | 116 rtc::Buffer* encoded) override; |
93 | 117 |
94 private: | 118 private: |
95 size_t Num10msFramesPerPacket() const; | 119 size_t Num10msFramesPerPacket() const; |
96 size_t SamplesPer10msFrame() const; | 120 size_t SamplesPer10msFrame() const; |
97 size_t SufficientOutputBufferSize() const; | 121 size_t SufficientOutputBufferSize() const; |
98 bool RecreateEncoderInstance(const Config& config); | 122 bool RecreateEncoderInstance(const Config& config); |
123 void SetFrameLength(int frame_length_ms); | |
124 void SetNumChannelsToEncode(size_t num_channels_to_encode); | |
125 void ApplyAudioNetworkAdaptor(); | |
126 std::unique_ptr<AudioNetworkAdaptor> DefaultAudioNetworkAdaptorCreator( | |
127 const std::string& config_string, | |
128 const Clock* clock); | |
99 | 129 |
100 Config config_; | 130 Config config_; |
101 double packet_loss_rate_; | 131 double packet_loss_rate_; |
102 std::vector<int16_t> input_buffer_; | 132 std::vector<int16_t> input_buffer_; |
103 OpusEncInst* inst_; | 133 OpusEncInst* inst_; |
104 uint32_t first_timestamp_in_buffer_; | 134 uint32_t first_timestamp_in_buffer_; |
135 size_t num_channels_to_encode_; | |
136 int next_frame_length_ms_; | |
137 AudioNetworkAdaptorCreator audio_network_adaptor_creator_; | |
138 std::unique_ptr<AudioNetworkAdaptor> audio_network_adaptor_; | |
139 | |
105 RTC_DISALLOW_COPY_AND_ASSIGN(AudioEncoderOpus); | 140 RTC_DISALLOW_COPY_AND_ASSIGN(AudioEncoderOpus); |
106 }; | 141 }; |
107 | 142 |
108 } // namespace webrtc | 143 } // namespace webrtc |
109 | 144 |
110 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_OPUS_AUDIO_ENCODER_OPUS_H_ | 145 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_OPUS_AUDIO_ENCODER_OPUS_H_ |
OLD | NEW |