[FFmpeg-soc] [soc]: r2856 - aac/aac.c

superdump subversion at mplayerhq.hu
Sun Jul 27 11:53:32 CEST 2008


Author: superdump
Date: Sun Jul 27 11:53:32 2008
New Revision: 2856

Log:
Add doxygen comments for band types


Modified:
   aac/aac.c

Modified: aac/aac.c
==============================================================================
--- aac/aac.c	(original)
+++ aac/aac.c	Sun Jul 27 11:53:32 2008
@@ -174,12 +174,12 @@ enum WindowSequence {
 };
 
 enum BandType {
-    ZERO_BT        = 0,
+    ZERO_BT        = 0,     ///< Scalefactors and spectral data are all zero.
     FIRST_PAIR_BT  = 5,
-    ESC_BT         = 11,
-    NOISE_BT       = 13,
-    INTENSITY_BT2  = 14,
-    INTENSITY_BT   = 15,
+    ESC_BT         = 11,    ///< Spectral data are coded with an escape sequence.
+    NOISE_BT       = 13,    ///< Spectral data are scaled white noise not coded in the bitstream.
+    INTENSITY_BT2  = 14,    ///< Scalefactor data are intensity stereo positions.
+    INTENSITY_BT   = 15,    ///< Scalefactor data are intensity stereo positions.
     ESC_FLAG       = 16,
 };
 



More information about the FFmpeg-soc mailing list