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_G722_AUDIO_ENCODER_G722_H_ | 11 #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_G722_AUDIO_ENCODER_G722_H_ |
12 #define WEBRTC_MODULES_AUDIO_CODING_CODECS_G722_AUDIO_ENCODER_G722_H_ | 12 #define WEBRTC_MODULES_AUDIO_CODING_CODECS_G722_AUDIO_ENCODER_G722_H_ |
13 | 13 |
14 #include <memory> | 14 #include <memory> |
15 | 15 |
16 #include "webrtc/api/audio_codecs/audio_encoder.h" | 16 #include "webrtc/api/audio_codecs/audio_encoder.h" |
| 17 #include "webrtc/api/audio_codecs/audio_encoder_g722_config.h" |
17 #include "webrtc/api/audio_codecs/audio_format.h" | 18 #include "webrtc/api/audio_codecs/audio_format.h" |
18 #include "webrtc/base/buffer.h" | 19 #include "webrtc/base/buffer.h" |
19 #include "webrtc/base/constructormagic.h" | 20 #include "webrtc/base/constructormagic.h" |
20 #include "webrtc/modules/audio_coding/codecs/g722/g722_interface.h" | 21 #include "webrtc/modules/audio_coding/codecs/g722/g722_interface.h" |
21 | 22 |
22 namespace webrtc { | 23 namespace webrtc { |
23 | 24 |
24 struct CodecInst; | 25 struct CodecInst; |
25 | 26 |
26 class AudioEncoderG722 final : public AudioEncoder { | 27 class AudioEncoderG722 final : public AudioEncoder { |
27 public: | 28 public: |
28 struct Config { | 29 static rtc::Optional<AudioEncoderG722Config> SdpToConfig( |
29 bool IsOk() const; | 30 const SdpAudioFormat& format); |
30 | 31 |
31 int payload_type = 9; | 32 AudioEncoderG722(const AudioEncoderG722Config& config, int payload_type); |
32 int frame_size_ms = 20; | |
33 size_t num_channels = 1; | |
34 }; | |
35 | |
36 explicit AudioEncoderG722(const Config& config); | |
37 explicit AudioEncoderG722(const CodecInst& codec_inst); | 33 explicit AudioEncoderG722(const CodecInst& codec_inst); |
38 AudioEncoderG722(int payload_type, const SdpAudioFormat& format); | 34 AudioEncoderG722(int payload_type, const SdpAudioFormat& format); |
39 ~AudioEncoderG722() override; | 35 ~AudioEncoderG722() override; |
40 | 36 |
41 static constexpr const char* GetPayloadName() { return "G722"; } | 37 static constexpr const char* GetPayloadName() { return "G722"; } |
42 static rtc::Optional<AudioCodecInfo> QueryAudioEncoder( | 38 static rtc::Optional<AudioCodecInfo> QueryAudioEncoder( |
43 const SdpAudioFormat& format); | 39 const SdpAudioFormat& format); |
44 | 40 |
45 int SampleRateHz() const override; | 41 int SampleRateHz() const override; |
46 size_t NumChannels() const override; | 42 size_t NumChannels() const override; |
(...skipping 25 matching lines...) Expand all Loading... |
72 const size_t num_10ms_frames_per_packet_; | 68 const size_t num_10ms_frames_per_packet_; |
73 size_t num_10ms_frames_buffered_; | 69 size_t num_10ms_frames_buffered_; |
74 uint32_t first_timestamp_in_buffer_; | 70 uint32_t first_timestamp_in_buffer_; |
75 const std::unique_ptr<EncoderState[]> encoders_; | 71 const std::unique_ptr<EncoderState[]> encoders_; |
76 rtc::Buffer interleave_buffer_; | 72 rtc::Buffer interleave_buffer_; |
77 RTC_DISALLOW_COPY_AND_ASSIGN(AudioEncoderG722); | 73 RTC_DISALLOW_COPY_AND_ASSIGN(AudioEncoderG722); |
78 }; | 74 }; |
79 | 75 |
80 } // namespace webrtc | 76 } // namespace webrtc |
81 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_G722_AUDIO_ENCODER_G722_H_ | 77 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_G722_AUDIO_ENCODER_G722_H_ |
OLD | NEW |