summaryrefslogtreecommitdiffstats
path: root/libaf/af.h
diff options
context:
space:
mode:
authorStefano Pigozzi <stefano.pigozzi@gmail.com>2012-11-01 12:25:14 +0100
committerStefano Pigozzi <stefano.pigozzi@gmail.com>2012-11-02 19:20:03 +0100
commit30f3b537b2938e808923d28f2ff765e136a30ba8 (patch)
treea8e977cf73609b8cd026a86793337dd2e5d165ae /libaf/af.h
parentc9b59548510845e668b6e87c1f69e62302f93d56 (diff)
downloadmpv-30f3b537b2938e808923d28f2ff765e136a30ba8.tar.bz2
mpv-30f3b537b2938e808923d28f2ff765e136a30ba8.tar.xz
audio: untypedef af_cfg
Diffstat (limited to 'libaf/af.h')
-rw-r--r--libaf/af.h6
1 files changed, 3 insertions, 3 deletions
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;