comparison ra144.c @ 7800:a84494aa3818 libavcodec

Remove useless parentheses.
author vitor
date Sat, 06 Sep 2008 11:45:10 +0000
parents 11fe8c09948e
children d965e46aef4f
comparison
equal deleted inserted replaced
7799:c4f105f7c886 7800:a84494aa3818
212 static void int_to_int16(int16_t *out, const int *inp) 212 static void int_to_int16(int16_t *out, const int *inp)
213 { 213 {
214 int i; 214 int i;
215 215
216 for (i=0; i < 30; i++) 216 for (i=0; i < 30; i++)
217 *(out++) = *(inp++); 217 *out++ = *inp++;
218 } 218 }
219 219
220 /** 220 /**
221 * Evaluate the reflection coefficients from the filter coefficients. 221 * Evaluate the reflection coefficients from the filter coefficients.
222 * Does the inverse of the eval_coefs() function. 222 * Does the inverse of the eval_coefs() function.