summaryrefslogtreecommitdiffstats
path: root/audio/filter/af_channels.c
diff options
context:
space:
mode:
Diffstat (limited to 'audio/filter/af_channels.c')
-rw-r--r--audio/filter/af_channels.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/audio/filter/af_channels.c b/audio/filter/af_channels.c
index 7955018ec0..fc1a090f7f 100644
--- a/audio/filter/af_channels.c
+++ b/audio/filter/af_channels.c
@@ -3,6 +3,8 @@
* command line parameter channels. It is stupid and can only add
* silence or copy channels, not mix or filter.
*
+ * Original author: Anders
+ *
* This file is part of MPlayer.
*
* MPlayer is free software; you can redistribute it and/or modify
@@ -262,10 +264,7 @@ static int af_open(struct af_instance* af){
// Description of this filter
struct af_info af_info_channels = {
- "Insert or remove channels",
- "channels",
- "Anders",
- "",
- AF_FLAGS_REENTRANT,
- af_open
+ .info = "Insert or remove channels",
+ .name = "channels",
+ .open = af_open,
};