diff options
author | David Conrad <lessen42@gmail.com> | 2010-03-12 05:17:01 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2010-03-12 05:17:01 +0000 |
commit | 81b743eb1026547270b88ac6a5cb451a3907ee94 (patch) | |
tree | 02c6f6ecdf88081940e9d2b0ef5f06a75530f72f /libavformat/oggdec.h | |
parent | 8730fad595f5f391de21f6b41d04e22a4412e14e (diff) | |
download | ffmpeg-81b743eb1026547270b88ac6a5cb451a3907ee94.tar.gz |
oggdec: Pass packets to header() until the stream is done with them
This fixes some old ogm files that had the 3rd vorbis header after a data
packet in another stream. This is invalid in ogg, but this change shouldn't
affect the behaviour of any valid file.
Originally committed as revision 22478 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/oggdec.h')
-rw-r--r-- | libavformat/oggdec.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/oggdec.h b/libavformat/oggdec.h index e404e586ff..1aecd83d5a 100644 --- a/libavformat/oggdec.h +++ b/libavformat/oggdec.h @@ -62,7 +62,6 @@ struct ogg_stream { unsigned int pflags; unsigned int pduration; uint32_t serial; - uint32_t seq; uint64_t granule; int64_t lastpts; int64_t lastdts; |