summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2010-01-04 22:59:43 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2010-01-04 22:59:43 +0000
commit7b1312fa55d5f3d413319b53996efecc5b86d014 (patch)
tree91e437e58381f52c168700f6974a175bbe11cb3c /libavformat/mov.c
parenta510991cffb7230563d9b4f5b87c547462dae01e (diff)
cosmetics, remove useless parentheses, add space
Originally committed as revision 21025 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 2b045bdcf5..f4151bd879 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -184,7 +184,7 @@ static int mov_read_default(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
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;