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 14 matching lines...) Expand all Loading... |
25 extern "C" { | 25 extern "C" { |
26 #endif | 26 #endif |
27 | 27 |
28 int WebRtcIsacfix_EstimateBandwidth(BwEstimatorstr* bwest_str, | 28 int WebRtcIsacfix_EstimateBandwidth(BwEstimatorstr* bwest_str, |
29 Bitstr_dec* streamdata, | 29 Bitstr_dec* streamdata, |
30 int32_t packet_size, | 30 int32_t packet_size, |
31 uint16_t rtp_seq_number, | 31 uint16_t rtp_seq_number, |
32 uint32_t send_ts, | 32 uint32_t send_ts, |
33 uint32_t arr_ts); | 33 uint32_t arr_ts); |
34 | 34 |
35 int WebRtcIsacfix_DecodeImpl(int16_t* signal_out16, | 35 int16_t WebRtcIsacfix_DecodeImpl(int16_t* signal_out16, |
36 IsacFixDecoderInstance* ISACdec_obj, | 36 IsacFixDecoderInstance* ISACdec_obj, |
37 int16_t* current_framesamples); | 37 int16_t* current_framesamples); |
38 | 38 |
39 int16_t WebRtcIsacfix_DecodePlcImpl(int16_t* decoded, | 39 int16_t WebRtcIsacfix_DecodePlcImpl(int16_t* decoded, |
40 IsacFixDecoderInstance* ISACdec_obj, | 40 IsacFixDecoderInstance* ISACdec_obj, |
41 int16_t* current_framesample ); | 41 int16_t* current_framesample ); |
42 | 42 |
43 int WebRtcIsacfix_EncodeImpl(int16_t* in, | 43 int WebRtcIsacfix_EncodeImpl(int16_t* in, |
44 IsacFixEncoderInstance* ISACenc_obj, | 44 IsacFixEncoderInstance* ISACenc_obj, |
45 BwEstimatorstr* bw_estimatordata, | 45 BwEstimatorstr* bw_estimatordata, |
46 int16_t CodingMode); | 46 int16_t CodingMode); |
47 | 47 |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 int32_t* ptr0, | 219 int32_t* ptr0, |
220 int32_t* ptr1, | 220 int32_t* ptr1, |
221 int32_t* ptr2); | 221 int32_t* ptr2); |
222 extern FilterMaLoopFix WebRtcIsacfix_FilterMaLoopFix; | 222 extern FilterMaLoopFix WebRtcIsacfix_FilterMaLoopFix; |
223 | 223 |
224 #ifdef __cplusplus | 224 #ifdef __cplusplus |
225 } // extern "C" | 225 } // extern "C" |
226 #endif | 226 #endif |
227 | 227 |
228 #endif /* WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_CODEC_H_ */ | 228 #endif /* WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_CODEC_H_ */ |
OLD | NEW |