[FFmpeg-cvslog] r21025 - trunk/libavformat/mov.c
bcoudurier
subversion
Mon Jan 4 23:59:43 CET 2010
Author: bcoudurier
Date: Mon Jan 4 23:59:43 2010
New Revision: 21025
Log:
cosmetics, remove useless parentheses, add space
Modified:
trunk/libavformat/mov.c
Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c Mon Jan 4 23:58:19 2010 (r21024)
+++ trunk/libavformat/mov.c Mon Jan 4 23:59:43 2010 (r21025)
@@ -184,7 +184,7 @@ static int mov_read_default(MOVContext *
if (atom.size < 0)
atom.size = INT64_MAX;
- while(((total_size + 8) < atom.size) && !url_feof(pb)) {
+ while (total_size + 8 < atom.size && !url_feof(pb)) {
int (*parse)(MOVContext*, ByteIOContext*, MOVAtom) = NULL;
a.size = atom.size;
a.type=0;
More information about the ffmpeg-cvslog
mailing list