1530d2dad9195f2b0a5808c1fbf72e3da68641e0
[platform/upstream/gst-plugins-good.git] / sys / oss / gstossaudio.c
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
23
24 #include "gstosselement.h"
25 #include "gstosssink.h"
26 #include "gstosssrc.h"
27 #include "gstossgst.h"
28
29 extern gchar *__gst_oss_plugin_dir;
30
31 static gboolean
32 plugin_init (GstPlugin *plugin)
33 {
34   guint i = 0;
35   gchar **path;
36
37   if (!gst_library_load ("gstaudio"))
38     return FALSE;
39
40   /* get the path of this plugin, we assume the helper progam lives in the */
41   /* same directory. */
42   path = g_strsplit (plugin->filename, G_DIR_SEPARATOR_S, 0);
43   while (path[i]) {
44     i++;
45     if (path[i] == NULL) {
46       g_free (path[i-1]);
47       path[i-1] = NULL;
48     }
49   }
50   __gst_oss_plugin_dir = g_strjoinv (G_DIR_SEPARATOR_S, path);
51   g_strfreev (path);
52
53   if (!gst_element_register (plugin, "ossmixer", GST_RANK_PRIMARY,
54                              GST_TYPE_OSSELEMENT) ||
55       !gst_element_register (plugin, "osssrc", GST_RANK_PRIMARY,
56                              GST_TYPE_OSSSRC) ||
57       !gst_element_register (plugin, "osssink", GST_RANK_PRIMARY,
58                              GST_TYPE_OSSSINK) ||
59       !gst_element_register (plugin, "ossgst", GST_RANK_MARGINAL,
60                              GST_TYPE_OSSGST)) {
61     return FALSE;
62   }
63
64   return TRUE;
65 }
66
67 GST_PLUGIN_DEFINE (
68   GST_VERSION_MAJOR,
69   GST_VERSION_MINOR,
70   "ossaudio",
71   "OSS (Open Sound System) support for GStreamer",
72   plugin_init,
73   VERSION,
74   GST_LICENSE,
75   GST_COPYRIGHT,
76   GST_PACKAGE,
77   GST_ORIGIN
78 )