]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Cosmetics: align spec references
authorvitor <vitor@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Thu, 11 Sep 2008 19:10:26 +0000 (19:10 +0000)
committervitor <vitor@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Thu, 11 Sep 2008 19:10:26 +0000 (19:10 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15300 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavcodec/ra288.c

index 467bbaa65f5c6432b69e443a6a41d67587031190..bdf245d45a306d0920106d475c775e1e5d2f4663 100644 (file)
 
 typedef struct {
     float sp_lpc[36];      ///< LPC coefficients for speech data (spec: A)
-    float gain_lpc[10];    ///< LPC coefficients for gain (spec: GB)
+    float gain_lpc[10];    ///< LPC coefficients for gain        (spec: GB)
 
-    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) */
+    /// speech part of the gain autocorrelation                  (spec: REXP)
     float sp_rec[37];
 
-    float gain_hist[38];   ///< log-gain history (spec: SBLG)
+    float gain_hist[38];   ///< log-gain history                 (spec: SBLG)
 
-    /** recursive part of the gain autocorrelation (spec: REXPLG) */
+    /// recursive part of the gain autocorrelation               (spec: REXPLG)
     float gain_rec[11];
 
-    float sp_block[41];    ///< four blocks of speech data (spec: STTMP)
-    float gain_block[10];  ///< four blocks of gain data (spec: GSTATE)
+    float sp_block[41];    ///< four blocks of speech data       (spec: STTMP)
+    float gain_block[10];  ///< four blocks of gain data         (spec: GSTATE)
 } RA288Context;
 
 static av_cold int ra288_decode_init(AVCodecContext *avctx)