diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-05-27 16:14:31 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-05-27 16:14:31 +0000 |
commit | 1fe50db3f2429cf84e0305d959a9db9ed7f22588 (patch) | |
tree | 14413645eac9289190ad6289f03f1e921b4d497f /libavcodec/ra144.c | |
parent | 1a592ecc476ec58be430636f1ad07a7dd86089e1 (diff) | |
download | ffmpeg-1fe50db3f2429cf84e0305d959a9db9ed7f22588.tar.gz |
Fix doxy comments
Originally committed as revision 13468 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ra144.c')
-rw-r--r-- | libavcodec/ra144.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c index 850b8992a4..10bfbf914a 100644 --- a/libavcodec/ra144.c +++ b/libavcodec/ra144.c @@ -35,13 +35,13 @@ typedef struct { /* the swapped buffers */ unsigned int lpc_tables[4][10]; - unsigned int *lpc_refl; //< LPC reflection coefficients - unsigned int *lpc_coef; //< LPC coefficients - unsigned int *lpc_refl_old; //< previous frame LPC reflection coefs - unsigned int *lpc_coef_old; //< previous frame LPC coefficients + unsigned int *lpc_refl; ///< LPC reflection coefficients + unsigned int *lpc_coef; ///< LPC coefficients + unsigned int *lpc_refl_old; ///< previous frame LPC reflection coefs + unsigned int *lpc_coef_old; ///< previous frame LPC coefficients unsigned int buffer[5]; - uint16_t adapt_cb[148]; //< adaptive codebook + uint16_t adapt_cb[148]; ///< adaptive codebook } RA144Context; static int ra144_decode_init(AVCodecContext * avctx) |