From 30f3b537b2938e808923d28f2ff765e136a30ba8 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Thu, 1 Nov 2012 12:25:14 +0100 Subject: audio: untypedef af_cfg --- libaf/af.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libaf/af.h') diff --git a/libaf/af.h b/libaf/af.h index 3188c64e48..668c67e80d 100644 --- a/libaf/af.h +++ b/libaf/af.h @@ -97,11 +97,11 @@ extern int* af_cpu_speed; #endif // Configuration switches -typedef struct af_cfg_s{ +struct af_cfg { int force; // Initialization type char** list; /* list of names of filters that are added to filter list during first initialization of stream */ -}af_cfg_t; +}; // Current audio stream typedef struct af_stream @@ -113,7 +113,7 @@ typedef struct af_stream struct mp_audio input; struct mp_audio output; // Configuration for this stream - af_cfg_t cfg; + struct af_cfg cfg; struct MPOpts *opts; }af_stream_t; -- cgit v1.2.3