diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-02-24 14:51:16 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-02-26 01:03:12 +0100 |
commit | 5634ca6d378c0255977c83fdcdf0760a2b821ab4 (patch) | |
tree | ce991490a7ad224fac3c9aa679980ed40bff3a53 /libavformat/dss.c | |
parent | 8064265a38a3550c086c4a37c464c41ddd42cece (diff) | |
download | ffmpeg-5634ca6d378c0255977c83fdcdf0760a2b821ab4.tar.gz |
avformat/dss: set packet duration
Value taken from the decoder implementation
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/dss.c')
-rw-r--r-- | libavformat/dss.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |