summaryrefslogtreecommitdiff
path: root/libavcodec/lpc.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2008-08-16 21:32:03 +0000
committerJustin Ruggles <justin.ruggles@gmail.com>2008-08-16 21:32:03 +0000
commit9045f5e72d6916bd93e0a9b26a8e4a2598fee6f1 (patch)
tree79ef5d1e12617dca9437080c784ec5f4423a9b94 /libavcodec/lpc.c
parent56c07e298914d0533a74bb4ba4be4abc8ea6b245 (diff)
cosmetics: adjust line breaks and vertical alignment
Originally committed as revision 14795 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/lpc.c')
-rw-r--r--libavcodec/lpc.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/libavcodec/lpc.c b/libavcodec/lpc.c
index 792abe4d1c..8c21a2c4e5 100644
--- a/libavcodec/lpc.c
+++ b/libavcodec/lpc.c
@@ -135,9 +135,10 @@ static int estimate_best_order(double *ref, int max_order)
* Calculate LPC coefficients for multiple orders
*/
int ff_lpc_calc_coefs(DSPContext *s,
- const int32_t *samples, int blocksize, int min_order, int max_order,
- int precision, int32_t coefs[][MAX_LPC_ORDER],
- int *shift, int use_lpc, int omethod, int max_shift, int zero_shift)
+ const int32_t *samples, int blocksize, int min_order,
+ int max_order, int precision,
+ int32_t coefs[][MAX_LPC_ORDER], int *shift, int use_lpc,
+ int omethod, int max_shift, int zero_shift)
{
double autoc[MAX_LPC_ORDER+1];
double ref[MAX_LPC_ORDER];