[FFmpeg-soc] [soc]: r3060 - aac/aac.h

superdump subversion at mplayerhq.hu
Thu Aug 7 13:41:39 CEST 2008


Author: superdump
Date: Thu Aug  7 13:41:39 2008
New Revision: 3060

Log:
Move enum comments next to values, rather than being in the main comment


Modified:
   aac/aac.h

Modified: aac/aac.h
==============================================================================
--- aac/aac.h	(original)
+++ aac/aac.h	Thu Aug  7 13:41:39 2008
@@ -142,13 +142,11 @@ enum ChannelType {
 
 /**
  * mix-down channel types
- * MIXDOWN_CENTER is the index into the mix-down arrays for a Single Channel Element with AAC_CHANNEL_FRONT.
- * MIXDOWN_(BACK|FRONT) are the indices for Channel Pair Elements with AAC_CHANNEL_(BACK|FRONT).
  */
 enum {
-    MIXDOWN_CENTER,
-    MIXDOWN_FRONT,
-    MIXDOWN_BACK,
+    MIXDOWN_CENTER, ///< MIXDOWN_CENTER is the index into the mix-down arrays for a Single Channel Element with AAC_CHANNEL_FRONT.
+    MIXDOWN_FRONT,  ///< MIXDOWN_FRONT is the index for a Channel Pair Element with AAC_CHANNEL_FRONT.
+    MIXDOWN_BACK,   ///< MIXDOWN_BACK is the index for a Channel Pair Element with AAC_CHANNEL_BACK.
 };
 
 /**



More information about the FFmpeg-soc mailing list