From 3110ad8329c39d1512eea86db617fa339ba5d076 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Tue, 8 Nov 2011 14:13:30 +0100 Subject: [PATCH] mpegts: set stream id on just created stream, not an unrelated variable Bug introduced in 84ad31ff180fa089cd6bfd93c246336a16036455. Thanks to Uoti Urpala for finding it. --- libavformat/mpegts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 2e390e4268..71447fa507 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -1445,7 +1445,7 @@ static void pmt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len pes = ts->pids[pid]->u.pes_filter.opaque; if (!pes->st) { pes->st = avformat_new_stream(pes->stream, NULL); - st->id = pes->pid; + pes->st->id = pes->pid; } st = pes->st; } else if (stream_type != 0x13) { -- 2.11.0