mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 09:40:37 +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;
|
||||
}
|
||||
|
||||
if (stream)
|
||||
if (stream) {
|
||||
stream->inspect_payload = inspect_payload;
|
||||
stream->type = stream_type;
|
||||
}
|
||||
return stream;
|
||||
|
||||
not_enough_data:
|
||||
|
|
Loading…
Reference in a new issue