summaryrefslogtreecommitdiffstats
path: root/libaf/af.h
diff options
context:
space:
mode:
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;