summaryrefslogtreecommitdiffstats
path: root/mp_core.h
diff options
context:
space:
mode:
authorUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-24 05:49:44 +0300
committerUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-25 03:34:22 +0300
commit0e757bf9daa55db9fa7052efe5aef09f90044054 (patch)
tree2d4588bee5aab5d07d6f95879413db5dacbeb04d /mp_core.h
parent6f971b635434609e69d7c326b1f3eded88d2caf2 (diff)
downloadmpv-0e757bf9daa55db9fa7052efe5aef09f90044054.tar.bz2
mpv-0e757bf9daa55db9fa7052efe5aef09f90044054.tar.xz
Remove _s/_st suffix from some struct names
Since the names are always used after the keyword "struct" having a suffix as in "struct demuxer_st" is almost completely pointless.
Diffstat (limited to 'mp_core.h')
-rw-r--r--mp_core.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/mp_core.h b/mp_core.h
index 1454d56e42..7c8d3b4d5a 100644
--- a/mp_core.h
+++ b/mp_core.h
@@ -46,8 +46,8 @@ typedef struct MPContext {
int eof;
int play_tree_step;
- struct stream_st *stream;
- struct demuxer_st *demuxer;
+ struct stream *stream;
+ struct demuxer *demuxer;
struct sh_audio *sh_audio;
struct sh_video *sh_video;
struct demux_stream *d_audio;
@@ -94,7 +94,7 @@ typedef struct MPContext {
int was_paused;
#ifdef USE_DVDNAV
- struct mp_image_s *nav_smpi; ///< last decoded dvdnav video image
+ struct mp_image *nav_smpi; ///< last decoded dvdnav video image
unsigned char *nav_buffer; ///< last read dvdnav video frame
unsigned char *nav_start; ///< pointer to last read video buffer
int nav_in_size; ///< last read size
@@ -108,8 +108,8 @@ extern int file_filter;
// These appear in options list
extern int forced_subs_only;
-
-int build_afilter_chain(struct MPContext *mpctx, struct sh_audio *sh_audio, struct ao_data_s *ao_data);
+struct ao_data;
+int build_afilter_chain(struct MPContext *mpctx, struct sh_audio *sh_audio, struct ao_data *ao_data);
void uninit_player(struct MPContext *mpctx, unsigned int mask);
void reinit_audio_chain(struct MPContext *mpctx);
void init_vo_spudec(struct MPContext *mpctx);