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

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

Issue 1230503003: Update a ton of audio code to use size_t more correctly and in general reduce (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Resync Created 5 years, 4 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 21 matching lines...) Expand all
32 32
33 void WebRtcIsacfix_PitchFilter(int16_t *indatFix, 33 void WebRtcIsacfix_PitchFilter(int16_t *indatFix,
34 int16_t *outdatQQ, 34 int16_t *outdatQQ,
35 PitchFiltstr *pfp, 35 PitchFiltstr *pfp,
36 int16_t *lagsQ7, 36 int16_t *lagsQ7,
37 int16_t *gainsQ12, 37 int16_t *gainsQ12,
38 int16_t type); 38 int16_t type);
39 39
40 void WebRtcIsacfix_PitchFilterCore(int loopNumber, 40 void WebRtcIsacfix_PitchFilterCore(int loopNumber,
41 int16_t gain, 41 int16_t gain,
42 int index, 42 size_t index,
43 int16_t sign, 43 int16_t sign,
44 int16_t* inputState, 44 int16_t* inputState,
45 int16_t* outputBuff2, 45 int16_t* outputBuff2,
46 const int16_t* coefficient, 46 const int16_t* coefficient,
47 int16_t* inputBuf, 47 int16_t* inputBuf,
48 int16_t* outputBuf, 48 int16_t* outputBuf,
49 int* index2); 49 int* index2);
50 50
51 void WebRtcIsacfix_PitchFilterGains(const int16_t *indatQ0, 51 void WebRtcIsacfix_PitchFilterGains(const int16_t *indatQ0,
52 PitchFiltstr *pfp, 52 PitchFiltstr *pfp,
53 int16_t *lagsQ7, 53 int16_t *lagsQ7,
54 int16_t *gainsQ12); 54 int16_t *gainsQ12);
55 55
56 void WebRtcIsacfix_DecimateAllpass32(const int16_t *in, 56 void WebRtcIsacfix_DecimateAllpass32(const int16_t *in,
57 int32_t *state_in, /* array of size: 2*ALLPASSSECTIONS+1 */ 57 int32_t *state_in, /* array of size: 2*ALLPASSSECTIONS+1 */
58 int16_t N, /* number of i nput samples */ 58 int16_t N, /* number of i nput samples */
59 int16_t *out); /* array of size N/2 */ 59 int16_t *out); /* array of size N/2 */
60 60
61 int32_t WebRtcIsacfix_Log2Q8( uint32_t x ); 61 int32_t WebRtcIsacfix_Log2Q8( uint32_t x );
62 62
63 void WebRtcIsacfix_PCorr2Q32(const int16_t* in, int32_t* logcorQ8); 63 void WebRtcIsacfix_PCorr2Q32(const int16_t* in, int32_t* logcorQ8);
64 64
65 #endif /* WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_PITCH_ESTIMATOR_H_ */ 65 #endif /* WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_PITCH_ESTIMATOR_H_ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698