[FFmpeg-cvslog] r16213 - trunk/libavformat/mov.c

bcoudurier subversion
Thu Dec 18 10:18:43 CET 2008


Author: bcoudurier
Date: Thu Dec 18 10:18:43 2008
New Revision: 16213

Log:
cosmetics, remove useless parenthesis and whitespaces

Modified:
   trunk/libavformat/mov.c

Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c	(original)
+++ trunk/libavformat/mov.c	Thu Dec 18 10:18:43 2008
@@ -1034,8 +1034,8 @@ static int mov_read_stsd(MOVContext *c, 
         break;
     case CODEC_ID_ALAC:
         if (st->codec->extradata_size == 36) {
-            st->codec->frame_size = AV_RB32((st->codec->extradata+12));
-            st->codec->channels   = AV_RB8  (st->codec->extradata+21);
+            st->codec->frame_size = AV_RB32(st->codec->extradata+12);
+            st->codec->channels   = AV_RB8 (st->codec->extradata+21);
         }
         break;
     default:




More information about the ffmpeg-cvslog mailing list