summaryrefslogtreecommitdiffstats
path: root/libaf/af.h
diff options
context:
space:
mode:
Diffstat (limited to 'libaf/af.h')
-rw-r--r--libaf/af.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libaf/af.h b/libaf/af.h
index 6f8a9d4672..84f82b5d7e 100644
--- a/libaf/af.h
+++ b/libaf/af.h
@@ -21,6 +21,10 @@ typedef struct frac_s
int d; // Denominator
} frac_t;
+// Flags used for defining the behavour of an audio filter
+#define AF_FLAGS_REENTRANT 0x00000000
+#define AF_FLAGS_NOT_REENTRANT 0x00000001
+
/* Audio filter information not specific for current instance, but for
a specific filter */
typedef struct af_info_s
@@ -29,6 +33,7 @@ typedef struct af_info_s
const char *name;
const char *author;
const char *comment;
+ const int flags;
int (*open)(struct af_instance_s* vf);
} af_info_t;