summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-05-27 10:10:27 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-05-27 10:10:27 +0000
commitb17704e6a86d5710cb86b150290886b2c3a06afd (patch)
tree98ab8fd7f036d738dc41e4a082e8c13b15cbb16a
parent9bc124bcdafbb5c8a55e7e4d25c8faade9869931 (diff)
downloadmpv-b17704e6a86d5710cb86b150290886b2c3a06afd.tar.bz2
mpv-b17704e6a86d5710cb86b150290886b2c3a06afd.tar.xz
cosmetics: Drop pointless _s suffix from 'struct ad_functions'.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31231 b3059339-0415-0410-9bf9-f77b7e298cf2
-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