Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Side by Side Diff: webrtc/modules/audio_coding/codecs/g722/audio_encoder_g722.h

Issue 2695243005: Injectable audio encoders: BuiltinAudioEncoderFactory (Closed)
Patch Set: Fix build problems on Windows, Android and downstream. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_format.h"
16 #include "webrtc/base/buffer.h" 17 #include "webrtc/base/buffer.h"
17 #include "webrtc/base/constructormagic.h" 18 #include "webrtc/base/constructormagic.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/g722/g722_interface.h" 20 #include "webrtc/modules/audio_coding/codecs/g722/g722_interface.h"
20 21
21 namespace webrtc { 22 namespace webrtc {
22 23
23 struct CodecInst; 24 struct CodecInst;
24 25
25 class AudioEncoderG722 final : public AudioEncoder { 26 class AudioEncoderG722 final : public AudioEncoder {
26 public: 27 public:
27 struct Config { 28 struct Config {
28 bool IsOk() const; 29 bool IsOk() const;
29 30
30 int payload_type = 9; 31 int payload_type = 9;
31 int frame_size_ms = 20; 32 int frame_size_ms = 20;
32 size_t num_channels = 1; 33 size_t num_channels = 1;
33 }; 34 };
34 35
35 explicit AudioEncoderG722(const Config& config); 36 explicit AudioEncoderG722(const Config& config);
36 explicit AudioEncoderG722(const CodecInst& codec_inst); 37 explicit AudioEncoderG722(const CodecInst& codec_inst);
38 AudioEncoderG722(int payload_type, const SdpAudioFormat& format);
37 ~AudioEncoderG722() override; 39 ~AudioEncoderG722() override;
38 40
41 static constexpr const char* GetPayloadName() { return "G722"; }
42 static rtc::Optional<AudioCodecInfo> QueryAudioEncoder(
43 const SdpAudioFormat& format);
44
39 int SampleRateHz() const override; 45 int SampleRateHz() const override;
40 size_t NumChannels() const override; 46 size_t NumChannels() const override;
41 int RtpTimestampRateHz() const override; 47 int RtpTimestampRateHz() const override;
42 size_t Num10MsFramesInNextPacket() const override; 48 size_t Num10MsFramesInNextPacket() const override;
43 size_t Max10MsFramesInAPacket() const override; 49 size_t Max10MsFramesInAPacket() const override;
44 int GetTargetBitrate() const override; 50 int GetTargetBitrate() const override;
45 void Reset() override; 51 void Reset() override;
46 52
47 protected: 53 protected:
48 EncodedInfo EncodeImpl(uint32_t rtp_timestamp, 54 EncodedInfo EncodeImpl(uint32_t rtp_timestamp,
(...skipping 17 matching lines...) Expand all
66 const size_t num_10ms_frames_per_packet_; 72 const size_t num_10ms_frames_per_packet_;
67 size_t num_10ms_frames_buffered_; 73 size_t num_10ms_frames_buffered_;
68 uint32_t first_timestamp_in_buffer_; 74 uint32_t first_timestamp_in_buffer_;
69 const std::unique_ptr<EncoderState[]> encoders_; 75 const std::unique_ptr<EncoderState[]> encoders_;
70 rtc::Buffer interleave_buffer_; 76 rtc::Buffer interleave_buffer_;
71 RTC_DISALLOW_COPY_AND_ASSIGN(AudioEncoderG722); 77 RTC_DISALLOW_COPY_AND_ASSIGN(AudioEncoderG722);
72 }; 78 };
73 79
74 } // namespace webrtc 80 } // namespace webrtc
75 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_G722_AUDIO_ENCODER_G722_H_ 81 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_G722_AUDIO_ENCODER_G722_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698