diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-07-28 05:16:51 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-07-28 05:16:51 +0000 |
commit | 6509507fad19f1b2218b83b7b1a2d4ed51c42753 (patch) | |
tree | 1965c413121ac81161b829ed7c08ff50c510da61 /libavcodec/ra288.c | |
parent | f285e6dd315696988651ee0368594a846bbe892a (diff) | |
download | ffmpeg-6509507fad19f1b2218b83b7b1a2d4ed51c42753.tar.gz |
Cosmetics: align comments
Originally committed as revision 14453 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ra288.c')
-rw-r--r-- | libavcodec/ra288.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c index cead6bc006..16bb5656cc 100644 --- a/libavcodec/ra288.c +++ b/libavcodec/ra288.c @@ -25,11 +25,11 @@ #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]; |