From 5634ca6d378c0255977c83fdcdf0760a2b821ab4 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 24 Feb 2015 14:51:16 +0100 Subject: [PATCH] avformat/dss: set packet duration Value taken from the decoder implementation Signed-off-by: Michael Niedermayer --- libavformat/dss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/dss.c b/libavformat/dss.c index 2830b907a4..0992d68339 100644 --- a/libavformat/dss.c +++ b/libavformat/dss.c @@ -228,7 +228,7 @@ static int dss_sp_read_packet(AVFormatContext *s, AVPacket *pkt) if (ret < 0) return ret; - pkt->duration = 0; + pkt->duration = 264; pkt->pos = pos; pkt->stream_index = 0;