sync with en/mplayer.1 rev. 30822
[mplayer.git] / mpcommon.h
blob412225b10456700b4226131d40637f77ab2c5652
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 "subreader.h"
23 #include "libmpdemux/demuxer.h"
24 #include "libmpdemux/stheader.h"
25 #include "libass/ass_mp.h"
27 extern double sub_last_pts;
28 extern ass_track_t *ass_track;
29 extern subtitle *vo_sub_last;
31 void print_version(const char* name);
32 void update_subtitles(sh_video_t *sh_video, double refpts, demux_stream_t *d_dvdsub, int reset);
33 void update_teletext(sh_video_t *sh_video, demuxer_t *demuxer, int reset);
34 int select_audio(demuxer_t* demuxer, int audio_id, char* audio_lang);
35 void set_osd_subtitle(subtitle *subs);
37 extern int disable_system_conf;
38 extern int disable_user_conf;
40 #endif /* MPLAYER_MPCOMMON_H */