mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
asfdemux: Store the stream type in streams
The field was present but never set :)
This commit is contained in:
parent
83d7d2f67a
commit
2d9867b120
1 changed files with 3 additions and 1 deletions
|
@ -3144,8 +3144,10 @@ gst_asf_demux_parse_stream_object (GstASFDemux * demux, guint8 * data,
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (stream)
|
if (stream) {
|
||||||
stream->inspect_payload = inspect_payload;
|
stream->inspect_payload = inspect_payload;
|
||||||
|
stream->type = stream_type;
|
||||||
|
}
|
||||||
return stream;
|
return stream;
|
||||||
|
|
||||||
not_enough_data:
|
not_enough_data:
|
||||||
|
|
Loading…
Reference in a new issue