diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2006-08-21 16:21:03 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2006-08-21 16:21:03 +0000 |
commit | 17ed351232c4d9cc3b85088239a3950964031e04 (patch) | |
tree | e869d79308b362281c19192f5d6bf9dcc4722552 /ext/gsm | |
parent | 11fc25f7aff298fdb54ecebcfa182ab2193f3000 (diff) | |
download | gstreamer-plugins-bad-17ed351232c4d9cc3b85088239a3950964031e04.tar.gz |
ext/gsm/gstgsm.c: Make rank PRIMARY now that GSM seems to work fine.
Original commit message from CVS:
* ext/gsm/gstgsm.c: (plugin_init):
Make rank PRIMARY now that GSM seems to work fine.
Diffstat (limited to 'ext/gsm')
-rw-r--r-- | ext/gsm/gstgsm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/gsm/gstgsm.c b/ext/gsm/gstgsm.c index c64d867cb..0aec2bd5f 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; |