diff options
author | Martin Storsjö <martin@martin.st> | 2009-09-07 10:49:51 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-09-07 10:49:51 +0000 |
commit | b126dee96413730a41362952218ed4796b91f31c (patch) | |
tree | e6b49eab4a8cdcf82a6d5457d3f231e6cced1c58 /libavformat/flvdec.c | |
parent | 35c433d6714c94f45dd72f4c3be5da87e31ab07b (diff) | |
download | ffmpeg-b126dee96413730a41362952218ed4796b91f31c.tar.gz |
Use all 32 bits of the timestamp when calculating flv duration.
At the moment, duration is mainly set from the metadata packet. If that is not
available, the fallback is checking the low 24 bits of the last packet. This is
not enough for files over 4,6 hours in length, so read all 32 bits instead.
patch by Martin Storsjö, martin martin st
Originally committed as revision 19791 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/flvdec.c')
-rw-r--r-- | libavformat/flvdec.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c index 82e4b68a64..c982708e0a 100644 --- a/libavformat/flvdec.c +++ b/libavformat/flvdec.c @@ -369,7 +369,9 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt) size= get_be32(s->pb); url_fseek(s->pb, fsize-3-size, SEEK_SET); if(size == get_be24(s->pb) + 11){ - s->duration= get_be24(s->pb) * (int64_t)AV_TIME_BASE / 1000; + uint32_t ts = get_be24(s->pb); + ts |= get_byte(s->pb) << 24; + s->duration = ts * (int64_t)AV_TIME_BASE / 1000; } url_fseek(s->pb, pos, SEEK_SET); } |