[FFmpeg-cvslog] r9728 - trunk/libavcodec/alac.c

vitor subversion
Wed Jul 18 08:17:20 CEST 2007


Author: vitor
Date: Wed Jul 18 08:17:20 2007
New Revision: 9728

Log:
Cosmetics: alignment

Modified:
   trunk/libavcodec/alac.c

Modified: trunk/libavcodec/alac.c
==============================================================================
--- trunk/libavcodec/alac.c	(original)
+++ trunk/libavcodec/alac.c	Wed Jul 18 08:17:20 2007
@@ -119,12 +119,13 @@ static int alac_set_info(ALACContext *al
 
     /* buffer size / 2 ? */
     alac->setinfo_max_samples_per_frame = bytestream_get_be32(&ptr);
-    alac->setinfo_7a = *ptr++;
-    alac->setinfo_sample_size = *ptr++;
-    alac->setinfo_rice_historymult = *ptr++;
-    alac->setinfo_rice_initialhistory = *ptr++;
-    alac->setinfo_rice_kmodifier = *ptr++;
-    alac->setinfo_7f = *ptr++; // channels?
+    alac->setinfo_7a                    = *ptr++;
+    alac->setinfo_sample_size           = *ptr++;
+    alac->setinfo_rice_historymult      = *ptr++;
+    alac->setinfo_rice_initialhistory   = *ptr++;
+    alac->setinfo_rice_kmodifier        = *ptr++;
+    /* channels? */
+    alac->setinfo_7f                    = *ptr++;
     alac->setinfo_80                    = bytestream_get_be16(&ptr);
     /* max coded frame size */
     alac->setinfo_82                    = bytestream_get_be32(&ptr);




More information about the ffmpeg-cvslog mailing list