From f1debfd0bd4c9ddb22ca90b622d2710899212f4b Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Sat, 24 Feb 2007 02:28:28 +0000 Subject: [PATCH] rescale pts/dts for output format Originally committed as revision 8111 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffserver.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ffserver.c b/ffserver.c index 696c9a9..30da29d 100644 --- a/ffserver.c +++ b/ffserver.c @@ -2175,6 +2175,14 @@ static int http_prepare_data(HTTPContext *c) /* XXX: potential leak */ return -1; } + if (pkt.dts != AV_NOPTS_VALUE) + pkt.dts = av_rescale_q(pkt.dts, + c->fmt_in->streams[pkt.stream_index]->time_base, + ctx->streams[pkt.stream_index]->time_base); + if (pkt.pts != AV_NOPTS_VALUE) + pkt.pts = av_rescale_q(pkt.pts, + c->fmt_in->streams[pkt.stream_index]->time_base, + ctx->streams[pkt.stream_index]->time_base); if (av_write_frame(ctx, &pkt)) { c->state = HTTPSTATE_SEND_DATA_TRAILER; } -- 2.7.4