From 3ab70e4677ce4e2122289aac449cda38c8168bac Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Wed, 3 Jun 2015 08:57:57 -0400 Subject: [PATCH] asteriskh263: Un-rank clashing depayloader This depayloader clash with the standard one for H263p. It produces an H263p stream with a modified header. It uses encoding-name that is the same as H263p (H263-1998) though the resulting ES is not decodable or parsable in GStreamer, making it unsuable in dynamic pipeline. This patch unrank this specialized depayloader since it can only be used in custom pipeline. https://bugzilla.gnome.org/show_bug.cgi?id=739935 --- gst/rtp/gstasteriskh263.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/rtp/gstasteriskh263.c b/gst/rtp/gstasteriskh263.c index a01fbc8a85..0deb6563f9 100644 --- a/gst/rtp/gstasteriskh263.c +++ b/gst/rtp/gstasteriskh263.c @@ -226,5 +226,5 @@ gboolean gst_asteriskh263_plugin_init (GstPlugin * plugin) { return gst_element_register (plugin, "asteriskh263", - GST_RANK_SECONDARY, GST_TYPE_ASTERISK_H263); + GST_RANK_NONE, GST_TYPE_ASTERISK_H263); }