From b08617ff710db2446e59692a7e11336f33a1595b Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 23 Oct 2013 19:05:47 +0200 Subject: audio/filter: remove useless af_info fields Drop the author and comment fields. They were completely unused - not even printed in verbose mode, just dead weight. Also use designated initializers and drop redundant flags. --- audio/filter/af_surround.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'audio/filter/af_surround.c') 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 ", - "", - AF_FLAGS_NOT_REENTRANT, - af_open + .info = "Surround decoder filter", + .name = "surround", + .flags = AF_FLAGS_NOT_REENTRANT, + .open = af_open, }; -- cgit v1.2.3