Cosmetics: align comments
authorVitor Sessak <vitor1001@gmail.com>
Mon, 28 Jul 2008 05:16:51 +0000 (05:16 +0000)
committerVitor Sessak <vitor1001@gmail.com>
Mon, 28 Jul 2008 05:16:51 +0000 (05:16 +0000)
Originally committed as revision 14453 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/ra288.c

index cead6bc..16bb565 100644 (file)
 #include "ra288.h"
 
 typedef struct {
-    float sp_lpc[36];   ///< LPC coefficients for speech data (spec: A)
-    float gain_lpc[10]; ///< LPC coefficients for gain (spec: GB)
+    float sp_lpc[36];      ///< LPC coefficients for speech data (spec: A)
+    float gain_lpc[10];    ///< LPC coefficients for gain (spec: GB)
     int   phase;
 
-    float sp_hist[111]; ///< Speech data history (spec: SB)
+    float sp_hist[111];    ///< Speech data history (spec: SB)
 
     /** Speech part of the gain autocorrelation (spec: REXP) */
     float sp_rec[37];