From 71907398c994e546c56d61aa7fc9b542f1d1a186 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Mon, 9 Jul 2007 10:29:53 +0000 Subject: [PATCH] MPEG PS reader: Print the MPEG stream ID in verbose identification mode. --- src/input/r_mpeg.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/input/r_mpeg.cpp b/src/input/r_mpeg.cpp index 0f24b153e..6c4df43e3 100644 --- a/src/input/r_mpeg.cpp +++ b/src/input/r_mpeg.cpp @@ -1300,6 +1300,8 @@ mpeg_ps_reader_c::identify() { info += "packetizer:mpeg4_p10_es_video "; } + info += mxsprintf("stream_id:%#x", track->id); + if (!info.empty()) { info = mxsprintf(" [%s]", info.c_str()); }