diff options
Diffstat (limited to 'ext/ladspa/gstladspa.h')
-rw-r--r-- | ext/ladspa/gstladspa.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ext/ladspa/gstladspa.h b/ext/ladspa/gstladspa.h index 2273aa5a..18357585 100644 --- a/ext/ladspa/gstladspa.h +++ b/ext/ladspa/gstladspa.h @@ -37,6 +37,7 @@ extern "C" { typedef struct _ladspa_control_info { gchar *name; + gchar *param_name; gfloat lowerbound, upperbound; gboolean lower,upper,samplerate; gboolean toggled, logarithmic, integer, writable; @@ -51,19 +52,20 @@ struct _GstLADSPA { LADSPA_Descriptor *descriptor; LADSPA_Handle *handle; + GstDParamManager *dpman; + gfloat *controls; GstPad **sinkpads, **srcpads; - GstByteStream **bytestreams; GstBufferPool *bufpool; - gboolean loopbased, newcaps, activated; + gboolean newcaps, activated; gint samplerate, buffersize, numbuffers; - gulong timestamp; + gint64 timestamp; }; |