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_ladspa.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'audio/filter/af_ladspa.c') diff --git a/audio/filter/af_ladspa.c b/audio/filter/af_ladspa.c index 5e516f060e..73b7430201 100644 --- a/audio/filter/af_ladspa.c +++ b/audio/filter/af_ladspa.c @@ -103,12 +103,9 @@ static int af_ladspa_malloc_failed(char*); /* Description */ struct af_info af_info_ladspa = { - "LADSPA plugin loader", - "ladspa", - "Ivo van Poorten", - "", - AF_FLAGS_REENTRANT, - af_open + .info = "LADSPA plugin loader", + .name = "ladspa", + .open = af_open, }; /* ------------------------------------------------------------------------- */ -- cgit v1.2.3