[FFmpeg-soc] [soc]: r1069 - in qcelp: qcelpdata.h qcelpdec.c

reynaldo subversion at mplayerhq.hu
Mon Aug 20 19:05:46 CEST 2007


Author: reynaldo
Date: Mon Aug 20 19:05:46 2007
New Revision: 1069

Log:
Fix nits spoted by Diego

Modified:
   qcelp/qcelpdata.h
   qcelp/qcelpdec.c

Modified: qcelp/qcelpdata.h
==============================================================================
--- qcelp/qcelpdata.h	(original)
+++ qcelp/qcelpdata.h	Mon Aug 20 19:05:46 2007
@@ -28,7 +28,7 @@
 
 /**
  * TIA/EIA/IS-733 Spec has errors on the predictor determination formula
- * at equation 2.4.6.1-4 -- The predictor there needs 6 to be sustracted
+ * at equation 2.4.6.1-4 -- The predictor there needs 6 to be subtracted
  * from it to give RI compliants results. The problem is it ignores the
  * fact that codebook subframes 4,8,12 and 16 on a FULL_RATE frame use a
  * different quantizer table.

Modified: qcelp/qcelpdec.c
==============================================================================
--- qcelp/qcelpdec.c	(original)
+++ qcelp/qcelpdec.c	Mon Aug 20 19:05:46 2007
@@ -185,7 +185,7 @@ void qcelp_decode_params(AVCodecContext 
 
                 /**
                  * Spec has errors on the predictor determination formula
-                 * it needs 6 to be sustracted from it to give RI results.
+                 * it needs 6 to be subtracted from it to give RI results.
                  */
 
                 if(frame->rate == RATE_FULL && i > 0 && !((i+1) & 3))
@@ -671,7 +671,7 @@ static int qcelp_decode_frame(AVCodecCon
     init_get_bits(&q->gb, buf, buf_size*8);
 
     /**
-     * Figure out frame's rate by its size, set up a few utility vars
+     * Figure out framerate by its size, set up a few utility vars
      * and point 'order' to the rate's reference _slice_ inside the
      * big REFERENCE_FRAME array.
      */



More information about the FFmpeg-soc mailing list