summaryrefslogtreecommitdiffstats
path: root/audio/filter/af_hrtf.c
diff options
context:
space:
mode:
Diffstat (limited to 'audio/filter/af_hrtf.c')
-rw-r--r--audio/filter/af_hrtf.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/audio/filter/af_hrtf.c b/audio/filter/af_hrtf.c
index 85e6477b31..5b80bf0eec 100644
--- a/audio/filter/af_hrtf.c
+++ b/audio/filter/af_hrtf.c
@@ -3,6 +3,8 @@
* encoded rear channels into headphone signal using FIR filtering
* with HRTF.
*
+ * Author: ylai
+ *
* This file is part of MPlayer.
*
* MPlayer is free software; you can redistribute it and/or modify
@@ -660,10 +662,7 @@ static int af_open(struct af_instance* af)
/* Description of this filter */
struct af_info af_info_hrtf = {
- "HRTF Headphone",
- "hrtf",
- "ylai",
- "",
- AF_FLAGS_REENTRANT,
- af_open
+ .info = "HRTF Headphone",
+ .name = "hrtf",
+ .open = af_open,
};