diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ext/gsm/gstgsm.c | 3 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2006-08-21 Wim Taymans <wim@fluendo.com> + + * ext/gsm/gstgsm.c: (plugin_init): + Make rank PRIMARY now that GSM seems to work fine. + 2006-08-21 Tim-Philipp Müller <tim at centricular dot net> * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_init), diff --git a/ext/gsm/gstgsm.c b/ext/gsm/gstgsm.c index c64d867c..0aec2bd5 100644 --- a/ext/gsm/gstgsm.c +++ b/ext/gsm/gstgsm.c @@ -31,7 +31,8 @@ plugin_init (GstPlugin * plugin) { if (!gst_element_register (plugin, "gsmenc", GST_RANK_NONE, GST_TYPE_GSMENC)) return FALSE; - if (!gst_element_register (plugin, "gsmdec", GST_RANK_NONE, GST_TYPE_GSMDEC)) + if (!gst_element_register (plugin, "gsmdec", GST_RANK_PRIMARY, + GST_TYPE_GSMDEC)) return FALSE; return TRUE; |