diff options
author | Stefano Pigozzi <stefano.pigozzi@gmail.com> | 2012-11-01 12:23:48 +0100 |
---|---|---|
committer | Stefano Pigozzi <stefano.pigozzi@gmail.com> | 2012-11-02 19:20:03 +0100 |
commit | c9b59548510845e668b6e87c1f69e62302f93d56 (patch) | |
tree | 8ab88c22e961a53bac4dcb7901a6b6016b4ea85b /libaf/af_ladspa.c | |
parent | 596e12fcb26e3bad65e91e635796a3bbf051a719 (diff) | |
download | mpv-c9b59548510845e668b6e87c1f69e62302f93d56.tar.bz2 mpv-c9b59548510845e668b6e87c1f69e62302f93d56.tar.xz |
audio: untypedef af_instance
Diffstat (limited to 'libaf/af_ladspa.c')
-rw-r--r-- | libaf/af_ladspa.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libaf/af_ladspa.c b/libaf/af_ladspa.c index a377a53088..c1b3f24360 100644 --- a/libaf/af_ladspa.c +++ b/libaf/af_ladspa.c @@ -95,7 +95,7 @@ typedef struct af_ladspa_s /* ------------------------------------------------------------------------- */ -static int af_open(af_instance_t *af); +static int af_open(struct af_instance *af); static int af_ladspa_malloc_failed(char*); /* ------------------------------------------------------------------------- */ @@ -485,7 +485,7 @@ static int af_ladspa_malloc_failed(char *myname) { * operation. */ -static int control(struct af_instance_s *af, int cmd, void *arg) { +static int control(struct af_instance *af, int cmd, void *arg) { af_ladspa_t *setup = (af_ladspa_t*) af->setup; int i, r; float val; @@ -650,7 +650,7 @@ static int control(struct af_instance_s *af, int cmd, void *arg) { * \return No return value. */ -static void uninit(struct af_instance_s *af) { +static void uninit(struct af_instance *af) { int i; free(af->data); @@ -710,7 +710,7 @@ static void uninit(struct af_instance_s *af) { * \return Either AF_ERROR or AF_OK */ -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_ladspa_t *setup = af->setup; const LADSPA_Descriptor *pdes = setup->plugin_descriptor; float *audio = (float*)data->audio; @@ -882,7 +882,7 @@ static struct mp_audio* play(struct af_instance_s *af, struct mp_audio *data) { * \return Either AF_ERROR or AF_OK */ -static int af_open(af_instance_t *af) { +static int af_open(struct af_instance *af) { af->control=control; af->uninit=uninit; |