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 | |
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
-rw-r--r-- | libavcodec/lpc.c | 6 | ||||
-rw-r--r-- | libavcodec/lpc.h | 10 |
2 files changed, 8 insertions, 8 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]; diff --git a/libavcodec/lpc.h b/libavcodec/lpc.h index db1a6432ec..b967ff59d9 100644 --- a/libavcodec/lpc.h +++ b/libavcodec/lpc.h @@ -31,16 +31,16 @@ #define ORDER_METHOD_SEARCH 4 #define ORDER_METHOD_LOG 5 -#define MIN_LPC_ORDER 1 -#define MAX_LPC_ORDER 32 +#define MIN_LPC_ORDER 1 +#define MAX_LPC_ORDER 32 /** * 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); #endif /* FFMPEG_LPC_H */ |