diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-09-11 19:10:26 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-09-11 19:10:26 +0000 |
commit | 9c10ab6cd119fa8b13851a4dfa444ad1876e5d88 (patch) | |
tree | 314a9404e9a58396d22d054b1eac7ea420682431 | |
parent | 5381a00a2b666d41c711f74522b4b400eaaf8c22 (diff) | |
download | ffmpeg-9c10ab6cd119fa8b13851a4dfa444ad1876e5d88.tar.gz |
Cosmetics: align spec references
Originally committed as revision 15300 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ra288.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c index 467bbaa65f..bdf245d45a 100644 --- a/libavcodec/ra288.c +++ b/libavcodec/ra288.c @@ -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) |