mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
better error message
Originally committed as revision 12756 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
4764fdc987
commit
612b5cbb24
@ -1709,10 +1709,12 @@ static int mov_read_header(AVFormatContext *s, AVFormatParameters *ap)
|
||||
atom.size = INT64_MAX;
|
||||
|
||||
/* check MOV header */
|
||||
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));
|
||||
if ((err = mov_read_default(mov, pb, atom)) < 0) {
|
||||
av_log(s, AV_LOG_ERROR, "error reading header: %d\n", err);
|
||||
return err;
|
||||
}
|
||||
if (!mov->found_moov) {
|
||||
av_log(s, AV_LOG_ERROR, "moov atom not found\n");
|
||||
return -1;
|
||||
}
|
||||
dprintf(mov->fc, "on_parse_exit_offset=%d\n", (int) url_ftell(pb));
|
||||
|
Loading…
Reference in New Issue
Block a user