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

Side by Side Diff: modules/audio_coding/codecs/isac/fix/source/lattice_mips.c

Issue 1316903003: fix mipsel-o32-generic compile error (Closed) Base URL: https://chromium.googlesource.com/external/webrtc/trunk/webrtc.git@master
Patch Set: rebase? Created 5 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
11 #include <stddef.h>
12
11 #include "webrtc/modules/audio_coding/codecs/isac/fix/source/settings.h" 13 #include "webrtc/modules/audio_coding/codecs/isac/fix/source/settings.h"
12 #include "webrtc/typedefs.h" 14 #include "webrtc/typedefs.h"
13 15
14 // Filter ar_g_Q0[] and ar_f_Q0[] through an AR filter with coefficients 16 // Filter ar_g_Q0[] and ar_f_Q0[] through an AR filter with coefficients
15 // cth_Q15[] and sth_Q15[]. 17 // cth_Q15[] and sth_Q15[].
16 void WebRtcIsacfix_FilterArLoop(int16_t* ar_g_Q0, // Input samples 18 void WebRtcIsacfix_FilterArLoop(int16_t* ar_g_Q0, // Input samples
17 int16_t* ar_f_Q0, // Input samples 19 int16_t* ar_f_Q0, // Input samples
18 int16_t* cth_Q15, // Filter coefficients 20 int16_t* cth_Q15, // Filter coefficients
19 int16_t* sth_Q15, // Filter coefficients 21 int16_t* sth_Q15, // Filter coefficients
20 size_t order_coef) { // order of the filter 22 size_t order_coef) { // order of the filter
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 : [t16a] "=&r" (t16a), [t16b] "=&r" (t16b), [r0] "=&r" (r0), 320 : [t16a] "=&r" (t16a), [t16b] "=&r" (t16b), [r0] "=&r" (r0),
319 [r1] "=&r" (r1), [r2] "=&r" (r2), [r3] "=&r" (r3), 321 [r1] "=&r" (r1), [r2] "=&r" (r2), [r3] "=&r" (r3),
320 [r4] "=&r" (r4), [ptr0] "+r" (ptr0), [ptr1] "+r" (ptr1), 322 [r4] "=&r" (r4), [ptr0] "+r" (ptr0), [ptr1] "+r" (ptr1),
321 [ptr2] "+r" (ptr2), [n] "+r" (n) 323 [ptr2] "+r" (ptr2), [n] "+r" (n)
322 : [input0] "r" (input0), [input1] "r" (input1), 324 : [input0] "r" (input0), [input1] "r" (input1),
323 [input2] "r" (input2) 325 [input2] "r" (input2)
324 : "hi", "lo", "memory" 326 : "hi", "lo", "memory"
325 ); 327 );
326 #endif 328 #endif
327 } 329 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698