comparison mov.c @ 5497:59df3b64dc89 libavformat

cosmetics, remove useless parentheses, add space
author bcoudurier
date Mon, 04 Jan 2010 22:59:43 +0000
parents 324c7c25e4ad
children 3a5082b94ab3
comparison
equal deleted inserted replaced
5496:324c7c25e4ad 5497:59df3b64dc89
182 MOVAtom a; 182 MOVAtom a;
183 int i; 183 int i;
184 184
185 if (atom.size < 0) 185 if (atom.size < 0)
186 atom.size = INT64_MAX; 186 atom.size = INT64_MAX;
187 while(((total_size + 8) < atom.size) && !url_feof(pb)) { 187 while (total_size + 8 < atom.size && !url_feof(pb)) {
188 int (*parse)(MOVContext*, ByteIOContext*, MOVAtom) = NULL; 188 int (*parse)(MOVContext*, ByteIOContext*, MOVAtom) = NULL;
189 a.size = atom.size; 189 a.size = atom.size;
190 a.type=0; 190 a.type=0;
191 if(atom.size >= 8) { 191 if(atom.size >= 8) {
192 a.size = get_be32(pb); 192 a.size = get_be32(pb);