mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-18 21:35:44 +00:00
gst/rtpmanager/gstrtpptdemux.c: We always use fixed caps.
Original commit message from CVS: * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_chain): We always use fixed caps.
This commit is contained in:
parent
8a6fbd7544
commit
b629fd955a
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-05-15 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_chain):
|
||||
We always use fixed caps.
|
||||
|
||||
2007-05-14 David Schleef <ds@schleef.org>
|
||||
|
||||
* gst/rtpmanager/gstrtpbin.c:
|
||||
|
|
|
@ -243,6 +243,7 @@ gst_rtp_pt_demux_chain (GstPad * pad, GstBuffer * buf)
|
|||
templ = gst_element_class_get_pad_template (klass, "src_%d");
|
||||
padname = g_strdup_printf ("src_%d", pt);
|
||||
srcpad = gst_pad_new_from_template (templ, padname);
|
||||
gst_pad_use_fixed_caps (srcpad);
|
||||
g_free (padname);
|
||||
|
||||
/* figure out the caps */
|
||||
|
|
Loading…
Reference in a new issue