Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamiro Polla <ramiro.polla@gmail.com>2008-08-16 21:28:29 +0400
committerRamiro Polla <ramiro.polla@gmail.com>2008-08-16 21:28:29 +0400
commite9e3c9801ec7445652cae3b2569b737ec391973b (patch)
tree29f320bba2921fa36bd6c0c9b7659d56bf61a6c5 /libavcodec/lpc.h
parent1b0f6fb830f330a550966cfa35808086693d14f5 (diff)
lpc: cosmetics: vertically align declarations and definitions.
Originally committed as revision 14792 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/lpc.h')
-rw-r--r--libavcodec/lpc.h10
1 files changed, 5 insertions, 5 deletions
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 */