summaryrefslogtreecommitdiffstats
path: root/ext/mikmod/drv_gst.c
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2003-10-08 16:08:18 +0000
committerAndy Wingo <wingo@pobox.com>2003-10-08 16:08:18 +0000
commitf2d5cae8daade402e9d74a829d2b87283167aaa7 (patch)
treecbb13b82d43fa41ffaf6c93973e80c2f620ebf8e /ext/mikmod/drv_gst.c
parent9246e543319c072c52fffa51259a2cf927c8dd43 (diff)
/GstBuffer/GstData/ in the API where you can pass events. Fix the plugins to deal with that. Fixes #113488.
Original commit message from CVS: /GstBuffer/GstData/ in the API where you can pass events. Fix the plugins to deal with that. Fixes #113488.
Diffstat (limited to 'ext/mikmod/drv_gst.c')
-rw-r--r--ext/mikmod/drv_gst.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mikmod/drv_gst.c b/ext/mikmod/drv_gst.c
index 57080462..122de610 100644
--- a/ext/mikmod/drv_gst.c
+++ b/ext/mikmod/drv_gst.c
@@ -51,7 +51,7 @@ static void mikmod_Update( void )
/* FIXME, send a flush event or something */
need_sync = 0 ;
}
- gst_pad_push( srcpad, outdata );
+ gst_pad_push( srcpad, GST_DATA (outdata ));
}