Commit 0744daa8 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Do not print a useless error number if mov header reading fails.

The error string is printed by ffmpeg as for other demuxers.
parent ab1e4312
...@@ -3562,7 +3562,7 @@ static int mov_read_header(AVFormatContext *s) ...@@ -3562,7 +3562,7 @@ static int mov_read_header(AVFormatContext *s)
if (mov->moov_retry) if (mov->moov_retry)
avio_seek(pb, 0, SEEK_SET); avio_seek(pb, 0, SEEK_SET);
if ((err = mov_read_default(mov, pb, atom)) < 0) { if ((err = mov_read_default(mov, pb, atom)) < 0) {
av_log(s, AV_LOG_ERROR, "error reading header: %d\n", err); av_log(s, AV_LOG_ERROR, "error reading header\n");
mov_read_close(s); mov_read_close(s);
return err; return err;
} }
......
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