summaryrefslogtreecommitdiffstats
path: root/audio/filter/af_surround.c
diff options
context:
space:
mode:
Diffstat (limited to 'audio/filter/af_surround.c')
-rw-r--r--audio/filter/af_surround.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/audio/filter/af_surround.c b/audio/filter/af_surround.c
index c04a039d65..25218c1b05 100644
--- a/audio/filter/af_surround.c
+++ b/audio/filter/af_surround.c
@@ -262,10 +262,8 @@ static int af_open(struct af_instance* af){
struct af_info af_info_surround =
{
- "Surround decoder filter",
- "surround",
- "Steve Davies <steve@daviesfam.org>",
- "",
- AF_FLAGS_NOT_REENTRANT,
- af_open
+ .info = "Surround decoder filter",
+ .name = "surround",
+ .flags = AF_FLAGS_NOT_REENTRANT,
+ .open = af_open,
};