Allow decoding of slightly broken Nikon avi files.

Fixes ticket #3330.
This commit is contained in:
Carl Eugen Hoyos 2014-01-20 01:44:07 +01:00
parent f29cdbe1b5
commit f9c2d4d17e
1 changed files with 2 additions and 0 deletions

View File

@ -350,6 +350,8 @@ static void avi_read_nikon(AVFormatContext *s, uint64_t end)
uint16_t size = avio_rl16(s->pb);
const char *name = NULL;
char buffer[64] = { 0 };
if (avio_tell(s->pb) + size > tag_end)
size = tag_end - avio_tell(s->pb);
size -= avio_read(s->pb, buffer,
FFMIN(size, sizeof(buffer) - 1));
switch (tag) {