diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2009-10-12 21:30:03 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2009-10-12 21:30:03 +0000 |
commit | 15299b3821bff66ab89895c95cc06d0908f8ec7b (patch) | |
tree | 6848af47a4dcab535b775f5eefbbfc2dddbe071b /libavformat/oggdec.h | |
parent | 933e8667350b118d9fda540e73bfae59e09b925b (diff) | |
download | ffmpeg-15299b3821bff66ab89895c95cc06d0908f8ec7b.tar.gz |
Calculate correct packet durations when demuxing Ogg/Speex. This involves
determining if there is any delay in the first packet and/or any truncation in
the final packet.
Originally committed as revision 20216 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 91a59742ff..cefde7e2fd 100644 --- a/libavformat/oggdec.h +++ b/libavformat/oggdec.h @@ -50,6 +50,7 @@ struct ogg_stream { unsigned int pstart; unsigned int psize; unsigned int pflags; + unsigned int pduration; uint32_t serial; uint32_t seq; uint64_t granule, lastgp; |