From 250be719e48532bd924636ead5209ffb81ddb880 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Mon, 23 Jun 2008 03:16:24 +0000 Subject: [PATCH] fix source stream, source_index is refering to fmt_in, needs testing Originally committed as revision 13902 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffserver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffserver.c b/ffserver.c index 49abf25606..c89cb52e9d 100644 --- a/ffserver.c +++ b/ffserver.c @@ -2168,7 +2168,7 @@ static int http_prepare_data(HTTPContext *c) if (c->is_packetized) { AVStream *st; /* compute send time and duration */ - st = c->fmt_in->streams[pkt.stream_index]; + st = c->fmt_in->streams[source_index]; c->cur_pts = av_rescale_q(pkt.dts, st->time_base, AV_TIME_BASE_Q); if (st->start_time != AV_NOPTS_VALUE) c->cur_pts -= av_rescale_q(st->start_time, st->time_base, AV_TIME_BASE_Q);