git.videolan.org
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
oggparseskeleton: avoid header parsing failure
[ffmpeg.git]
/
libavformat
/
oggparseskeleton.c
diff --git
a/libavformat/oggparseskeleton.c
b/libavformat/oggparseskeleton.c
index
b012105
..
d94b0c2
100644
(file)
--- a/
libavformat/oggparseskeleton.c
+++ b/
libavformat/oggparseskeleton.c
@@
-37,6
+37,9
@@
static int skeleton_header(AVFormatContext *s, int idx)
strcpy(st->codec->codec_name, "skeleton");
st->codec->codec_type = AVMEDIA_TYPE_DATA;
+ if ((os->flags & OGG_FLAG_EOS) && os->psize == 0)
+ return 1;
+
if (os->psize < 8)
return -1;