]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/lpc.h
More okayed chunks of AAC encoder
[ffmpeg] / libavcodec / lpc.h
index 6c7c2eba939df86c7d50868702c9e5b534d84adc..6e74c0dd00d750c92019127a83e78ef94538c5d3 100644 (file)
@@ -1,6 +1,6 @@
 /**
  * LPC utility code
- * Copyright (c) 2006  Justin Ruggles <jruggle@earthlink.net>
+ * Copyright (c) 2006  Justin Ruggles <justin.ruggles@gmail.com>
  *
  * This file is part of FFmpeg.
  *
@@ -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 */