[FFmpeg-soc] [soc]: r4991 - amr/amrnbdec.c

cmcq subversion at mplayerhq.hu
Sat Aug 8 22:49:13 CEST 2009


Author: cmcq
Date: Sat Aug  8 22:49:12 2009
New Revision: 4991

Log:
Remove or replace redundant comments

Modified:
   amr/amrnbdec.c

Modified: amr/amrnbdec.c
==============================================================================
--- amr/amrnbdec.c	Sat Aug  8 22:40:24 2009	(r4990)
+++ amr/amrnbdec.c	Sat Aug  8 22:49:12 2009	(r4991)
@@ -44,7 +44,7 @@
 typedef struct AMRContext {
     AMRNBFrame                        frame; ///< decoded AMR parameters (lsf coefficients, codebook indexes, etc)
     uint8_t             bad_frame_indicator; ///< bad frame ? 1 : 0
-    enum Mode                cur_frame_mode; ///< current frame mode
+    enum Mode                cur_frame_mode;
 
     float       prev_lsf_r[LP_FILTER_ORDER]; ///< residual LSF vector from previous subframe
     float           lsp[4][LP_FILTER_ORDER]; ///< lsp vectors from current frame
@@ -57,7 +57,7 @@ typedef struct AMRContext {
 
     uint8_t                   pitch_lag_int; ///< integer part of pitch lag from current subframe
 
-    float excitation_buf[PITCH_LAG_MAX + LP_FILTER_ORDER + 1 + AMR_SUBFRAME_SIZE]; ///< excitation buffer
+    float excitation_buf[PITCH_LAG_MAX + LP_FILTER_ORDER + 1 + AMR_SUBFRAME_SIZE]; ///< current excitation and all necessary excitation history
     float                       *excitation; ///< pointer to the current excitation vector in excitation_buf
 
     float   pitch_vector[AMR_SUBFRAME_SIZE]; ///< adaptive code book (pitch) vector


More information about the FFmpeg-soc mailing list