aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-03-21 10:39:49 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-03-21 10:39:49 +0000
commite3c4740fd488e382445ed1414434bbf68eeb53e9 (patch)
treef7ddf910a4ed9afcdd04fdfa83c73ea18df64014 /libavformat/mov.c
parent9f6152dfdbbfd9c531a2603f93d0357cc1beda29 (diff)
downloadffmpeg-e3c4740fd488e382445ed1414434bbf68eeb53e9.tar.gz
indentation
Originally committed as revision 12528 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 16605b75f8..6b4cf2a246 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -132,10 +132,10 @@ typedef struct MOVContext {
/* those functions parse an atom */
/* return code:
- 1: found what I wanted, exit
- 0: continue to parse next atom
+ 1: found what I wanted, exit
+ 0: continue to parse next atom
-1: error occured, exit
- */
+*/
/* links atom IDs to parse functions */
typedef struct MOVParseTableEntry {
uint32_t type;
@@ -1565,7 +1565,7 @@ static int mov_read_header(AVFormatContext *s, AVFormatParameters *ap)
err = mov_read_default(mov, pb, atom);
if (err<0 || (!mov->found_moov && !mov->found_mdat)) {
av_log(s, AV_LOG_ERROR, "mov: header not found !!! (err:%d, moov:%d, mdat:%d) pos:%"PRId64"\n",
- err, mov->found_moov, mov->found_mdat, url_ftell(pb));
+ err, mov->found_moov, mov->found_mdat, url_ftell(pb));
return -1;
}
dprintf(mov->fc, "on_parse_exit_offset=%d\n", (int) url_ftell(pb));