core: fix audio-only + framestep weird behavior
[mplayer/glamo.git] / mpcommon.h
blobf1f01d7942027e60e41a7100648f37e866a04143
1 /*
2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #ifndef MPLAYER_MPCOMMON_H
20 #define MPLAYER_MPCOMMON_H
22 #include <stdbool.h>
24 struct subtitle;
26 extern double sub_last_pts;
27 extern struct ass_track *ass_track;
28 extern struct subtitle *vo_sub_last;
30 extern int disable_system_conf;
31 extern int disable_user_conf;
33 extern const char *mencoder_version;
34 extern const char *mplayer_version;
36 struct MPContext;
37 struct demuxer;
38 struct demux_stream;
39 struct demux_attachment;
40 struct sh_video;
41 struct MPOpts;
43 void print_version(const char* name);
44 void update_subtitles(struct MPContext *mpctx, struct MPOpts *opts,
45 struct sh_video *sh_video, double refpts,
46 double sub_offset, struct demux_stream *d_dvdsub,
47 int reset);
48 void update_teletext(struct sh_video *sh_video, struct demuxer *demuxer,
49 int reset);
50 int select_audio(struct demuxer *demuxer, int audio_id, char *audio_lang);
51 void set_osd_subtitle(struct MPContext *mpctx, struct subtitle *subs);
52 bool attachment_is_font(struct demux_attachment *att);
54 #endif /* MPLAYER_MPCOMMON_H */