From dad54e4a62ae5d81c33530f2748f57e40363921d Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 19 May 2014 16:07:50 +0200 Subject: ffmpeg: set dts for subtitles dts is not optional, its required for muxing, previously it was set from AVStream.pts Signed-off-by: Michael Niedermayer --- ffmpeg.c | 1 + 1 file changed, 1 insertion(+) (limited to 'ffmpeg.c') diff --git a/ffmpeg.c b/ffmpeg.c index aa30cd0..4c738ca 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -837,6 +837,7 @@ static void do_subtitle_out(AVFormatContext *s, else pkt.pts += 90 * sub->end_display_time; } + pkt.dts = pkt.pts; write_frame(s, &pkt, ost); } } -- cgit v1.1