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_OPUS_INTERFACE_AUDIO_ENCODER_OPUS_H_ | 11 #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_OPUS_INTERFACE_AUDIO_ENCODER_OPUS_H_ |
12 #define WEBRTC_MODULES_AUDIO_CODING_CODECS_OPUS_INTERFACE_AUDIO_ENCODER_OPUS_H_ | 12 #define WEBRTC_MODULES_AUDIO_CODING_CODECS_OPUS_INTERFACE_AUDIO_ENCODER_OPUS_H_ |
13 | 13 |
14 #include <vector> | 14 #include <vector> |
15 | 15 |
16 #include "webrtc/base/checks.h" | 16 #include "webrtc/base/constructormagic.h" |
17 #include "webrtc/base/scoped_ptr.h" | |
18 #include "webrtc/modules/audio_coding/codecs/opus/interface/opus_interface.h" | 17 #include "webrtc/modules/audio_coding/codecs/opus/interface/opus_interface.h" |
19 #include "webrtc/modules/audio_coding/codecs/audio_encoder.h" | 18 #include "webrtc/modules/audio_coding/codecs/audio_encoder.h" |
20 | 19 |
21 namespace webrtc { | 20 namespace webrtc { |
22 | 21 |
23 struct CodecInst; | 22 struct CodecInst; |
24 | 23 |
25 class AudioEncoderOpus final : public AudioEncoder { | 24 class AudioEncoderOpus final : public AudioEncoder { |
26 public: | 25 public: |
27 enum ApplicationMode { | 26 enum ApplicationMode { |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 private: | 87 private: |
89 int Num10msFramesPerPacket() const; | 88 int Num10msFramesPerPacket() const; |
90 int SamplesPer10msFrame() const; | 89 int SamplesPer10msFrame() const; |
91 bool RecreateEncoderInstance(const Config& config); | 90 bool RecreateEncoderInstance(const Config& config); |
92 | 91 |
93 Config config_; | 92 Config config_; |
94 double packet_loss_rate_; | 93 double packet_loss_rate_; |
95 std::vector<int16_t> input_buffer_; | 94 std::vector<int16_t> input_buffer_; |
96 OpusEncInst* inst_; | 95 OpusEncInst* inst_; |
97 uint32_t first_timestamp_in_buffer_; | 96 uint32_t first_timestamp_in_buffer_; |
| 97 RTC_DISALLOW_COPY_AND_ASSIGN(AudioEncoderOpus); |
98 }; | 98 }; |
99 | 99 |
100 } // namespace webrtc | 100 } // namespace webrtc |
| 101 |
101 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_OPUS_INTERFACE_AUDIO_ENCODER_OPUS_
H_ | 102 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_OPUS_INTERFACE_AUDIO_ENCODER_OPUS_
H_ |
OLD | NEW |