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
This commit is contained in:
Nicolas Dufresne 2015-06-03 08:57:57 -04:00
parent ffe7507512
commit 3ab70e4677

View file

@ -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);
}