summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libaf/af.h2
-rw-r--r--libmpdemux/stheader.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/libaf/af.h b/libaf/af.h
index b6b546525e..fe146906e9 100644
--- a/libaf/af.h
+++ b/libaf/af.h
@@ -106,7 +106,7 @@ typedef struct af_cfg_s{
}af_cfg_t;
// Current audio stream
-typedef struct af_stream_s
+typedef struct af_stream
{
// The first and last filter in the list
af_instance_t* first;
diff --git a/libmpdemux/stheader.h b/libmpdemux/stheader.h
index d7adc6478b..b39ef8cfac 100644
--- a/libmpdemux/stheader.h
+++ b/libmpdemux/stheader.h
@@ -72,7 +72,7 @@ typedef struct sh_audio {
int a_out_buffer_len;
int a_out_buffer_size;
// void* audio_out; // the audio_out handle, used for this audio stream
- struct af_stream_s *afilter; // the audio filter stream
+ struct af_stream *afilter; // the audio filter stream
struct ad_functions *ad_driver;
#ifdef CONFIG_DYNAMIC_PLUGINS
void *dec_handle;