summaryrefslogtreecommitdiffstats
path: root/ext/gsm/gstgsm.c
diff options
context:
space:
mode:
authorZeeshan Ali <zeenix@gmail.com>2005-10-25 16:12:03 +0000
committerZeeshan Ali <zeenix@gmail.com>2005-10-25 16:12:03 +0000
commit6510eef093ab1598b9c50c2b7e0c209fb2752742 (patch)
treeeaed15df84e749001c3af94c3ef8206f75ea9700 /ext/gsm/gstgsm.c
parent4d87f79f855df25112106445c2ec5917bc3ce40d (diff)
downloadgst-plugins-bad-6510eef093ab1598b9c50c2b7e0c209fb2752742.tar.gz
gst-plugins-bad-6510eef093ab1598b9c50c2b7e0c209fb2752742.tar.bz2
gst-plugins-bad-6510eef093ab1598b9c50c2b7e0c209fb2752742.zip
Over-writing Wim's gsm plugins (currently not working) with that from the farsight repo. Also made sure that they wor...
Original commit message from CVS: Over-writing Wim's gsm plugins (currently not working) with that from the farsight repo. Also made sure that they work with the RTP (de)payloader.
Diffstat (limited to 'ext/gsm/gstgsm.c')
-rw-r--r--ext/gsm/gstgsm.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/ext/gsm/gstgsm.c b/ext/gsm/gstgsm.c
index c71dacb0..60140716 100644
--- a/ext/gsm/gstgsm.c
+++ b/ext/gsm/gstgsm.c
@@ -1,5 +1,7 @@
-/* GStreamer
- * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
+/*
+ * Farsight
+ * GStreamer GSM encoder/decoder (uses WAV49 compiled libgsm)
+ * Copyright (C) 2005 Philippe Khalaf <burger@speedy.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
@@ -29,14 +31,14 @@ 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_PRIMARY,
- GST_TYPE_GSMDEC))
+ if (!gst_element_register (plugin, "gsmdec", GST_RANK_NONE, GST_TYPE_GSMDEC))
return FALSE;
+
return TRUE;
}
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
GST_VERSION_MINOR,
"gsm",
- "GSM Elements Plugin",
- plugin_init, VERSION, "LGPL", GST_PACKAGE, GST_ORIGIN)
+ "GSM encoder/decoder",
+ plugin_init, VERSION, "LGPL", "Farsight", "http://farsight.sf.net")