mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-09-02 10:13:51 +00:00
gst/qtdemux/gstrtpxqtdepay.c: Fix caps on the depayloader.
Original commit message from CVS: * gst/qtdemux/gstrtpxqtdepay.c: Fix caps on the depayloader.
This commit is contained in:
parent
ba02842337
commit
2ba135f614
2 changed files with 9 additions and 6 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2007-01-24 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
|
* gst/qtdemux/gstrtpxqtdepay.c:
|
||||||
|
Fix caps on the depayloader.
|
||||||
|
|
||||||
2007-01-17 Tim-Philipp Müller <tim at centricular dot net>
|
2007-01-17 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* ext/mythtv/gstmythtvsrc.c: (gst_mythtv_src_set_property):
|
* ext/mythtv/gstmythtvsrc.c: (gst_mythtv_src_set_property):
|
||||||
|
|
|
@ -93,11 +93,9 @@ static GstStaticPadTemplate gst_rtp_xqt_depay_sink_template =
|
||||||
GST_PAD_SINK,
|
GST_PAD_SINK,
|
||||||
GST_PAD_ALWAYS,
|
GST_PAD_ALWAYS,
|
||||||
GST_STATIC_CAPS ("application/x-rtp, "
|
GST_STATIC_CAPS ("application/x-rtp, "
|
||||||
"media = (string) \"video\", clock-rate = (int) [1, MAX], "
|
"payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
|
||||||
"encoding-name = (string) \"X-QT\";"
|
"media = (string) { \"audio\", \"video\" }, clock-rate = (int) [1, MAX], "
|
||||||
"application/x-rtp, "
|
"encoding-name = (string) { \"X-QT\", \"X-QUICKTIME\" }")
|
||||||
"media = (string) \"video\", clock-rate = (int) [1, MAX], "
|
|
||||||
"encoding-name = (string) \"X-QUICKTIME\"")
|
|
||||||
);
|
);
|
||||||
|
|
||||||
GST_BOILERPLATE (GstRtpXQTDepay, gst_rtp_xqt_depay, GstBaseRTPDepayload,
|
GST_BOILERPLATE (GstRtpXQTDepay, gst_rtp_xqt_depay, GstBaseRTPDepayload,
|
||||||
|
|
Loading…
Reference in a new issue