On Fri, 13 Dec 2013, Luca Barbato wrote:
On 13/12/13 23:01, Martin Storsjö wrote:
From: Michael Niedermayer <[email protected]>
Also remove a silly leftover pair of parentheses.
---
libavformat/hdsenc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/hdsenc.c b/libavformat/hdsenc.c
index 6d5b127..ea6e77c 100644
--- a/libavformat/hdsenc.c
+++ b/libavformat/hdsenc.c
@@ -509,7 +509,7 @@ static int hds_write_packet(AVFormatContext *s, AVPacket
*pkt)
HDSContext *c = s->priv_data;
AVStream *st = s->streams[pkt->stream_index];
OutputStream *os = &c->streams[s->streams[pkt->stream_index]->id];
- int64_t end_dts = (os->fragment_index) * c->min_frag_duration;
+ int64_t end_dts = os->fragment_index * (int64_t) c->min_frag_duration;
int ret;
if (st->first_dts == AV_NOPTS_VALUE)
Probably ok, you know that code better than me, which is the timebase in
which that value is expressed? I wonder if min_frag_duration has an
upper bound.
It's milliseconds - the overflow would happen after 47 days or so, but
this is clearly what I intended since the variable is 64 bit.
// Martin
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel