cosmetics: adjust line breaks and vertical alignment
authorJustin Ruggles <justin.ruggles@gmail.com>
Sat, 16 Aug 2008 21:32:03 +0000 (21:32 +0000)
committerJustin Ruggles <justin.ruggles@gmail.com>
Sat, 16 Aug 2008 21:32:03 +0000 (21:32 +0000)
Originally committed as revision 14795 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/flacenc.c
libavcodec/lpc.c
libavcodec/lpc.h

index ea10436..3e208dc 100644 (file)
@@ -855,8 +855,9 @@ static int encode_residual(FlacEncodeContext *ctx, int ch)
     }
 
     /* 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 ||
index 792abe4..8c21a2c 100644 (file)
@@ -135,9 +135,10 @@ 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 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];
index 6c7c2eb..94eb787 100644 (file)
@@ -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 */