diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-08-24 23:13:57 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-08-24 23:13:57 +0200 |
commit | d2cab951e32d7688d41f475cd55475772c70dd39 (patch) | |
tree | d7f159357e1835b90c6d0da7a7560efc0bd9eae5 /libavformat/oggdec.h | |
parent | bd4640375e24fc0aa8846d9ee42cebe3c1fa9c12 (diff) | |
download | ffmpeg-d2cab951e32d7688d41f475cd55475772c70dd39.tar.gz |
oggdec: Make sure start time correction is applied once to each stream
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/oggdec.h')
-rw-r--r-- | libavformat/oggdec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/oggdec.h b/libavformat/oggdec.h index 184a628622..7f5452f2b0 100644 --- a/libavformat/oggdec.h +++ b/libavformat/oggdec.h @@ -75,6 +75,7 @@ struct ogg_stream { int incomplete; ///< whether we're expecting a continuation in the next page int page_end; ///< current packet is the last one completed in the page int keyframe_seek; + int got_start; void *private; }; |