mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-09 19:09:41 +00:00
Mplex apparently creates a private stream with padding 0x00 bytes... This normally triggers gst_pad_try_set_caps(), a...
Original commit message from CVS: Mplex apparently creates a private stream with padding 0x00 bytes... This normally triggers gst_pad_try_set_caps(), and since our template is NULL, the argument is NULL too, which is invalid... So here's a quickfix
This commit is contained in:
parent
949ec5d0cb
commit
cbaec5cb87
1 changed files with 5 additions and 1 deletions
|
@ -114,7 +114,11 @@ GST_PAD_TEMPLATE_FACTORY (private2_factory,
|
|||
"private_stream_2",
|
||||
GST_PAD_SRC,
|
||||
GST_PAD_SOMETIMES,
|
||||
NULL
|
||||
GST_CAPS_NEW (
|
||||
"mpeg_demux_private_2",
|
||||
"unknown/unknown",
|
||||
NULL
|
||||
)
|
||||
);
|
||||
|
||||
GST_PAD_TEMPLATE_FACTORY (pcm_factory,
|
||||
|
|
Loading…
Reference in a new issue