summaryrefslogtreecommitdiff
path: root/deadbeef.h
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2011-01-05 22:15:34 +0100
committerGravatar waker <wakeroid@gmail.com>2011-01-05 22:16:20 +0100
commita031151153526ed6fd4390f05dfe40a411ca26e2 (patch)
treebefba9abab10d09063eb17fd4ed1f972ca5a6c57 /deadbeef.h
parent7f45bdddac21422cfb7e6380707f87c86a4e5a65 (diff)
added dsp preset functions to plugin api;
added dsp preset management to gtkui preferences window
Diffstat (limited to 'deadbeef.h')
-rw-r--r--deadbeef.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/deadbeef.h b/deadbeef.h
index b3cf7d17..5a51b04f 100644
--- a/deadbeef.h
+++ b/deadbeef.h
@@ -540,6 +540,11 @@ typedef struct {
// pcm utilities
int (*pcm_convert) (const ddb_waveformat_t * inputfmt, const char *input, const ddb_waveformat_t *outputfmt, char *output, int inputsize);
+
+ // dsp preset management
+ int (*dsp_preset_load) (const char *fname, struct ddb_dsp_context_s **head);
+ int (*dsp_preset_save) (const char *fname, struct ddb_dsp_context_s *head);
+ void (*dsp_preset_free) (struct ddb_dsp_context_s *head);
} DB_functions_t;
enum {