summaryrefslogtreecommitdiffstats
path: root/gst/modplug/gstmodplug.h
diff options
context:
space:
mode:
authorJeremy Simon <jsimon13@yahoo.fr>2002-11-17 12:23:43 +0000
committerJeremy Simon <jsimon13@yahoo.fr>2002-11-17 12:23:43 +0000
commit8029993b1243b014a9a669473e4517eea7026196 (patch)
tree8aa09eb3f30dca701896d36e78c93a7564d14083 /gst/modplug/gstmodplug.h
parent92b11a0a08be7df3d684ffa2393dd9d3426826a1 (diff)
downloadgst-plugins-bad-8029993b1243b014a9a669473e4517eea7026196.tar.gz
gst-plugins-bad-8029993b1243b014a9a669473e4517eea7026196.tar.bz2
gst-plugins-bad-8029993b1243b014a9a669473e4517eea7026196.zip
Use bytestream to get buffer from sinkpad ( gst-player should play mod file now ;)
Original commit message from CVS: Use bytestream to get buffer from sinkpad ( gst-player should play mod file now ;) Move module types build from mikmod to modplug
Diffstat (limited to 'gst/modplug/gstmodplug.h')
-rw-r--r--gst/modplug/gstmodplug.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/gst/modplug/gstmodplug.h b/gst/modplug/gstmodplug.h
index 87efb7ff..f26ed127 100644
--- a/gst/modplug/gstmodplug.h
+++ b/gst/modplug/gstmodplug.h
@@ -26,7 +26,11 @@
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
+
#include <gst/gst.h>
+#include <gst/bytestream/bytestream.h>
+
+#include "modplug_types.h"
#define GST_TYPE_MODPLUG \
(gst_modplug_get_type())
@@ -43,7 +47,8 @@ extern "C" {
struct _GstModPlug {
GstElement element;
GstPad *sinkpad, *srcpad;
- GstBuffer *Buffer;
+ guint8 *buffer_in;
+ GstByteStream *bs;
const gchar *songname;
gboolean reverb;