OSDN Git Service

Cosmetics: indent
authorFrancesco Lavra <francescolavra@interfree.it>
Fri, 11 Jun 2010 08:04:22 +0000 (08:04 +0000)
committerVitor Sessak <vitor1001@gmail.com>
Fri, 11 Jun 2010 08:04:22 +0000 (08:04 +0000)
Patch by Francesco Lavra (firstnamelastname@interfree.it)

Originally committed as revision 23575 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/ra144.c
libavcodec/ra144.h

index d49e0a0..c528c32 100644 (file)
@@ -1503,7 +1503,7 @@ const int16_t * const ff_lpc_refl_cb[10]={
 };
 
 void ff_add_wav(int16_t *dest, int n, int skip_first, int *m, const int16_t *s1,
-             const int8_t *s2, const int8_t *s3)
+                const int8_t *s2, const int8_t *s3)
 {
     int i;
     int v[3];
@@ -1579,7 +1579,7 @@ int ff_eval_refl(int *refl, const int16_t *coefs, AVCodecContext *avctx)
 
 /**
  * Evaluate the LPC filter coefficients from the reflection coefficients.
- * Does the inverse of the eval_refl() function.
+ * Does the inverse of the ff_eval_refl() function.
  */
 void ff_eval_coefs(int *coefs, const int *refl)
 {
index 965a450..26ca5a5 100644 (file)
@@ -50,7 +50,7 @@ typedef struct {
 } RA144Context;
 
 void ff_add_wav(int16_t *dest, int n, int skip_first, int *m, const int16_t *s1,
-             const int8_t *s2, const int8_t *s3);
+                const int8_t *s2, const int8_t *s3);
 void ff_copy_and_dup(int16_t *target, const int16_t *source, int offset);
 int ff_eval_refl(int *refl, const int16_t *coefs, AVCodecContext *avctx);
 void ff_eval_coefs(int *coefs, const int *refl);