summaryrefslogtreecommitdiffstats
path: root/sys/oss/gstosssink.h
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>2003-09-13 01:22:59 +0000
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>2003-09-13 01:22:59 +0000
commit96fc83aeacef995433db8ee4794227d9b3d2ca6b (patch)
treebba38e3589d56522ac6ab4b9edc37d20837f76d2 /sys/oss/gstosssink.h
parentadda650f237852748a9f1070b7923f0df194c3d6 (diff)
Interface implementation example: OSS mixer. Also osscommon->osselement so it can be loaded without being a source/si...
Original commit message from CVS: Interface implementation example: OSS mixer. Also osscommon->osselement so it can be loaded without being a source/sink (for a stand-alone mixer)
Diffstat (limited to 'sys/oss/gstosssink.h')
-rw-r--r--sys/oss/gstosssink.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/sys/oss/gstosssink.h b/sys/oss/gstosssink.h
index 7427769d..590ce7f2 100644
--- a/sys/oss/gstosssink.h
+++ b/sys/oss/gstosssink.h
@@ -27,7 +27,7 @@
#include <gst/gst.h>
-#include "gstosscommon.h"
+#include "gstosselement.h"
#include <gst/audio/audioclock.h>
G_BEGIN_DECLS
@@ -53,7 +53,7 @@ typedef struct _GstOssSink GstOssSink;
typedef struct _GstOssSinkClass GstOssSinkClass;
struct _GstOssSink {
- GstElement element;
+ GstOssElement element;
GstPad *sinkpad;
GstBufferPool *sinkpool;
@@ -64,12 +64,9 @@ struct _GstOssSink {
gboolean sync;
guint64 handled;
- GstOssCommon common;
-
gboolean mute;
guint bufsize;
guint chunk_size;
-
};
struct _GstOssSinkClass {