summaryrefslogtreecommitdiffstats
path: root/audio/filter/af_sweep.c
diff options
context:
space:
mode:
Diffstat (limited to 'audio/filter/af_sweep.c')
-rw-r--r--audio/filter/af_sweep.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/audio/filter/af_sweep.c b/audio/filter/af_sweep.c
index 6cc099f2d8..0a140dcb65 100644
--- a/audio/filter/af_sweep.c
+++ b/audio/filter/af_sweep.c
@@ -92,10 +92,7 @@ static int af_open(struct af_instance* af){
}
struct af_info af_info_sweep = {
- "sine sweep",
- "sweep",
- "Michael Niedermayer",
- "",
- AF_FLAGS_REENTRANT,
- af_open
+ .info = "sine sweep",
+ .name = "sweep",
+ .open = af_open,
};