[FFmpeg-cvslog] r13830 - trunk/libavcodec/ra144.c

vitor subversion
Thu Jun 19 22:51:57 CEST 2008


Author: vitor
Date: Thu Jun 19 22:51:56 2008
New Revision: 13830

Log:
Misc cosmetics

Modified:
   trunk/libavcodec/ra144.c

Modified: trunk/libavcodec/ra144.c
==============================================================================
--- trunk/libavcodec/ra144.c	(original)
+++ trunk/libavcodec/ra144.c	Thu Jun 19 22:51:56 2008
@@ -135,9 +135,8 @@ static void add_wav(int n, int skip_firs
         dest[i] = ((*(s1++))*v[0] + (*(s2++))*v[1] + (*(s3++))*v[2]) >> 12;
 }
 
-
 static void lpc_filter(const int16_t *lpc_coefs, const int16_t *adapt_coef,
-                  void *out, int *statbuf, int len)
+                       void *out, int *statbuf, int len)
 {
     int x, i;
     uint16_t work[50];
@@ -331,7 +330,7 @@ static int ra144_decode_frame(AVCodecCon
                               const uint8_t * buf, int buf_size)
 {
     static const uint8_t sizes[10] = {6, 5, 5, 4, 4, 3, 3, 3, 3, 2};
-    unsigned int refl_rms[4];  // RMS of the reflection coefficients
+    unsigned int refl_rms[4];    // RMS of the reflection coefficients
     uint16_t block_coefs[4][30]; // LPC coefficients of each sub-block
     unsigned int lpc_refl[10];   // LPC reflection coefficients of the frame
     int i, c;
@@ -384,7 +383,6 @@ static int ra144_decode_frame(AVCodecCon
     return 20;
 }
 
-
 AVCodec ra_144_decoder =
 {
     "real_144",




More information about the ffmpeg-cvslog mailing list