| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 bool enforce_frame_size = false; | 52 bool enforce_frame_size = false; |
| 53 }; | 53 }; |
| 54 | 54 |
| 55 explicit AudioEncoderIsacT(const Config& config); | 55 explicit AudioEncoderIsacT(const Config& config); |
| 56 explicit AudioEncoderIsacT( | 56 explicit AudioEncoderIsacT( |
| 57 const CodecInst& codec_inst, | 57 const CodecInst& codec_inst, |
| 58 const rtc::scoped_refptr<LockedIsacBandwidthInfo>& bwinfo); | 58 const rtc::scoped_refptr<LockedIsacBandwidthInfo>& bwinfo); |
| 59 AudioEncoderIsacT(int payload_type, const SdpAudioFormat& format); | 59 AudioEncoderIsacT(int payload_type, const SdpAudioFormat& format); |
| 60 ~AudioEncoderIsacT() override; | 60 ~AudioEncoderIsacT() override; |
| 61 | 61 |
| 62 static constexpr const char* GetPayloadName() { return "isac"; } | 62 static constexpr const char* GetPayloadName() { return "ISAC"; } |
| 63 static rtc::Optional<AudioCodecInfo> QueryAudioEncoder( | 63 static rtc::Optional<AudioCodecInfo> QueryAudioEncoder( |
| 64 const SdpAudioFormat& format); | 64 const SdpAudioFormat& format); |
| 65 | 65 |
| 66 int SampleRateHz() const override; | 66 int SampleRateHz() const override; |
| 67 size_t NumChannels() const override; | 67 size_t NumChannels() const override; |
| 68 size_t Num10MsFramesInNextPacket() const override; | 68 size_t Num10MsFramesInNextPacket() const override; |
| 69 size_t Max10MsFramesInAPacket() const override; | 69 size_t Max10MsFramesInAPacket() const override; |
| 70 int GetTargetBitrate() const override; | 70 int GetTargetBitrate() const override; |
| 71 EncodedInfo EncodeImpl(uint32_t rtp_timestamp, | 71 EncodedInfo EncodeImpl(uint32_t rtp_timestamp, |
| 72 rtc::ArrayView<const int16_t> audio, | 72 rtc::ArrayView<const int16_t> audio, |
| (...skipping 22 matching lines...) Expand all Loading... |
| 95 | 95 |
| 96 // Timestamp of the previously encoded packet. | 96 // Timestamp of the previously encoded packet. |
| 97 uint32_t last_encoded_timestamp_; | 97 uint32_t last_encoded_timestamp_; |
| 98 | 98 |
| 99 RTC_DISALLOW_COPY_AND_ASSIGN(AudioEncoderIsacT); | 99 RTC_DISALLOW_COPY_AND_ASSIGN(AudioEncoderIsacT); |
| 100 }; | 100 }; |
| 101 | 101 |
| 102 } // namespace webrtc | 102 } // namespace webrtc |
| 103 | 103 |
| 104 #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 |