mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-02 21:48:55 +00:00
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.
This commit is contained in:
parent
11fc25f7af
commit
17ed351232
2 changed files with 7 additions and 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),
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue