Commit 612b5cbb authored by Baptiste Coudurier's avatar Baptiste Coudurier

better error message

Originally committed as revision 12756 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 4764fdc9
...@@ -1709,10 +1709,12 @@ static int mov_read_header(AVFormatContext *s, AVFormatParameters *ap) ...@@ -1709,10 +1709,12 @@ static int mov_read_header(AVFormatContext *s, AVFormatParameters *ap)
atom.size = INT64_MAX; atom.size = INT64_MAX;
/* check MOV header */ /* check MOV header */
err = mov_read_default(mov, pb, atom); if ((err = mov_read_default(mov, pb, atom)) < 0) {
if (err<0 || (!mov->found_moov && !mov->found_mdat)) { av_log(s, AV_LOG_ERROR, "error reading header: %d\n", err);
av_log(s, AV_LOG_ERROR, "mov: header not found !!! (err:%d, moov:%d, mdat:%d) pos:%"PRId64"\n", return err;
err, mov->found_moov, mov->found_mdat, url_ftell(pb)); }
if (!mov->found_moov) {
av_log(s, AV_LOG_ERROR, "moov atom not found\n");
return -1; return -1;
} }
dprintf(mov->fc, "on_parse_exit_offset=%d\n", (int) url_ftell(pb)); dprintf(mov->fc, "on_parse_exit_offset=%d\n", (int) url_ftell(pb));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment