summaryrefslogtreecommitdiffstats
path: root/audio/filter/af_export.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-10-23 19:05:47 +0200
committerwm4 <wm4@nowhere>2013-10-23 19:30:01 +0200
commitb08617ff710db2446e59692a7e11336f33a1595b (patch)
tree468362314f5e2d0ce313a6ac9ff784e72094e75f /audio/filter/af_export.c
parenta46453347f40a3e5be72bf8c3a8461a32bd7733f (diff)
downloadmpv-b08617ff710db2446e59692a7e11336f33a1595b.tar.bz2
mpv-b08617ff710db2446e59692a7e11336f33a1595b.tar.xz
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.
Diffstat (limited to 'audio/filter/af_export.c')
-rw-r--r--audio/filter/af_export.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/audio/filter/af_export.c b/audio/filter/af_export.c
index c276d1c3e8..45143075a1 100644
--- a/audio/filter/af_export.c
+++ b/audio/filter/af_export.c
@@ -7,6 +7,8 @@
* the area changes),
* the rest is payload (non-interleaved).
*
+ * Authors: Anders; Gustavo Sverzut Barbieri <gustavo.barbieri@ic.unicamp.br>
+ *
* This file is part of MPlayer.
*
* MPlayer is free software; you can redistribute it and/or modify
@@ -270,10 +272,7 @@ static int af_open( struct af_instance* af )
// Description of this filter
struct af_info af_info_export = {
- "Sound export filter",
- "export",
- "Anders; Gustavo Sverzut Barbieri <gustavo.barbieri@ic.unicamp.br>",
- "",
- AF_FLAGS_REENTRANT,
- af_open
+ .info = "Sound export filter",
+ .name = "export",
+ .open = af_open,
};