Avoiding size_t in MIPS.

TBR=pkasting@chromium.org

BUG=526716

Review URL: https://codereview.webrtc.org/1310553008 .

Cr-Commit-Position: refs/heads/master@{#9823}
This commit is contained in:
minyuel
2015-08-31 17:40:04 +02:00
parent 2c27430545
commit 32e2f461b1

View File

@ -19,11 +19,11 @@ void WebRtcIsacfix_FilterArLoop(int16_t* ar_g_Q0, // Input samples
int16_t* ar_f_Q0, // Input samples
int16_t* cth_Q15, // Filter coefficients
int16_t* sth_Q15, // Filter coefficients
size_t order_coef) { // order of the filter
int16_t order_coef) { // order of the filter
int n = 0;
for (n = 0; n < HALF_SUBFRAMELEN - 1; n++) {
int count = (int)(order_coef - 1);
int count = order_coef - 1;
int offset;
#if !defined(MIPS_DSP_R1_LE)
int16_t* tmp_cth;