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 |
(...skipping 10 matching lines...) Expand all Loading... |
21 namespace webrtc { | 21 namespace webrtc { |
22 | 22 |
23 class Vad; | 23 class Vad; |
24 | 24 |
25 class AudioEncoderCng final : public AudioEncoder { | 25 class AudioEncoderCng final : public AudioEncoder { |
26 public: | 26 public: |
27 struct Config { | 27 struct Config { |
28 Config(); | 28 Config(); |
29 bool IsOk() const; | 29 bool IsOk() const; |
30 | 30 |
31 int num_channels; | 31 size_t num_channels; |
32 int payload_type; | 32 int payload_type; |
33 // Caller keeps ownership of the AudioEncoder object. | 33 // Caller keeps ownership of the AudioEncoder object. |
34 AudioEncoder* speech_encoder; | 34 AudioEncoder* speech_encoder; |
35 Vad::Aggressiveness vad_mode; | 35 Vad::Aggressiveness vad_mode; |
36 int sid_frame_interval_ms; | 36 int sid_frame_interval_ms; |
37 int num_cng_coefficients; | 37 int num_cng_coefficients; |
38 // The Vad pointer is mainly for testing. If a NULL pointer is passed, the | 38 // The Vad pointer is mainly for testing. If a NULL pointer is passed, the |
39 // AudioEncoderCng creates (and destroys) a Vad object internally. If an | 39 // AudioEncoderCng creates (and destroys) a Vad object internally. If an |
40 // object is passed, the AudioEncoderCng assumes ownership of the Vad | 40 // object is passed, the AudioEncoderCng assumes ownership of the Vad |
41 // object. | 41 // object. |
42 Vad* vad; | 42 Vad* vad; |
43 }; | 43 }; |
44 | 44 |
45 explicit AudioEncoderCng(const Config& config); | 45 explicit AudioEncoderCng(const Config& config); |
46 | 46 |
47 ~AudioEncoderCng() override; | 47 ~AudioEncoderCng() override; |
48 | 48 |
49 int SampleRateHz() const override; | 49 int SampleRateHz() const override; |
50 int NumChannels() const override; | 50 size_t NumChannels() const override; |
51 size_t MaxEncodedBytes() const override; | 51 size_t MaxEncodedBytes() const override; |
52 int RtpTimestampRateHz() const override; | 52 int RtpTimestampRateHz() const override; |
53 size_t Num10MsFramesInNextPacket() const override; | 53 size_t Num10MsFramesInNextPacket() const override; |
54 size_t Max10MsFramesInAPacket() const override; | 54 size_t Max10MsFramesInAPacket() const override; |
55 int GetTargetBitrate() const override; | 55 int GetTargetBitrate() const override; |
56 void SetTargetBitrate(int bits_per_second) override; | 56 void SetTargetBitrate(int bits_per_second) override; |
57 void SetProjectedPacketLossRate(double fraction) override; | 57 void SetProjectedPacketLossRate(double fraction) override; |
58 EncodedInfo EncodeInternal(uint32_t rtp_timestamp, | 58 EncodedInfo EncodeInternal(uint32_t rtp_timestamp, |
59 const int16_t* audio, | 59 const int16_t* audio, |
60 size_t max_encoded_bytes, | 60 size_t max_encoded_bytes, |
(...skipping 19 matching lines...) Expand all Loading... |
80 const int num_cng_coefficients_; | 80 const int num_cng_coefficients_; |
81 std::vector<int16_t> speech_buffer_; | 81 std::vector<int16_t> speech_buffer_; |
82 std::vector<uint32_t> rtp_timestamps_; | 82 std::vector<uint32_t> rtp_timestamps_; |
83 bool last_frame_active_; | 83 bool last_frame_active_; |
84 rtc::scoped_ptr<Vad> vad_; | 84 rtc::scoped_ptr<Vad> vad_; |
85 rtc::scoped_ptr<CNG_enc_inst, CngInstDeleter> cng_inst_; | 85 rtc::scoped_ptr<CNG_enc_inst, CngInstDeleter> cng_inst_; |
86 }; | 86 }; |
87 | 87 |
88 } // namespace webrtc | 88 } // namespace webrtc |
89 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_CNG_INCLUDE_AUDIO_ENCODER_CNG_H_ | 89 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_CNG_INCLUDE_AUDIO_ENCODER_CNG_H_ |
OLD | NEW |