From c9b59548510845e668b6e87c1f69e62302f93d56 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Thu, 1 Nov 2012 12:23:48 +0100 Subject: audio: untypedef af_instance --- libaf/af_export.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libaf/af_export.c') diff --git a/libaf/af_export.c b/libaf/af_export.c index 110c46eb66..441ec31ac3 100644 --- a/libaf/af_export.c +++ b/libaf/af_export.c @@ -64,7 +64,7 @@ typedef struct af_export_s cmd control command arg argument */ -static int control(struct af_instance_s* af, int cmd, void* arg) +static int control(struct af_instance* af, int cmd, void* arg) { af_export_t* s = af->setup; switch (cmd){ @@ -173,7 +173,7 @@ static int control(struct af_instance_s* af, int cmd, void* arg) /* Free allocated memory and clean up other stuff too. af audio filter instance */ -static void uninit( struct af_instance_s* af ) +static void uninit( struct af_instance* af ) { free(af->data); af->data = NULL; @@ -201,7 +201,7 @@ static void uninit( struct af_instance_s* af ) af audio filter instance data audio data */ -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 ) { struct mp_audio* c = data; // Current working data af_export_t* s = af->setup; // Setup for this instance @@ -246,7 +246,7 @@ static struct mp_audio* play( struct af_instance_s* af, struct mp_audio* data ) af audio filter instance returns AF_OK or AF_ERROR */ -static int af_open( af_instance_t* af ) +static int af_open( struct af_instance* af ) { af->control = control; af->uninit = uninit; -- cgit v1.2.3