[FFmpeg-soc] [soc]: r1531 - amr/amrnbfloatdec.c

superdump subversion at mplayerhq.hu
Tue Dec 4 17:45:33 CET 2007


Author: superdump
Date: Tue Dec  4 17:45:32 2007
New Revision: 1531

Log:
Add missing doxygen comment and fix typo


Modified:
   amr/amrnbfloatdec.c

Modified: amr/amrnbfloatdec.c
==============================================================================
--- amr/amrnbfloatdec.c	(original)
+++ amr/amrnbfloatdec.c	Tue Dec  4 17:45:32 2007
@@ -46,7 +46,7 @@ typedef struct AMRContext {
     int                      cur_frame_mode; ///< current frame mode
     int                      cur_frame_type; ///< current frame type
 
-    float       prev_lsf_r[LP_FILTER_ORDER];
+    float       prev_lsf_r[LP_FILTER_ORDER]; ///< residual LSF vector from previous subframe
     float           lsp[4][LP_FILTER_ORDER]; ///< lsp vectors from current frame
     float    prev_lsp_sub4[LP_FILTER_ORDER]; ///< lsp vector for the 4th subframe of the previous frame
 
@@ -277,7 +277,7 @@ static void lsf2lsp_5(AMRContext *p) {
         lsf_q[0][i] = lsf_r[0][i] + temp;
         lsf_q[1][i] = lsf_r[1][i] + temp;
     }
-    // update residual LSD vector from previous subframe
+    // update residual LSF vector from previous subframe
     memcpy(p->prev_lsf_r, lsf_r[1], LP_FILTER_ORDER*sizeof(float));
 
     // convert LSF vectors to LSP vectors



More information about the FFmpeg-soc mailing list