Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(910)

Side by Side Diff: webrtc/modules/audio_coding/codecs/isac/fix/source/codec.h

Issue 1172163004: Reformat existing code. There should be no functional effects. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Resync Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 18 matching lines...) Expand all
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 int16_t 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 void 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
48 int WebRtcIsacfix_EncodeStoredData(IsacFixEncoderInstance* ISACenc_obj, 48 int WebRtcIsacfix_EncodeStoredData(IsacFixEncoderInstance* ISACenc_obj,
49 int BWnumber, 49 int BWnumber,
50 float scale); 50 float scale);
51 51
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698