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 "subreader.h"
23 #include "libmpdemux/demuxer.h"
24 #include "libmpdemux/stheader.h"
26 extern double sub_last_pts
;
27 extern struct ass_track
*ass_track
;
28 extern subtitle
*vo_sub_last
;
31 void print_version(const char* name
);
32 void update_subtitles(struct MPContext
*mpctx
, struct MPOpts
*opts
,
33 sh_video_t
*sh_video
, double refpts
, double sub_offset
,
34 demux_stream_t
*d_dvdsub
, int reset
);
35 void update_teletext(sh_video_t
*sh_video
, demuxer_t
*demuxer
, int reset
);
36 int select_audio(demuxer_t
* demuxer
, int audio_id
, char* audio_lang
);
37 void set_osd_subtitle(struct MPContext
*mpctx
, subtitle
*subs
);
39 extern int disable_system_conf
;
40 extern int disable_user_conf
;
42 #endif /* MPLAYER_MPCOMMON_H */