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

jbr subversion
Sat Aug 16 23:32:03 CEST 2008


Author: jbr
Date: Sat Aug 16 23:32:03 2008
New Revision: 14795

Log:
cosmetics: adjust line breaks and vertical alignment

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

Modified: trunk/libavcodec/flacenc.c
==============================================================================
--- trunk/libavcodec/flacenc.c	(original)
+++ trunk/libavcodec/flacenc.c	Sat Aug 16 23:32:03 2008
@@ -855,8 +855,9 @@ static int encode_residual(FlacEncodeCon
     }
 
     /* LPC */
-    opt_order = ff_lpc_calc_coefs(&ctx->dsp, smp, n, min_order, max_order, precision, coefs,
-                               shift, ctx->options.use_lpc, omethod, MAX_LPC_SHIFT, 0);
+    opt_order = ff_lpc_calc_coefs(&ctx->dsp, smp, n, min_order, max_order,
+                                  precision, coefs, shift, ctx->options.use_lpc,
+                                  omethod, MAX_LPC_SHIFT, 0);
 
     if(omethod == ORDER_METHOD_2LEVEL ||
        omethod == ORDER_METHOD_4LEVEL ||

Modified: trunk/libavcodec/lpc.c
==============================================================================
--- trunk/libavcodec/lpc.c	(original)
+++ trunk/libavcodec/lpc.c	Sat Aug 16 23:32:03 2008
@@ -135,9 +135,10 @@ 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 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];

Modified: trunk/libavcodec/lpc.h
==============================================================================
--- trunk/libavcodec/lpc.h	(original)
+++ trunk/libavcodec/lpc.h	Sat Aug 16 23:32:03 2008
@@ -39,8 +39,9 @@
  * 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);
 
 #endif /* FFMPEG_LPC_H */




More information about the ffmpeg-cvslog mailing list