mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 08:17:01 +00:00
gst/mpegdemux/gstmpegtsdemux.c: Make private section pads have a caps set so they are not tried to be linked in parse...
Original commit message from CVS: * gst/mpegdemux/gstmpegtsdemux.c: Make private section pads have a caps set so they are not tried to be linked in parse_launch for example.
This commit is contained in:
parent
5e47fd7616
commit
d087870e09
2 changed files with 13 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2008-11-06 Zaheer Abbas Merali <zaheerabbas at merali dot org>
|
||||
|
||||
* gst/mpegdemux/gstmpegtsdemux.c:
|
||||
Make private section pads have a caps set so they are not tried
|
||||
to be linked in parse_launch for example.
|
||||
|
||||
2008-11-06 Zaheer Abbas Merali <zaheerabbas at merali dot org>
|
||||
|
||||
patch by: Josep Torra
|
||||
|
|
|
@ -1307,11 +1307,18 @@ gst_fluts_stream_parse_pmt (GstFluTSStream * stream,
|
|||
if (stream_type == ST_PRIVATE_SECTIONS) {
|
||||
/* not really an ES, so use section filter not pes filter */
|
||||
/* initialise section filter */
|
||||
GstCaps *caps;
|
||||
gst_section_filter_init (&ES_stream->section_filter);
|
||||
ES_stream->PID_type = PID_TYPE_PRIVATE_SECTION;
|
||||
ES_stream->pad = gst_pad_new_from_static_template (&private_template,
|
||||
g_strdup_printf ("private_%04x", entry.PID));
|
||||
gst_pad_set_active (ES_stream->pad, TRUE);
|
||||
caps = gst_caps_new_simple ("application/x-mpegts-private-section",
|
||||
NULL);
|
||||
gst_pad_use_fixed_caps (ES_stream->pad);
|
||||
gst_pad_set_caps (ES_stream->pad, caps);
|
||||
gst_caps_unref (caps);
|
||||
|
||||
gst_element_add_pad (GST_ELEMENT_CAST (demux), ES_stream->pad);
|
||||
} else {
|
||||
/* Recognise video streams based on stream_type */
|
||||
|
|
Loading…
Reference in a new issue