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 #if defined(__MINGW32__) || defined(__CYGWIN__)
27 #include "stream/stream.h"
28 #include "libmpdemux/demuxer.h"
29 #include "libmpdemux/stheader.h"
31 #include "libvo/sub.h"
32 #include "libvo/video_out.h"
33 #include "cpudetect.h"
39 #include "libmpcodecs/dec_teletext.h"
40 #include "ffmpeg_files/intreadwrite.h"
43 double sub_last_pts
= -303;
47 ASS_Track
*ass_track
= 0; // current track to render
50 sub_data
* subdata
= NULL
;
51 subtitle
* vo_sub_last
= NULL
;
53 const char *mencoder_version
= "MEncoder " VERSION
;
54 const char *mplayer_version
= "MPlayer " VERSION
;
56 void print_version(const char* name
)
58 mp_msg(MSGT_CPLAYER
, MSGL_INFO
, MP_TITLE
, name
);
60 /* Test for CPU capabilities (and corresponding OS support) for optimizing */
61 GetCpuCaps(&gCpuCaps
);
63 mp_msg(MSGT_CPLAYER
, MSGL_V
,
64 "CPUflags: MMX: %d MMX2: %d 3DNow: %d 3DNowExt: %d SSE: %d SSE2: %d SSSE3: %d\n",
65 gCpuCaps
.hasMMX
, gCpuCaps
.hasMMX2
,
66 gCpuCaps
.has3DNow
, gCpuCaps
.has3DNowExt
,
67 gCpuCaps
.hasSSE
, gCpuCaps
.hasSSE2
, gCpuCaps
.hasSSSE3
);
68 #if CONFIG_RUNTIME_CPUDETECT
69 mp_tmsg(MSGT_CPLAYER
,MSGL_V
, "Compiled with runtime CPU detection.\n");
71 mp_tmsg(MSGT_CPLAYER
,MSGL_V
, "Compiled for x86 CPU with extensions:");
73 mp_msg(MSGT_CPLAYER
,MSGL_V
," MMX");
75 mp_msg(MSGT_CPLAYER
,MSGL_V
," MMX2");
77 mp_msg(MSGT_CPLAYER
,MSGL_V
," 3DNow");
79 mp_msg(MSGT_CPLAYER
,MSGL_V
," 3DNowExt");
81 mp_msg(MSGT_CPLAYER
,MSGL_V
," SSE");
83 mp_msg(MSGT_CPLAYER
,MSGL_V
," SSE2");
85 mp_msg(MSGT_CPLAYER
,MSGL_V
," SSSE3");
87 mp_msg(MSGT_CPLAYER
,MSGL_V
," CMOV");
88 mp_msg(MSGT_CPLAYER
,MSGL_V
,"\n");
89 #endif /* CONFIG_RUNTIME_CPUDETECT */
93 static bool is_text_sub(int type
)
95 return type
== 't' || type
== 'm' || type
== 'a';
98 static bool is_av_sub(int type
)
100 return type
== 'b' || type
== 'p' || type
== 'x';
103 void update_subtitles(struct MPContext
*mpctx
, struct MPOpts
*opts
,
104 sh_video_t
*sh_video
, double refpts
, double sub_offset
,
105 demux_stream_t
*d_dvdsub
, int reset
)
107 double curpts
= refpts
+ sub_delay
;
108 unsigned char *packet
=NULL
;
110 int type
= d_dvdsub
->sh
? ((sh_sub_t
*)d_dvdsub
->sh
)->type
: 'v';
111 static subtitle subs
;
113 sub_clear_text(&subs
, MP_NOPTS_VALUE
);
115 set_osd_subtitle(mpctx
, NULL
);
118 spudec_reset(vo_spudec
);
119 vo_osd_changed(OSDTYPE_SPU
);
123 reset_avsub(d_dvdsub
->sh
);
129 if (sub_fps
==0) sub_fps
= sh_video
? sh_video
->fps
: 25;
130 current_module
= "find_sub";
131 if (refpts
> sub_last_pts
|| refpts
< sub_last_pts
-1.0) {
132 find_sub(mpctx
, subdata
, curpts
*
133 (subdata
->sub_uses_time
? 100. : sub_fps
));
134 if (vo_sub
) vo_sub_last
= vo_sub
;
135 // FIXME! frame counter...
136 sub_last_pts
= refpts
;
141 if (vobsub_id
>= 0 || type
== 'v') {
143 current_module
= "spudec";
144 /* Get a sub packet from the DVD or a vobsub */
150 len
= vobsub_get_packet(vo_vobsub
, curpts
,
151 (void**)&packet
, ×tamp
);
153 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
);
158 len
= ds_get_packet_sub(d_dvdsub
, (unsigned char**)&packet
);
160 // XXX This is wrong, sh_video->pts can be arbitrarily
161 // much behind demuxing position. Unfortunately using
162 // d_video->pts which would have been the simplest
163 // improvement doesn't work because mpeg specific hacks
164 // in video.c set d_video->pts to 0.
165 float x
= d_dvdsub
->pts
- refpts
;
166 if (x
> -20 && x
< 20) // prevent missing subs on pts reset
167 timestamp
= 90000*d_dvdsub
->pts
;
168 else timestamp
= 90000*curpts
;
169 mp_dbg(MSGT_CPLAYER
, MSGL_V
, "\rDVD sub: len=%d "
170 "v_pts=%5.3f s_pts=%5.3f ts=%d \n", len
,
171 refpts
, d_dvdsub
->pts
, timestamp
);
174 if (len
<=0 || !packet
) break;
175 // create it only here, since with some broken demuxers we might
176 // type = v but no DVD sub and we currently do not change the
177 // "original frame size" ever after init, leading to wrong-sized
180 vo_spudec
= spudec_new(NULL
);
181 if (vo_vobsub
|| timestamp
>= 0)
182 spudec_assemble(vo_spudec
, packet
, len
, timestamp
);
184 } else if (is_text_sub(type
) || is_av_sub(type
) || type
== 'd') {
185 if (type
== 'd' && !d_dvdsub
->demuxer
->teletext
) {
186 tt_stream_props tsp
= {0};
188 if (teletext_control(NULL
, TV_VBI_CONTROL_START
, &ptr
) == VBI_CONTROL_TRUE
)
189 d_dvdsub
->demuxer
->teletext
= ptr
;
191 if (d_dvdsub
->non_interleaved
)
192 ds_get_next_pts(d_dvdsub
);
194 int orig_type
= type
;
195 while (d_dvdsub
->first
) {
196 double subpts
= ds_get_next_pts(d_dvdsub
) + sub_offset
;
198 if (subpts
> curpts
) {
199 // Libass handled subs can be fed to it in advance
200 if (!opts
->ass_enabled
|| !is_text_sub(type
))
202 // Try to avoid demuxing whole file at once
203 if (d_dvdsub
->non_interleaved
&& subpts
> curpts
+ 1)
206 double endpts
= d_dvdsub
->first
->endpts
+ sub_offset
;
207 len
= ds_get_packet_sub(d_dvdsub
, &packet
);
208 if (is_av_sub(type
)) {
210 type
= decode_avsub(d_dvdsub
->sh
, &packet
, &len
, &subpts
, &endpts
);
216 if (len
< 2) continue;
217 len
= FFMIN(len
- 2, AV_RB16(packet
));
221 if (d_dvdsub
->demuxer
->teletext
) {
227 if (p
[0] == 2 || p
[0] == 3)
228 teletext_control(d_dvdsub
->demuxer
->teletext
,
229 TV_VBI_CONTROL_DECODE_DVB
, p
+ 2);
237 if (opts
->ass_enabled
) {
238 sh_sub_t
* sh
= d_dvdsub
->sh
;
239 ass_track
= sh
? sh
->ass_track
: NULL
;
240 if (!ass_track
) continue;
241 if (type
== 'a') { // ssa/ass subs with libass
242 ass_process_chunk(ass_track
, packet
, len
,
243 (long long)(subpts
*1000 + 0.5),
244 (long long)((endpts
-subpts
)*1000 + 0.5));
245 } else { // plaintext subs with libass
246 if (subpts
!= MP_NOPTS_VALUE
) {
247 subtitle tmp_subs
= {0};
248 if (endpts
== MP_NOPTS_VALUE
) endpts
= subpts
+ 3;
249 sub_add_text(&tmp_subs
, packet
, len
, endpts
);
250 tmp_subs
.start
= subpts
* 100;
251 tmp_subs
.end
= endpts
* 100;
252 ass_process_subtitle(ass_track
, &tmp_subs
);
253 sub_clear_text(&tmp_subs
, MP_NOPTS_VALUE
);
259 if (subpts
!= MP_NOPTS_VALUE
) {
260 if (endpts
== MP_NOPTS_VALUE
)
261 sub_clear_text(&subs
, MP_NOPTS_VALUE
);
262 if (type
== 'a') { // ssa/ass subs without libass => convert to plaintext
264 unsigned char* p
= packet
;
265 for (i
=0; i
< 8 && *p
!= '\0'; p
++)
268 if (*p
== '\0') /* Broken line? */
273 sub_add_text(&subs
, packet
, len
, endpts
);
274 set_osd_subtitle(mpctx
, &subs
);
276 if (d_dvdsub
->non_interleaved
)
277 ds_get_next_pts(d_dvdsub
);
279 if (!opts
->ass_enabled
)
280 if (sub_clear_text(&subs
, curpts
))
281 set_osd_subtitle(mpctx
, &subs
);
284 spudec_heartbeat(vo_spudec
, 90000*curpts
);
285 if (spudec_changed(vo_spudec
))
286 vo_osd_changed(OSDTYPE_SPU
);
292 void update_teletext(sh_video_t
*sh_video
, demuxer_t
*demuxer
, int reset
)
296 if (!demuxer
->teletext
)
299 //Also forcing page update when such ioctl is not supported or call error occured
300 if(teletext_control(demuxer
->teletext
,TV_VBI_CONTROL_IS_CHANGED
,&page_changed
)!=VBI_CONTROL_TRUE
)
306 if(teletext_control(demuxer
->teletext
,TV_VBI_CONTROL_GET_VBIPAGE
,&vo_osd_teletext_page
)!=VBI_CONTROL_TRUE
)
307 vo_osd_teletext_page
=NULL
;
308 if(teletext_control(demuxer
->teletext
,TV_VBI_CONTROL_GET_HALF_PAGE
,&vo_osd_teletext_half
)!=VBI_CONTROL_TRUE
)
309 vo_osd_teletext_half
=0;
310 if(teletext_control(demuxer
->teletext
,TV_VBI_CONTROL_GET_MODE
,&vo_osd_teletext_mode
)!=VBI_CONTROL_TRUE
)
311 vo_osd_teletext_mode
=0;
312 if(teletext_control(demuxer
->teletext
,TV_VBI_CONTROL_GET_FORMAT
,&vo_osd_teletext_format
)!=VBI_CONTROL_TRUE
)
313 vo_osd_teletext_format
=0;
314 vo_osd_changed(OSDTYPE_TELETEXT
);
316 teletext_control(demuxer
->teletext
,TV_VBI_CONTROL_MARK_UNCHANGED
,NULL
);
319 int select_audio(demuxer_t
* demuxer
, int audio_id
, char* audio_lang
)
321 if (audio_id
== -1 && audio_lang
)
322 audio_id
= demuxer_audio_track_by_lang(demuxer
, audio_lang
);
324 audio_id
= demuxer_default_audio_track(demuxer
);
325 if (audio_id
!= -1) // -1 (automatic) is the default behaviour of demuxers
326 demuxer_switch_audio(demuxer
, audio_id
);
327 if (audio_id
== -2) { // some demuxers don't yet know how to switch to no sound
328 demuxer
->audio
->id
= -2;
329 demuxer
->audio
->sh
= NULL
;
331 return demuxer
->audio
->id
;
334 bool attachment_is_font(struct demux_attachment
*att
)
336 if (!att
->name
|| !att
->type
|| !att
->data
|| !att
->data_size
)
338 // match against MIME types
339 if (strcmp(att
->type
, "application/x-truetype-font") == 0
340 || strcmp(att
->type
, "application/x-font") == 0)
342 // fallback: match against file extension
343 if (strlen(att
->name
) > 4) {
344 char *ext
= att
->name
+ strlen(att
->name
) - 4;
345 if (strcasecmp(ext
, ".ttf") == 0 || strcasecmp(ext
, ".ttc") == 0
346 || strcasecmp(ext
, ".otf") == 0)
352 /* Parse -noconfig common to both programs */
353 int disable_system_conf
=0;
354 int disable_user_conf
=0;
356 /* Disable all configuration files */
357 static void noconfig_all(void)
359 disable_system_conf
= 1;
360 disable_user_conf
= 1;
363 const m_option_t noconfig_opts
[] = {
364 {"all", noconfig_all
, CONF_TYPE_FUNC
, CONF_GLOBAL
|CONF_NOCFG
|CONF_PRE_PARSE
, 0, 0, NULL
},
365 {"system", &disable_system_conf
, CONF_TYPE_FLAG
, CONF_GLOBAL
|CONF_NOCFG
|CONF_PRE_PARSE
, 0, 1, NULL
},
366 {"user", &disable_user_conf
, CONF_TYPE_FLAG
, CONF_GLOBAL
|CONF_NOCFG
|CONF_PRE_PARSE
, 0, 1, NULL
},
367 {NULL
, NULL
, 0, 0, 0, 0, NULL
}