diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-06-23 20:28:00 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-06-23 20:28:00 +0000 |
commit | 94be3bb50ac2eddda8d15199bb0f34d5874c3142 (patch) | |
tree | 2f0e9cbcd5a07dad87849f4e88d934bbe947f411 | |
parent | 42b1459439a86c897a541a08bae48e86132b41c3 (diff) | |
download | ffmpeg-94be3bb50ac2eddda8d15199bb0f34d5874c3142.tar.gz |
More comments removal/fixes
Originally committed as revision 13924 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ra144.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c index 0fc1261575..942a0902e8 100644 --- a/libavcodec/ra144.c +++ b/libavcodec/ra144.c @@ -110,7 +110,7 @@ static void copy_and_dup(const int16_t *source, int16_t *target, int offset) } } -/* inverse root mean square */ +/** inverse root mean square */ static int irms(const int16_t *data, int factor) { unsigned int i, sum = 0; @@ -124,7 +124,6 @@ static int irms(const int16_t *data, int factor) return (0x20000000 / (t_sqrt(sum) >> 8)) * factor; } -/* multiply/add wavetable */ static void add_wav(int n, int skip_first, int *m, const int16_t *s1, const int8_t *s2, const int8_t *s3, int16_t *dest) { @@ -203,7 +202,6 @@ static unsigned int rms(const int *data) return res; } -/* do quarter-block output */ static void do_output_subblock(RA144Context *ractx, const uint16_t *lpc_coefs, unsigned int gval, GetBitContext *gb) @@ -372,7 +370,6 @@ static int ra144_decode_frame(AVCodecContext * avctx, int_to_int16(block_coefs[3], ractx->lpc_coef); - /* do output */ for (c=0; c<4; c++) { do_output_subblock(ractx, block_coefs[c], refl_rms[c], &gb); |