diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2007-05-15 13:29:53 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2007-05-15 13:29:53 +0000 |
commit | b629fd955a7cc30c6a58dc734dda7e424cda72b2 (patch) | |
tree | 057f8139397698c05c62cf2160925c7a0d305e9b /gst/rtpmanager | |
parent | 8a6fbd7544ef534d5f3dfaae6e1d91209aa80318 (diff) | |
download | gst-plugins-bad-b629fd955a7cc30c6a58dc734dda7e424cda72b2.tar.gz gst-plugins-bad-b629fd955a7cc30c6a58dc734dda7e424cda72b2.tar.bz2 gst-plugins-bad-b629fd955a7cc30c6a58dc734dda7e424cda72b2.zip |
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.
Diffstat (limited to 'gst/rtpmanager')
-rw-r--r-- | gst/rtpmanager/gstrtpptdemux.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gst/rtpmanager/gstrtpptdemux.c b/gst/rtpmanager/gstrtpptdemux.c index 40127f2f..139665ea 100644 --- a/gst/rtpmanager/gstrtpptdemux.c +++ b/gst/rtpmanager/gstrtpptdemux.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 */ |