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:
Ronald S. Bultje 2003-07-26 10:13:30 +00:00
parent 949ec5d0cb
commit cbaec5cb87

View file

@ -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,