summaryrefslogtreecommitdiffstats
path: root/libaf/af_hrtf.c
diff options
context:
space:
mode:
Diffstat (limited to 'libaf/af_hrtf.c')
-rw-r--r--libaf/af_hrtf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libaf/af_hrtf.c b/libaf/af_hrtf.c
index 0dc408ab63..4f5eedb29d 100644
--- a/libaf/af_hrtf.c
+++ b/libaf/af_hrtf.c
@@ -282,7 +282,7 @@ static inline void update_ch(af_hrtf_t *s, short *in, const int k)
}
/* Initialization and runtime control */
-static int control(struct af_instance_s *af, int cmd, void* arg)
+static int control(struct af_instance *af, int cmd, void* arg)
{
af_hrtf_t *s = af->setup;
int test_output_res;
@@ -345,7 +345,7 @@ static int control(struct af_instance_s *af, int cmd, void* arg)
}
/* Deallocate memory */
-static void uninit(struct af_instance_s *af)
+static void uninit(struct af_instance *af)
{
if(af->setup) {
af_hrtf_t *s = af->setup;
@@ -381,7 +381,7 @@ frequencies).
2. A bass compensation is introduced to ensure that 0-200 Hz are not
damped (without any real 3D acoustical image, however).
*/
-static struct mp_audio* play(struct af_instance_s *af, struct mp_audio *data)
+static struct mp_audio* play(struct af_instance *af, struct mp_audio *data)
{
af_hrtf_t *s = af->setup;
short *in = data->audio; // Input audio data
@@ -593,7 +593,7 @@ static int allocate(af_hrtf_t *s)
}
/* Allocate memory and set function pointers */
-static int af_open(af_instance_t* af)
+static int af_open(struct af_instance* af)
{
int i;
af_hrtf_t *s;