changeset 7110:f9ebb1553982 libavcodec

More comments removal/fixes
author vitor
date Mon, 23 Jun 2008 20:28:00 +0000
parents c6b0282e4eff
children dbe0081e2c01
files ra144.c
diffstat 1 files changed, 1 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/ra144.c	Mon Jun 23 20:26:57 2008 +0000
+++ b/ra144.c	Mon Jun 23 20:28:00 2008 +0000
@@ -110,7 +110,7 @@
     }
 }
 
-/* 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 @@
     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 @@
     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 @@
 
     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);