Commit 38b701a3 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '5b4eb243'

* commit '5b4eb243':
  mov: Seek back if overreading an individual atom

Conflicts:
	libavformat/mov.c
See: 6093960aMerged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 0b95f011 5b4eb243
......@@ -2956,8 +2956,10 @@ static int mov_read_default(MOVContext *c, AVIOContext *pb, MOVAtom atom)
left = a.size - avio_tell(pb) + start_pos;
if (left > 0) /* skip garbage at atom end */
avio_skip(pb, left);
else if(left < 0) {
av_log(c->fc, AV_LOG_DEBUG, "undoing overread of %"PRId64" in '%.4s'\n", -left, (char*)&a.type);
else if (left < 0) {
av_log(c->fc, AV_LOG_WARNING,
"overread end of atom '%.4s' by %"PRId64" bytes\n",
(char*)&a.type, -left);
avio_seek(pb, left, SEEK_CUR);
}
}
......
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