From 2d9867b120bab04daec9ff20d1673ee7af52aada Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Mon, 13 Nov 2017 11:09:31 +0100 Subject: [PATCH] asfdemux: Store the stream type in streams The field was present but never set :) --- gst/asfdemux/gstasfdemux.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gst/asfdemux/gstasfdemux.c b/gst/asfdemux/gstasfdemux.c index 317f7723d8..a12bc8a5e8 100644 --- a/gst/asfdemux/gstasfdemux.c +++ b/gst/asfdemux/gstasfdemux.c @@ -3144,8 +3144,10 @@ gst_asf_demux_parse_stream_object (GstASFDemux * demux, guint8 * data, break; } - if (stream) + if (stream) { stream->inspect_payload = inspect_payload; + stream->type = stream_type; + } return stream; not_enough_data: