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_INCLUDE_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_INCLUDE_AUDIO_ENCODER_OPUS_H_ |
13 | 13 |
14 #include <vector> | 14 #include <vector> |
15 | 15 |
16 #include "webrtc/base/constructormagic.h" | 16 #include "webrtc/base/constructormagic.h" |
17 #include "webrtc/modules/audio_coding/codecs/opus/interface/opus_interface.h" | 17 #include "webrtc/modules/audio_coding/codecs/opus/include/opus_interface.h" |
18 #include "webrtc/modules/audio_coding/codecs/audio_encoder.h" | 18 #include "webrtc/modules/audio_coding/codecs/audio_encoder.h" |
19 | 19 |
20 namespace webrtc { | 20 namespace webrtc { |
21 | 21 |
22 struct CodecInst; | 22 struct CodecInst; |
23 | 23 |
24 class AudioEncoderOpus final : public AudioEncoder { | 24 class AudioEncoderOpus final : public AudioEncoder { |
25 public: | 25 public: |
26 enum ApplicationMode { | 26 enum ApplicationMode { |
27 kVoip = 0, | 27 kVoip = 0, |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 Config config_; | 92 Config config_; |
93 double packet_loss_rate_; | 93 double packet_loss_rate_; |
94 std::vector<int16_t> input_buffer_; | 94 std::vector<int16_t> input_buffer_; |
95 OpusEncInst* inst_; | 95 OpusEncInst* inst_; |
96 uint32_t first_timestamp_in_buffer_; | 96 uint32_t first_timestamp_in_buffer_; |
97 RTC_DISALLOW_COPY_AND_ASSIGN(AudioEncoderOpus); | 97 RTC_DISALLOW_COPY_AND_ASSIGN(AudioEncoderOpus); |
98 }; | 98 }; |
99 | 99 |
100 } // namespace webrtc | 100 } // namespace webrtc |
101 | 101 |
102 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_OPUS_INTERFACE_AUDIO_ENCODER_OPUS_
H_ | 102 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_OPUS_INCLUDE_AUDIO_ENCODER_OPUS_H_ |
OLD | NEW |