OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 // |output_audio|, which can hold (at least) |max_length| elements. | 100 // |output_audio|, which can hold (at least) |max_length| elements. |
101 // The number of channels that were written to the output is provided in | 101 // The number of channels that were written to the output is provided in |
102 // the output variable |num_channels|, and each channel contains | 102 // the output variable |num_channels|, and each channel contains |
103 // |samples_per_channel| elements. If more than one channel is written, | 103 // |samples_per_channel| elements. If more than one channel is written, |
104 // the samples are interleaved. | 104 // the samples are interleaved. |
105 // The speech type is written to |type|, if |type| is not NULL. | 105 // The speech type is written to |type|, if |type| is not NULL. |
106 // Returns kOK on success, or kFail in case of an error. | 106 // Returns kOK on success, or kFail in case of an error. |
107 int GetAudio(size_t max_length, | 107 int GetAudio(size_t max_length, |
108 int16_t* output_audio, | 108 int16_t* output_audio, |
109 size_t* samples_per_channel, | 109 size_t* samples_per_channel, |
110 int* num_channels, | 110 size_t* num_channels, |
111 NetEqOutputType* type) override; | 111 NetEqOutputType* type) override; |
112 | 112 |
113 // Associates |rtp_payload_type| with |codec| and stores the information in | 113 // Associates |rtp_payload_type| with |codec| and stores the information in |
114 // the codec database. Returns kOK on success, kFail on failure. | 114 // the codec database. Returns kOK on success, kFail on failure. |
115 int RegisterPayloadType(enum NetEqDecoder codec, | 115 int RegisterPayloadType(enum NetEqDecoder codec, |
116 uint8_t rtp_payload_type) override; | 116 uint8_t rtp_payload_type) override; |
117 | 117 |
118 // Provides an externally created decoder object |decoder| to insert in the | 118 // Provides an externally created decoder object |decoder| to insert in the |
119 // decoder database. The decoder implements a decoder of type |codec| and | 119 // decoder database. The decoder implements a decoder of type |codec| and |
120 // associates it with |rtp_payload_type|. The decoder will produce samples | 120 // associates it with |rtp_payload_type|. The decoder will produce samples |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 | 219 |
220 // Delivers 10 ms of audio data. The data is written to |output|, which can | 220 // Delivers 10 ms of audio data. The data is written to |output|, which can |
221 // hold (at least) |max_length| elements. The number of channels that were | 221 // hold (at least) |max_length| elements. The number of channels that were |
222 // written to the output is provided in the output variable |num_channels|, | 222 // written to the output is provided in the output variable |num_channels|, |
223 // and each channel contains |samples_per_channel| elements. If more than one | 223 // and each channel contains |samples_per_channel| elements. If more than one |
224 // channel is written, the samples are interleaved. | 224 // channel is written, the samples are interleaved. |
225 // Returns 0 on success, otherwise an error code. | 225 // Returns 0 on success, otherwise an error code. |
226 int GetAudioInternal(size_t max_length, | 226 int GetAudioInternal(size_t max_length, |
227 int16_t* output, | 227 int16_t* output, |
228 size_t* samples_per_channel, | 228 size_t* samples_per_channel, |
229 int* num_channels) EXCLUSIVE_LOCKS_REQUIRED(crit_sect_); | 229 size_t* num_channels) |
| 230 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_); |
230 | 231 |
231 // Provides a decision to the GetAudioInternal method. The decision what to | 232 // Provides a decision to the GetAudioInternal method. The decision what to |
232 // do is written to |operation|. Packets to decode are written to | 233 // do is written to |operation|. Packets to decode are written to |
233 // |packet_list|, and a DTMF event to play is written to |dtmf_event|. When | 234 // |packet_list|, and a DTMF event to play is written to |dtmf_event|. When |
234 // DTMF should be played, |play_dtmf| is set to true by the method. | 235 // DTMF should be played, |play_dtmf| is set to true by the method. |
235 // Returns 0 on success, otherwise an error code. | 236 // Returns 0 on success, otherwise an error code. |
236 int GetDecision(Operations* operation, | 237 int GetDecision(Operations* operation, |
237 PacketList* packet_list, | 238 PacketList* packet_list, |
238 DtmfEvent* dtmf_event, | 239 DtmfEvent* dtmf_event, |
239 bool* play_dtmf) EXCLUSIVE_LOCKS_REQUIRED(crit_sect_); | 240 bool* play_dtmf) EXCLUSIVE_LOCKS_REQUIRED(crit_sect_); |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 // module is designed to compensate for this. | 405 // module is designed to compensate for this. |
405 int decoded_packet_sequence_number_ GUARDED_BY(crit_sect_); | 406 int decoded_packet_sequence_number_ GUARDED_BY(crit_sect_); |
406 uint32_t decoded_packet_timestamp_ GUARDED_BY(crit_sect_); | 407 uint32_t decoded_packet_timestamp_ GUARDED_BY(crit_sect_); |
407 | 408 |
408 private: | 409 private: |
409 DISALLOW_COPY_AND_ASSIGN(NetEqImpl); | 410 DISALLOW_COPY_AND_ASSIGN(NetEqImpl); |
410 }; | 411 }; |
411 | 412 |
412 } // namespace webrtc | 413 } // namespace webrtc |
413 #endif // WEBRTC_MODULES_AUDIO_CODING_NETEQ_NETEQ_IMPL_H_ | 414 #endif // WEBRTC_MODULES_AUDIO_CODING_NETEQ_NETEQ_IMPL_H_ |
OLD | NEW |