# HG changeset patch # User vitor # Date 1221160226 0 # Node ID 2bfde5b45e015be335a5b3ac893ab665b07fa6d9 # Parent f29ec8e5d186f90df4dace105a7d73db2f1004fc Cosmetics: align spec references diff -r f29ec8e5d186 -r 2bfde5b45e01 ra288.c --- a/ra288.c Thu Sep 11 19:06:54 2008 +0000 +++ b/ra288.c Thu Sep 11 19:10:26 2008 +0000 @@ -27,20 +27,20 @@ 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)