diff options
author | Andy Wingo <wingo@pobox.com> | 2005-08-26 11:05:13 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2005-08-26 11:05:13 +0000 |
commit | 282065617d0b4c73a3cb89b118a5f161c96ac773 (patch) | |
tree | f23c38f1f3abc3b050692a6a7df26bae83bce5e5 /ext/ladspa/gstsignalprocessor.h | |
parent | 0af7dc2705eb753432beb68680bed00046ab12cd (diff) | |
download | gst-plugins-bad-282065617d0b4c73a3cb89b118a5f161c96ac773.tar.gz gst-plugins-bad-282065617d0b4c73a3cb89b118a5f161c96ac773.tar.bz2 gst-plugins-bad-282065617d0b4c73a3cb89b118a5f161c96ac773.zip |
ext/ladspa/gstladspa.*: Finish porting, still doesn't work but it does compile and register. I have more features tha...
Original commit message from CVS:
2005-08-26 Andy Wingo <wingo@pobox.com>
* ext/ladspa/gstladspa.c:
* ext/ladspa/gstladspa.h: Finish porting, still doesn't work but
it does compile and register. I have more features than you.
* ext/ladspa/gstsignalprocessor.h:
* ext/ladspa/gstsignalprocessor.c: Updates, bug fixen.
Diffstat (limited to 'ext/ladspa/gstsignalprocessor.h')
-rw-r--r-- | ext/ladspa/gstsignalprocessor.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/ladspa/gstsignalprocessor.h b/ext/ladspa/gstsignalprocessor.h index fec8a7cd..2f318e3f 100644 --- a/ext/ladspa/gstsignalprocessor.h +++ b/ext/ladspa/gstsignalprocessor.h @@ -74,11 +74,11 @@ struct _GstSignalProcessorClass { /* virtual methods for subclasses */ - gboolean (*setup) (GstSignalProcessor *self, guint sample_rate, - guint buffer_frames); + gboolean (*setup) (GstSignalProcessor *self, guint sample_rate); gboolean (*start) (GstSignalProcessor *self); - gboolean (*stop) (GstSignalProcessor *self); - gboolean (*process) (GstSignalProcessor *self, guint num_frames); + void (*stop) (GstSignalProcessor *self); + void (*cleanup) (GstSignalProcessor *self); + void (*process) (GstSignalProcessor *self, guint num_frames); gboolean (*event) (GstSignalProcessor *self, GstEvent *event); }; |