From 4bbe788ab7d1348d09026ef0c8554595fad5721d Mon Sep 17 00:00:00 2001 From: Reimar Döffinger Date: Fri, 19 Jun 2009 08:28:07 +0000 Subject: Add pts field to AVSubtitle, for use by future XSUB encoder (and XSUB decoder should use it, too). Originally committed as revision 19221 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 1 + 1 file changed, 1 insertion(+) (limited to 'ffmpeg.c') diff --git a/ffmpeg.c b/ffmpeg.c index b9af4b17d7..f0e7bdb27c 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -814,6 +814,7 @@ static void do_subtitle_out(AVFormatContext *s, nb = 1; for(i = 0; i < nb; i++) { + sub->pts = av_rescale_q(pts, ist->st->time_base, AV_TIME_BASE_Q); subtitle_out_size = avcodec_encode_subtitle(enc, subtitle_out, subtitle_out_max_size, sub); -- cgit v1.2.3