Windows support: add a manifest file
[mplayer/glamo.git] / mpcommon.c
blob0b6d95d92bfd98dfefdcf6518bb409dac71af0ea
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 #include <stdlib.h>
20 #include "mpcommon.h"
21 #include "options.h"
22 #include "stream/stream.h"
23 #include "libmpdemux/demuxer.h"
24 #include "libmpdemux/stheader.h"
25 #include "mplayer.h"
26 #include "libvo/sub.h"
27 #include "libvo/video_out.h"
28 #include "cpudetect.h"
29 #include "mp_msg.h"
30 #include "spudec.h"
31 #include "version.h"
32 #include "vobsub.h"
33 #include "libmpcodecs/dec_teletext.h"
34 #include "ffmpeg_files/intreadwrite.h"
35 #include "m_option.h"
37 double sub_last_pts = -303;
39 #ifdef CONFIG_ASS
40 #include "ass_mp.h"
41 ASS_Track *ass_track = 0; // current track to render
42 #endif
44 sub_data* subdata = NULL;
45 subtitle* vo_sub_last = NULL;
47 const char *mencoder_version = "MEncoder " VERSION;
48 const char *mplayer_version = "MPlayer " VERSION;
50 void print_version(const char* name)
52 mp_msg(MSGT_CPLAYER, MSGL_INFO, MP_TITLE, name);
54 /* Test for CPU capabilities (and corresponding OS support) for optimizing */
55 GetCpuCaps(&gCpuCaps);
56 #if ARCH_X86
57 mp_msg(MSGT_CPLAYER, MSGL_V,
58 "CPUflags: MMX: %d MMX2: %d 3DNow: %d 3DNowExt: %d SSE: %d SSE2: %d SSSE3: %d\n",
59 gCpuCaps.hasMMX, gCpuCaps.hasMMX2,
60 gCpuCaps.has3DNow, gCpuCaps.has3DNowExt,
61 gCpuCaps.hasSSE, gCpuCaps.hasSSE2, gCpuCaps.hasSSSE3);
62 #if CONFIG_RUNTIME_CPUDETECT
63 mp_tmsg(MSGT_CPLAYER,MSGL_V, "Compiled with runtime CPU detection.\n");
64 #else
65 mp_tmsg(MSGT_CPLAYER,MSGL_V, "Compiled for x86 CPU with extensions:");
66 if (HAVE_MMX)
67 mp_msg(MSGT_CPLAYER,MSGL_V," MMX");
68 if (HAVE_MMX2)
69 mp_msg(MSGT_CPLAYER,MSGL_V," MMX2");
70 if (HAVE_AMD3DNOW)
71 mp_msg(MSGT_CPLAYER,MSGL_V," 3DNow");
72 if (HAVE_AMD3DNOWEXT)
73 mp_msg(MSGT_CPLAYER,MSGL_V," 3DNowExt");
74 if (HAVE_SSE)
75 mp_msg(MSGT_CPLAYER,MSGL_V," SSE");
76 if (HAVE_SSE2)
77 mp_msg(MSGT_CPLAYER,MSGL_V," SSE2");
78 if (HAVE_SSSE3)
79 mp_msg(MSGT_CPLAYER,MSGL_V," SSSE3");
80 if (HAVE_CMOV)
81 mp_msg(MSGT_CPLAYER,MSGL_V," CMOV");
82 mp_msg(MSGT_CPLAYER,MSGL_V,"\n");
83 #endif /* CONFIG_RUNTIME_CPUDETECT */
84 #endif /* ARCH_X86 */
88 void update_subtitles(struct MPContext *mpctx, struct MPOpts *opts,
89 sh_video_t *sh_video, double refpts, double sub_offset,
90 demux_stream_t *d_dvdsub, int reset)
92 unsigned char *packet=NULL;
93 int len;
94 char type = d_dvdsub->sh ? ((sh_sub_t *)d_dvdsub->sh)->type : 'v';
95 static subtitle subs;
96 if (reset) {
97 sub_clear_text(&subs, MP_NOPTS_VALUE);
98 if (vo_sub) {
99 set_osd_subtitle(mpctx, NULL);
101 if (vo_spudec) {
102 spudec_reset(vo_spudec);
103 vo_osd_changed(OSDTYPE_SPU);
105 return;
107 // find sub
108 if (subdata) {
109 if (sub_fps==0) sub_fps = sh_video ? sh_video->fps : 25;
110 current_module = "find_sub";
111 if (refpts > sub_last_pts || refpts < sub_last_pts-1.0) {
112 find_sub(mpctx, subdata, (refpts+sub_delay) *
113 (subdata->sub_uses_time ? 100. : sub_fps));
114 if (vo_sub) vo_sub_last = vo_sub;
115 // FIXME! frame counter...
116 sub_last_pts = refpts;
120 // DVD sub:
121 if (vo_spudec && (vobsub_id >= 0 || (opts->sub_id >= 0 && type == 'v'))) {
122 int timestamp;
123 current_module = "spudec";
124 spudec_heartbeat(vo_spudec, 90000*sh_video->timer);
125 /* Get a sub packet from the DVD or a vobsub and make a timestamp
126 * relative to sh_video->timer */
127 while(1) {
128 // Vobsub
129 len = 0;
130 if (vo_vobsub) {
131 if (refpts+sub_delay >= 0) {
132 len = vobsub_get_packet(vo_vobsub, refpts+sub_delay,
133 (void**)&packet, &timestamp);
134 if (len > 0) {
135 timestamp -= (refpts + sub_delay - sh_video->timer)*90000;
136 mp_dbg(MSGT_CPLAYER,MSGL_V,"\rVOB sub: len=%d v_pts=%5.3f v_timer=%5.3f sub=%5.3f ts=%d \n",len,refpts,sh_video->timer,timestamp / 90000.0,timestamp);
139 } else {
140 // DVD sub
141 len = ds_get_packet_sub(d_dvdsub, (unsigned char**)&packet);
142 if (len > 0) {
143 // XXX This is wrong, sh_video->pts can be arbitrarily
144 // much behind demuxing position. Unfortunately using
145 // d_video->pts which would have been the simplest
146 // improvement doesn't work because mpeg specific hacks
147 // in video.c set d_video->pts to 0.
148 float x = d_dvdsub->pts - refpts;
149 if (x > -20 && x < 20) // prevent missing subs on pts reset
150 timestamp = 90000*(sh_video->timer + d_dvdsub->pts
151 + sub_delay - refpts);
152 else timestamp = 90000*(sh_video->timer + sub_delay);
153 mp_dbg(MSGT_CPLAYER, MSGL_V, "\rDVD sub: len=%d "
154 "v_pts=%5.3f s_pts=%5.3f ts=%d \n", len,
155 refpts, d_dvdsub->pts, timestamp);
158 if (len<=0 || !packet) break;
159 if (vo_vobsub || timestamp >= 0)
160 spudec_assemble(vo_spudec, packet, len, timestamp);
163 if (spudec_changed(vo_spudec))
164 vo_osd_changed(OSDTYPE_SPU);
165 } else if (opts->sub_id >= 0
166 && (type == 't' || type == 'm' || type == 'a' || type == 'd')) {
167 double curpts = refpts + sub_delay;
168 double endpts;
169 if (type == 'd' && !d_dvdsub->demuxer->teletext) {
170 tt_stream_props tsp = {0};
171 void *ptr = &tsp;
172 if (teletext_control(NULL, TV_VBI_CONTROL_START, &ptr) == VBI_CONTROL_TRUE)
173 d_dvdsub->demuxer->teletext = ptr;
175 if (d_dvdsub->non_interleaved)
176 ds_get_next_pts(d_dvdsub);
177 while (d_dvdsub->first) {
178 double subpts = ds_get_next_pts(d_dvdsub) + sub_offset;
179 if (subpts > curpts) {
180 // Libass handled subs can be fed to it in advance
181 if (!opts->ass_enabled || type == 'd')
182 break;
183 // Try to avoid demuxing whole file at once
184 if (d_dvdsub->non_interleaved && subpts > curpts + 1)
185 break;
187 endpts = d_dvdsub->first->endpts + sub_offset;
188 len = ds_get_packet_sub(d_dvdsub, &packet);
189 if (type == 'm') {
190 if (len < 2) continue;
191 len = FFMIN(len - 2, AV_RB16(packet));
192 packet += 2;
194 if (type == 'd') {
195 if (d_dvdsub->demuxer->teletext) {
196 uint8_t *p = packet;
197 p++;
198 len--;
199 while (len >= 46) {
200 int sublen = p[1];
201 if (p[0] == 2 || p[0] == 3)
202 teletext_control(d_dvdsub->demuxer->teletext,
203 TV_VBI_CONTROL_DECODE_DVB, p + 2);
204 p += sublen + 2;
205 len -= sublen + 2;
208 continue;
210 #ifdef CONFIG_ASS
211 if (opts->ass_enabled) {
212 sh_sub_t* sh = d_dvdsub->sh;
213 ass_track = sh ? sh->ass_track : NULL;
214 if (!ass_track) continue;
215 if (type == 'a') { // ssa/ass subs with libass
216 ass_process_chunk(ass_track, packet, len,
217 (long long)(subpts*1000 + 0.5),
218 (long long)((endpts-subpts)*1000 + 0.5));
219 } else { // plaintext subs with libass
220 if (subpts != MP_NOPTS_VALUE) {
221 subtitle tmp_subs = {0};
222 if (endpts == MP_NOPTS_VALUE) endpts = subpts + 3;
223 sub_add_text(&tmp_subs, packet, len, endpts);
224 tmp_subs.start = subpts * 100;
225 tmp_subs.end = endpts * 100;
226 ass_process_subtitle(ass_track, &tmp_subs);
227 sub_clear_text(&tmp_subs, MP_NOPTS_VALUE);
230 continue;
232 #endif
233 if (subpts != MP_NOPTS_VALUE) {
234 if (endpts == MP_NOPTS_VALUE)
235 sub_clear_text(&subs, MP_NOPTS_VALUE);
236 if (type == 'a') { // ssa/ass subs without libass => convert to plaintext
237 int i;
238 unsigned char* p = packet;
239 for (i=0; i < 8 && *p != '\0'; p++)
240 if (*p == ',')
241 i++;
242 if (*p == '\0') /* Broken line? */
243 continue;
244 len -= p - packet;
245 packet = p;
247 sub_add_text(&subs, packet, len, endpts);
248 set_osd_subtitle(mpctx, &subs);
250 if (d_dvdsub->non_interleaved)
251 ds_get_next_pts(d_dvdsub);
253 if (!opts->ass_enabled)
254 if (sub_clear_text(&subs, curpts))
255 set_osd_subtitle(mpctx, &subs);
257 current_module=NULL;
260 void update_teletext(sh_video_t *sh_video, demuxer_t *demuxer, int reset)
262 int page_changed;
264 if (!demuxer->teletext)
265 return;
267 //Also forcing page update when such ioctl is not supported or call error occured
268 if(teletext_control(demuxer->teletext,TV_VBI_CONTROL_IS_CHANGED,&page_changed)!=VBI_CONTROL_TRUE)
269 page_changed=1;
271 if(!page_changed)
272 return;
274 if(teletext_control(demuxer->teletext,TV_VBI_CONTROL_GET_VBIPAGE,&vo_osd_teletext_page)!=VBI_CONTROL_TRUE)
275 vo_osd_teletext_page=NULL;
276 if(teletext_control(demuxer->teletext,TV_VBI_CONTROL_GET_HALF_PAGE,&vo_osd_teletext_half)!=VBI_CONTROL_TRUE)
277 vo_osd_teletext_half=0;
278 if(teletext_control(demuxer->teletext,TV_VBI_CONTROL_GET_MODE,&vo_osd_teletext_mode)!=VBI_CONTROL_TRUE)
279 vo_osd_teletext_mode=0;
280 if(teletext_control(demuxer->teletext,TV_VBI_CONTROL_GET_FORMAT,&vo_osd_teletext_format)!=VBI_CONTROL_TRUE)
281 vo_osd_teletext_format=0;
282 vo_osd_changed(OSDTYPE_TELETEXT);
284 teletext_control(demuxer->teletext,TV_VBI_CONTROL_MARK_UNCHANGED,NULL);
287 int select_audio(demuxer_t* demuxer, int audio_id, char* audio_lang)
289 if (audio_id == -1 && audio_lang)
290 audio_id = demuxer_audio_track_by_lang(demuxer, audio_lang);
291 if (audio_id == -1)
292 audio_id = demuxer_default_audio_track(demuxer);
293 if (audio_id != -1) // -1 (automatic) is the default behaviour of demuxers
294 demuxer_switch_audio(demuxer, audio_id);
295 if (audio_id == -2) { // some demuxers don't yet know how to switch to no sound
296 demuxer->audio->id = -2;
297 demuxer->audio->sh = NULL;
299 return demuxer->audio->id;
302 bool attachment_is_font(struct demux_attachment *att)
304 if (!att->name || !att->type || !att->data || !att->data_size)
305 return false;
306 // match against MIME types
307 if (strcmp(att->type, "application/x-truetype-font") == 0
308 || strcmp(att->type, "application/x-font") == 0)
309 return true;
310 // fallback: match against file extension
311 if (strlen(att->name) > 4) {
312 char *ext = att->name + strlen(att->name) - 4;
313 if (strcasecmp(ext, ".ttf") == 0 || strcasecmp(ext, ".ttc") == 0
314 || strcasecmp(ext, ".otf") == 0)
315 return true;
317 return false;
320 /* Parse -noconfig common to both programs */
321 int disable_system_conf=0;
322 int disable_user_conf=0;
324 /* Disable all configuration files */
325 static void noconfig_all(void)
327 disable_system_conf = 1;
328 disable_user_conf = 1;
331 const m_option_t noconfig_opts[] = {
332 {"all", noconfig_all, CONF_TYPE_FUNC, CONF_GLOBAL|CONF_NOCFG|CONF_PRE_PARSE, 0, 0, NULL},
333 {"system", &disable_system_conf, CONF_TYPE_FLAG, CONF_GLOBAL|CONF_NOCFG|CONF_PRE_PARSE, 0, 1, NULL},
334 {"user", &disable_user_conf, CONF_TYPE_FLAG, CONF_GLOBAL|CONF_NOCFG|CONF_PRE_PARSE, 0, 1, NULL},
335 {NULL, NULL, 0, 0, 0, 0, NULL}