[FFmpeg-cvslog] r14792 - in trunk/libavcodec: lpc.c lpc.h

ramiro subversion
Sat Aug 16 19:28:29 CEST 2008


Author: ramiro
Date: Sat Aug 16 19:28:29 2008
New Revision: 14792

Log:
lpc: cosmetics: vertically align declarations and definitions.

Modified:
   trunk/libavcodec/lpc.c
   trunk/libavcodec/lpc.h

Modified: trunk/libavcodec/lpc.c
==============================================================================
--- trunk/libavcodec/lpc.c	(original)
+++ trunk/libavcodec/lpc.c	Sat Aug 16 19:28:29 2008
@@ -135,9 +135,9 @@ static int estimate_best_order(double *r
  * 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];

Modified: trunk/libavcodec/lpc.h
==============================================================================
--- trunk/libavcodec/lpc.h	(original)
+++ trunk/libavcodec/lpc.h	Sat Aug 16 19:28:29 2008
@@ -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 */




More information about the ffmpeg-cvslog mailing list