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_ISAC_AUDIO_ENCODER_ISAC_T_H_ | 11 #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_AUDIO_ENCODER_ISAC_T_H_ |
12 #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_AUDIO_ENCODER_ISAC_T_H_ | 12 #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_AUDIO_ENCODER_ISAC_T_H_ |
13 | 13 |
14 #include <vector> | 14 #include <vector> |
15 | 15 |
| 16 #include "webrtc/api/audio_codecs/audio_format.h" |
16 #include "webrtc/base/constructormagic.h" | 17 #include "webrtc/base/constructormagic.h" |
17 #include "webrtc/base/scoped_ref_ptr.h" | 18 #include "webrtc/base/scoped_ref_ptr.h" |
18 #include "webrtc/modules/audio_coding/codecs/audio_encoder.h" | 19 #include "webrtc/modules/audio_coding/codecs/audio_encoder.h" |
19 #include "webrtc/modules/audio_coding/codecs/isac/locked_bandwidth_info.h" | 20 #include "webrtc/modules/audio_coding/codecs/isac/locked_bandwidth_info.h" |
20 | 21 |
21 namespace webrtc { | 22 namespace webrtc { |
22 | 23 |
23 struct CodecInst; | 24 struct CodecInst; |
24 | 25 |
25 template <typename T> | 26 template <typename T> |
(...skipping 22 matching lines...) Expand all Loading... |
48 | 49 |
49 // In adaptive mode, prevent adaptive changes to the frame size. (Not used | 50 // In adaptive mode, prevent adaptive changes to the frame size. (Not used |
50 // in nonadaptive mode.) | 51 // in nonadaptive mode.) |
51 bool enforce_frame_size = false; | 52 bool enforce_frame_size = false; |
52 }; | 53 }; |
53 | 54 |
54 explicit AudioEncoderIsacT(const Config& config); | 55 explicit AudioEncoderIsacT(const Config& config); |
55 explicit AudioEncoderIsacT( | 56 explicit AudioEncoderIsacT( |
56 const CodecInst& codec_inst, | 57 const CodecInst& codec_inst, |
57 const rtc::scoped_refptr<LockedIsacBandwidthInfo>& bwinfo); | 58 const rtc::scoped_refptr<LockedIsacBandwidthInfo>& bwinfo); |
| 59 AudioEncoderIsacT(int payload_type, const SdpAudioFormat& format); |
58 ~AudioEncoderIsacT() override; | 60 ~AudioEncoderIsacT() override; |
59 | 61 |
| 62 static constexpr const char* GetPayloadName() { return "isac"; } |
| 63 static rtc::Optional<AudioCodecInfo> QueryAudioEncoder( |
| 64 const SdpAudioFormat& format); |
| 65 |
60 int SampleRateHz() const override; | 66 int SampleRateHz() const override; |
61 size_t NumChannels() const override; | 67 size_t NumChannels() const override; |
62 size_t Num10MsFramesInNextPacket() const override; | 68 size_t Num10MsFramesInNextPacket() const override; |
63 size_t Max10MsFramesInAPacket() const override; | 69 size_t Max10MsFramesInAPacket() const override; |
64 int GetTargetBitrate() const override; | 70 int GetTargetBitrate() const override; |
65 EncodedInfo EncodeImpl(uint32_t rtp_timestamp, | 71 EncodedInfo EncodeImpl(uint32_t rtp_timestamp, |
66 rtc::ArrayView<const int16_t> audio, | 72 rtc::ArrayView<const int16_t> audio, |
67 rtc::Buffer* encoded) override; | 73 rtc::Buffer* encoded) override; |
68 void Reset() override; | 74 void Reset() override; |
69 | 75 |
(...skipping 19 matching lines...) Expand all Loading... |
89 | 95 |
90 // Timestamp of the previously encoded packet. | 96 // Timestamp of the previously encoded packet. |
91 uint32_t last_encoded_timestamp_; | 97 uint32_t last_encoded_timestamp_; |
92 | 98 |
93 RTC_DISALLOW_COPY_AND_ASSIGN(AudioEncoderIsacT); | 99 RTC_DISALLOW_COPY_AND_ASSIGN(AudioEncoderIsacT); |
94 }; | 100 }; |
95 | 101 |
96 } // namespace webrtc | 102 } // namespace webrtc |
97 | 103 |
98 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_AUDIO_ENCODER_ISAC_T_H_ | 104 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_AUDIO_ENCODER_ISAC_T_H_ |
OLD | NEW |