summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libmpcodecs/ad.h2
-rw-r--r--libmpdemux/stheader.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/libmpcodecs/ad.h b/libmpcodecs/ad.h
index 1fa94d2e9e..9b1daf9e48 100644
--- a/libmpcodecs/ad.h
+++ b/libmpcodecs/ad.h
@@ -25,7 +25,7 @@
typedef mp_codec_info_t ad_info_t;
/* interface of video decoder drivers */
-typedef struct ad_functions_s
+typedef struct ad_functions
{
const ad_info_t *info;
int (*preinit)(sh_audio_t *sh);
diff --git a/libmpdemux/stheader.h b/libmpdemux/stheader.h
index c8624aea3e..d7adc6478b 100644
--- a/libmpdemux/stheader.h
+++ b/libmpdemux/stheader.h
@@ -73,7 +73,7 @@ typedef struct sh_audio {
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 ad_functions_s* ad_driver;
+ struct ad_functions *ad_driver;
#ifdef CONFIG_DYNAMIC_PLUGINS
void *dec_handle;
#endif