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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
128 // Enables or disables codec-internal VAD/DTX. Returns true if the codec was | 128 // Enables or disables codec-internal VAD/DTX. Returns true if the codec was |
129 // able to comply. The default implementation returns true when asked to | 129 // able to comply. The default implementation returns true when asked to |
130 // disable DTX and false when asked to enable it (meaning that DTX isn't | 130 // disable DTX and false when asked to enable it (meaning that DTX isn't |
131 // supported). | 131 // supported). |
132 virtual bool SetDtx(bool enable); | 132 virtual bool SetDtx(bool enable); |
133 | 133 |
134 // Returns the status of codec-internal DTX. The default implementation always | 134 // Returns the status of codec-internal DTX. The default implementation always |
135 // returns false. | 135 // returns false. |
136 virtual bool GetDtx() const; | 136 virtual bool GetDtx() const; |
137 | 137 |
138 // Enables or disablesCBR (constant bitrate mode). Returns | |
minyue-webrtc
2017/03/30 20:36:17
nit: needs a space
| |
139 // true if the codec was able to comply. The default implementation returns | |
140 // true when asked to disable CBR and false when asked to enable it (meaning | |
141 // that CBR isn't supported). | |
142 virtual bool SetCbr(bool enable); | |
143 | |
144 // Returns the status of CBR. The default implementation always | |
145 // returns false. | |
146 virtual bool GetCbr() const; | |
147 | |
138 // Sets the application mode. Returns true if the codec was able to comply. | 148 // Sets the application mode. Returns true if the codec was able to comply. |
139 // The default implementation just returns false. | 149 // The default implementation just returns false. |
140 enum class Application { kSpeech, kAudio }; | 150 enum class Application { kSpeech, kAudio }; |
141 virtual bool SetApplication(Application application); | 151 virtual bool SetApplication(Application application); |
142 | 152 |
143 // Tells the encoder about the highest sample rate the decoder is expected to | 153 // Tells the encoder about the highest sample rate the decoder is expected to |
144 // use when decoding the bitstream. The encoder would typically use this | 154 // use when decoding the bitstream. The encoder would typically use this |
145 // information to adjust the quality of the encoding. The default | 155 // information to adjust the quality of the encoding. The default |
146 // implementation does nothing. | 156 // implementation does nothing. |
147 virtual void SetMaxPlaybackRate(int frequency_hz); | 157 virtual void SetMaxPlaybackRate(int frequency_hz); |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
198 | 208 |
199 protected: | 209 protected: |
200 // Subclasses implement this to perform the actual encoding. Called by | 210 // Subclasses implement this to perform the actual encoding. Called by |
201 // Encode(). | 211 // Encode(). |
202 virtual EncodedInfo EncodeImpl(uint32_t rtp_timestamp, | 212 virtual EncodedInfo EncodeImpl(uint32_t rtp_timestamp, |
203 rtc::ArrayView<const int16_t> audio, | 213 rtc::ArrayView<const int16_t> audio, |
204 rtc::Buffer* encoded) = 0; | 214 rtc::Buffer* encoded) = 0; |
205 }; | 215 }; |
206 } // namespace webrtc | 216 } // namespace webrtc |
207 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_AUDIO_ENCODER_H_ | 217 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_AUDIO_ENCODER_H_ |
OLD | NEW |