mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-26 17:18:15 +00:00
gst/rtp/gstrtptheoradepay.c: Make the delivery-method mandatory on the caps and only accept inline for now.
Original commit message from CVS: Patch by: Olivier Crete <tester at tester dot ca> * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps): Make the delivery-method mandatory on the caps and only accept inline for now. Reverse strcmp checks for delivery-method. * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps): Make delivery method optional when parsing caps and note this in the caps. Reverse strcmp checks for delivery-method. * gst/rtp/gstrtpvorbispay.c: Update a comment to note that the delivery-method is optional, Fixes #537675.
This commit is contained in:
parent
8d901b4bfc
commit
2ba1de92a4
4 changed files with 38 additions and 21 deletions
18
ChangeLog
18
ChangeLog
|
@ -1,3 +1,21 @@
|
|||
2008-06-13 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
Patch by: Olivier Crete <tester at tester dot ca>
|
||||
|
||||
* gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps):
|
||||
Make the delivery-method mandatory on the caps and only accept inline
|
||||
for now.
|
||||
Reverse strcmp checks for delivery-method.
|
||||
|
||||
* gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps):
|
||||
Make delivery method optional when parsing caps and note this in the
|
||||
caps.
|
||||
Reverse strcmp checks for delivery-method.
|
||||
|
||||
* gst/rtp/gstrtpvorbispay.c:
|
||||
Update a comment to note that the delivery-method is optional,
|
||||
Fixes #537675.
|
||||
|
||||
2008-06-12 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
* gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_mcast):
|
||||
|
|
|
@ -44,7 +44,9 @@ GST_STATIC_PAD_TEMPLATE ("sink",
|
|||
GST_STATIC_CAPS ("application/x-rtp, "
|
||||
"media = (string) \"video\", "
|
||||
"payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
|
||||
"clock-rate = (int) 90000, " "encoding-name = (string) \"THEORA\""
|
||||
"clock-rate = (int) 90000, " "encoding-name = (string) \"THEORA\","
|
||||
/* only support inline delivery */
|
||||
"delivery-method = (string) \"inline\""
|
||||
/* All required parameters
|
||||
*
|
||||
* "sampling = (string) { "YCbCr-4:2:0", "YCbCr-4:2:2", "YCbCr-4:4:4" } "
|
||||
|
@ -339,10 +341,11 @@ gst_rtp_theora_depay_setcaps (GstBaseRTPDepayload * depayload, GstCaps * caps)
|
|||
if (delivery_method == NULL)
|
||||
goto no_delivery_method;
|
||||
|
||||
if (g_ascii_strcasecmp (delivery_method, "inline")) {
|
||||
if (!g_ascii_strcasecmp (delivery_method, "inline")) {
|
||||
/* configure string is in the caps */
|
||||
} else if (g_ascii_strcasecmp (delivery_method, "in_band")) {
|
||||
} else if (!g_ascii_strcasecmp (delivery_method, "in_band")) {
|
||||
/* headers will (also) be transmitted in the RTP packets */
|
||||
goto unsupported_delivery_method;
|
||||
} else if (g_str_has_prefix (delivery_method, "out_band/")) {
|
||||
/* some other method of header delivery. */
|
||||
goto unsupported_delivery_method;
|
||||
|
|
|
@ -52,11 +52,11 @@ GST_STATIC_PAD_TEMPLATE ("sink",
|
|||
/* All required parameters
|
||||
*
|
||||
* "encoding-params = (string) <num channels>"
|
||||
* "delivery-method = (string) { inline, in_band, out_band/<specific_name> } "
|
||||
* "configuration = (string) ANY"
|
||||
*/
|
||||
/* All optional parameters
|
||||
*
|
||||
* "delivery-method = (string) { inline, in_band, out_band/<specific_name> } "
|
||||
* "configuration-uri ="
|
||||
*/
|
||||
)
|
||||
|
@ -344,18 +344,19 @@ gst_rtp_vorbis_depay_setcaps (GstBaseRTPDepayload * depayload, GstCaps * caps)
|
|||
|
||||
/* see how the configuration parameters will be transmitted */
|
||||
delivery_method = gst_structure_get_string (structure, "delivery-method");
|
||||
if (delivery_method == NULL)
|
||||
goto no_delivery_method;
|
||||
|
||||
if (g_ascii_strcasecmp (delivery_method, "inline")) {
|
||||
/* configure string is in the caps */
|
||||
} else if (g_ascii_strcasecmp (delivery_method, "in_band")) {
|
||||
/* headers will (also) be transmitted in the RTP packets */
|
||||
} else if (g_str_has_prefix (delivery_method, "out_band/")) {
|
||||
/* some other method of header delivery. */
|
||||
goto unsupported_delivery_method;
|
||||
} else
|
||||
goto unsupported_delivery_method;
|
||||
if (delivery_method) {
|
||||
if (!g_ascii_strcasecmp (delivery_method, "inline")) {
|
||||
/* configure string is in the caps */
|
||||
} else if (!g_ascii_strcasecmp (delivery_method, "in_band")) {
|
||||
/* headers will (also) be transmitted in the RTP packets */
|
||||
goto unsupported_delivery_method;
|
||||
} else if (g_str_has_prefix (delivery_method, "out_band/")) {
|
||||
/* some other method of header delivery. */
|
||||
goto unsupported_delivery_method;
|
||||
} else
|
||||
goto unsupported_delivery_method;
|
||||
}
|
||||
|
||||
/* read and parse configuration string */
|
||||
configuration = gst_structure_get_string (structure, "configuration");
|
||||
|
@ -382,11 +383,6 @@ unsupported_delivery_method:
|
|||
"unsupported delivery-method \"%s\" specified", delivery_method);
|
||||
return FALSE;
|
||||
}
|
||||
no_delivery_method:
|
||||
{
|
||||
GST_ERROR_OBJECT (rtpvorbisdepay, "no delivery-method specified");
|
||||
return FALSE;
|
||||
}
|
||||
no_configuration:
|
||||
{
|
||||
GST_ERROR_OBJECT (rtpvorbisdepay, "no configuration specified");
|
||||
|
|
|
@ -53,11 +53,11 @@ GST_STATIC_PAD_TEMPLATE ("src",
|
|||
/* All required parameters
|
||||
*
|
||||
* "encoding-params = (string) <num channels>"
|
||||
* "delivery-method = (string) { inline, in_band, out_band/<specific_name> } "
|
||||
* "configuration = (string) ANY"
|
||||
*/
|
||||
/* All optional parameters
|
||||
*
|
||||
* "delivery-method = (string) { inline, in_band, out_band/<specific_name> } "
|
||||
* "configuration-uri ="
|
||||
*/
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue