summaryrefslogtreecommitdiff
path: root/ext/soup/gstsoup.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/soup/gstsoup.c')
-rw-r--r--ext/soup/gstsoup.c47
1 files changed, 47 insertions, 0 deletions
diff --git a/ext/soup/gstsoup.c b/ext/soup/gstsoup.c
new file mode 100644
index 0000000..de71df8
--- /dev/null
+++ b/ext/soup/gstsoup.c
@@ -0,0 +1,47 @@
+/* GStreamer
+ * Copyright (C) 2007-2008 Wouter Cloetens <wouter@mind.be>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <gst/gst-i18n-plugin.h>
+
+#include "gstsouphttpsrc.h"
+#include "gstsouphttpclientsink.h"
+
+
+static gboolean
+plugin_init (GstPlugin * plugin)
+{
+#ifdef ENABLE_NLS
+ GST_DEBUG ("binding text domain %s to locale dir %s", GETTEXT_PACKAGE,
+ LOCALEDIR);
+ bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
+ bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
+#endif
+
+ gst_element_register (plugin, "souphttpsrc", GST_RANK_PRIMARY,
+ GST_TYPE_SOUP_HTTP_SRC);
+ gst_element_register (plugin, "souphttpclientsink", GST_RANK_NONE,
+ GST_TYPE_SOUP_HTTP_CLIENT_SINK);
+
+ return TRUE;
+}
+
+GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
+ GST_VERSION_MINOR,
+ "soup",
+ "libsoup HTTP client src/sink",
+ plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)