diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2008-08-16 17:28:29 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2008-08-16 17:28:29 +0000 |
commit | e9e3c9801ec7445652cae3b2569b737ec391973b (patch) | |
tree | 29f320bba2921fa36bd6c0c9b7659d56bf61a6c5 /libavcodec/lpc.c | |
parent | 1b0f6fb830f330a550966cfa35808086693d14f5 (diff) | |
download | ffmpeg-e9e3c9801ec7445652cae3b2569b737ec391973b.tar.gz |
lpc: cosmetics: vertically align declarations and definitions.
Originally committed as revision 14792 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/lpc.c')
-rw-r--r-- | libavcodec/lpc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/lpc.c b/libavcodec/lpc.c index 2c34233ead..bdea026542 100644 --- a/libavcodec/lpc.c +++ b/libavcodec/lpc.c @@ -135,9 +135,9 @@ 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 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 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]; |