diff options
author | Steve Baker <steve@stevebaker.org> | 2002-05-31 08:24:31 +0000 |
---|---|---|
committer | Steve Baker <steve@stevebaker.org> | 2002-05-31 08:24:31 +0000 |
commit | 2e1042ebe84ca020d1baba789a68e688207fc0ba (patch) | |
tree | d8ec99dd1bc22191f9453970b9d22ffa49a28acd /ext/gsm | |
parent | 9ebe4d23952ababd3031dc7f72ea693c6afe2a64 (diff) | |
download | gstreamer-plugins-bad-2e1042ebe84ca020d1baba789a68e688207fc0ba.tar.gz |
add ranks only for plugins who participate in autoplugging. If you have a file that used to autoplug but doesn't any...
Original commit message from CVS:
add ranks only for plugins who participate in autoplugging. If you have a file that used to autoplug but doesn't anymore, then let me know or add a rank to the missing element.
Diffstat (limited to 'ext/gsm')
-rw-r--r-- | ext/gsm/gstgsm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/gsm/gstgsm.c b/ext/gsm/gstgsm.c index 619b82aca..32225ff78 100644 --- a/ext/gsm/gstgsm.c +++ b/ext/gsm/gstgsm.c @@ -83,6 +83,7 @@ plugin_init (GModule *module, GstPlugin *plugin) dec = gst_element_factory_new("gsmdec",GST_TYPE_GSMDEC, &gst_gsmdec_details); g_return_val_if_fail(dec != NULL, FALSE); + gst_element_factory_set_rank (dec, GST_ELEMENT_RANK_PRIMARY); /* register sink pads */ gsmdec_sink_template = gst_pad_template_new ("sink", GST_PAD_SINK, |