comparison ra144.c @ 11867:ba4e21f7bd3a libavcodec

Cosmetics: indent Patch by Francesco Lavra (firstnamelastname@interfree.it)
author vitor
date Fri, 11 Jun 2010 08:04:22 +0000
parents 0d8f35836b20
children 159554445343
comparison
equal deleted inserted replaced
11866:0d8f35836b20 11867:ba4e21f7bd3a
1501 lpc_refl_cb1, lpc_refl_cb2, lpc_refl_cb3, lpc_refl_cb4, lpc_refl_cb5, 1501 lpc_refl_cb1, lpc_refl_cb2, lpc_refl_cb3, lpc_refl_cb4, lpc_refl_cb5,
1502 lpc_refl_cb6, lpc_refl_cb7, lpc_refl_cb8, lpc_refl_cb9, lpc_refl_cb10 1502 lpc_refl_cb6, lpc_refl_cb7, lpc_refl_cb8, lpc_refl_cb9, lpc_refl_cb10
1503 }; 1503 };
1504 1504
1505 void ff_add_wav(int16_t *dest, int n, int skip_first, int *m, const int16_t *s1, 1505 void ff_add_wav(int16_t *dest, int n, int skip_first, int *m, const int16_t *s1,
1506 const int8_t *s2, const int8_t *s3) 1506 const int8_t *s2, const int8_t *s3)
1507 { 1507 {
1508 int i; 1508 int i;
1509 int v[3]; 1509 int v[3];
1510 1510
1511 v[0] = 0; 1511 v[0] = 0;
1577 return 0; 1577 return 0;
1578 } 1578 }
1579 1579
1580 /** 1580 /**
1581 * Evaluate the LPC filter coefficients from the reflection coefficients. 1581 * Evaluate the LPC filter coefficients from the reflection coefficients.
1582 * Does the inverse of the eval_refl() function. 1582 * Does the inverse of the ff_eval_refl() function.
1583 */ 1583 */
1584 void ff_eval_coefs(int *coefs, const int *refl) 1584 void ff_eval_coefs(int *coefs, const int *refl)
1585 { 1585 {
1586 int buffer[10]; 1586 int buffer[10];
1587 int *b1 = buffer; 1587 int *b1 = buffer;