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.
24 #include "stream/stream.h"
25 #include "libmpdemux/demuxer.h"
26 #include "libmpdemux/stheader.h"
28 #include "libvo/sub.h"
29 #include "libvo/video_out.h"
30 #include "cpudetect.h"
36 #include "libmpcodecs/dec_teletext.h"
37 #include "ffmpeg_files/intreadwrite.h"
40 double sub_last_pts
= -303;
44 ASS_Track
*ass_track
= 0; // current track to render
47 sub_data
* subdata
= NULL
;
48 subtitle
* vo_sub_last
= NULL
;
50 const char *mencoder_version
= "MEncoder " VERSION
;
51 const char *mplayer_version
= "MPlayer " VERSION
;
53 void print_version(const char* name
)
55 mp_msg(MSGT_CPLAYER
, MSGL_INFO
, MP_TITLE
, name
);
57 /* Test for CPU capabilities (and corresponding OS support) for optimizing */
58 GetCpuCaps(&gCpuCaps
);
60 mp_msg(MSGT_CPLAYER
, MSGL_V
,
61 "CPUflags: MMX: %d MMX2: %d 3DNow: %d 3DNowExt: %d SSE: %d SSE2: %d SSSE3: %d\n",
62 gCpuCaps
.hasMMX
, gCpuCaps
.hasMMX2
,
63 gCpuCaps
.has3DNow
, gCpuCaps
.has3DNowExt
,
64 gCpuCaps
.hasSSE
, gCpuCaps
.hasSSE2
, gCpuCaps
.hasSSSE3
);
65 #if CONFIG_RUNTIME_CPUDETECT
66 mp_tmsg(MSGT_CPLAYER
,MSGL_V
, "Compiled with runtime CPU detection.\n");
68 mp_tmsg(MSGT_CPLAYER
,MSGL_V
, "Compiled for x86 CPU with extensions:");
70 mp_msg(MSGT_CPLAYER
,MSGL_V
," MMX");
72 mp_msg(MSGT_CPLAYER
,MSGL_V
," MMX2");
74 mp_msg(MSGT_CPLAYER
,MSGL_V
," 3DNow");
76 mp_msg(MSGT_CPLAYER
,MSGL_V
," 3DNowExt");
78 mp_msg(MSGT_CPLAYER
,MSGL_V
," SSE");
80 mp_msg(MSGT_CPLAYER
,MSGL_V
," SSE2");
82 mp_msg(MSGT_CPLAYER
,MSGL_V
," SSSE3");
84 mp_msg(MSGT_CPLAYER
,MSGL_V
," CMOV");
85 mp_msg(MSGT_CPLAYER
,MSGL_V
,"\n");
86 #endif /* CONFIG_RUNTIME_CPUDETECT */
90 static bool is_text_sub(int type
)
92 return type
== 't' || type
== 'm' || type
== 'a';
95 static bool is_av_sub(int type
)
97 return type
== 'b' || type
== 'p' || type
== 'x';
100 void update_subtitles(struct MPContext
*mpctx
, struct MPOpts
*opts
,
101 sh_video_t
*sh_video
, double refpts
, double sub_offset
,
102 demux_stream_t
*d_dvdsub
, int reset
)
104 double curpts
= refpts
+ sub_delay
;
105 unsigned char *packet
=NULL
;
107 int type
= d_dvdsub
->sh
? ((sh_sub_t
*)d_dvdsub
->sh
)->type
: 'v';
108 static subtitle subs
;
110 sub_clear_text(&subs
, MP_NOPTS_VALUE
);
112 set_osd_subtitle(mpctx
, NULL
);
115 spudec_reset(vo_spudec
);
116 vo_osd_changed(OSDTYPE_SPU
);
120 reset_avsub(d_dvdsub
->sh
);
126 if (sub_fps
==0) sub_fps
= sh_video
? sh_video
->fps
: 25;
127 current_module
= "find_sub";
128 if (refpts
> sub_last_pts
|| refpts
< sub_last_pts
-1.0) {
129 find_sub(mpctx
, subdata
, curpts
*
130 (subdata
->sub_uses_time
? 100. : sub_fps
));
131 if (vo_sub
) vo_sub_last
= vo_sub
;
132 // FIXME! frame counter...
133 sub_last_pts
= refpts
;
138 if (vobsub_id
>= 0 || type
== 'v') {
140 current_module
= "spudec";
141 /* Get a sub packet from the DVD or a vobsub */
147 len
= vobsub_get_packet(vo_vobsub
, curpts
,
148 (void**)&packet
, ×tamp
);
150 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
);
155 len
= ds_get_packet_sub(d_dvdsub
, (unsigned char**)&packet
);
157 // XXX This is wrong, sh_video->pts can be arbitrarily
158 // much behind demuxing position. Unfortunately using
159 // d_video->pts which would have been the simplest
160 // improvement doesn't work because mpeg specific hacks
161 // in video.c set d_video->pts to 0.
162 float x
= d_dvdsub
->pts
- refpts
;
163 if (x
> -20 && x
< 20) // prevent missing subs on pts reset
164 timestamp
= 90000*d_dvdsub
->pts
;
165 else timestamp
= 90000*curpts
;
166 mp_dbg(MSGT_CPLAYER
, MSGL_V
, "\rDVD sub: len=%d "
167 "v_pts=%5.3f s_pts=%5.3f ts=%d \n", len
,
168 refpts
, d_dvdsub
->pts
, timestamp
);
171 if (len
<=0 || !packet
) break;
172 // create it only here, since with some broken demuxers we might
173 // type = v but no DVD sub and we currently do not change the
174 // "original frame size" ever after init, leading to wrong-sized
177 vo_spudec
= spudec_new(NULL
);
178 if (vo_vobsub
|| timestamp
>= 0)
179 spudec_assemble(vo_spudec
, packet
, len
, timestamp
);
181 } else if (is_text_sub(type
) || is_av_sub(type
) || type
== 'd') {
182 if (type
== 'd' && !d_dvdsub
->demuxer
->teletext
) {
183 tt_stream_props tsp
= {0};
185 if (teletext_control(NULL
, TV_VBI_CONTROL_START
, &ptr
) == VBI_CONTROL_TRUE
)
186 d_dvdsub
->demuxer
->teletext
= ptr
;
188 if (d_dvdsub
->non_interleaved
)
189 ds_get_next_pts(d_dvdsub
);
191 int orig_type
= type
;
192 while (d_dvdsub
->first
) {
193 double subpts
= ds_get_next_pts(d_dvdsub
) + sub_offset
;
195 if (subpts
> curpts
) {
196 // Libass handled subs can be fed to it in advance
197 if (!opts
->ass_enabled
|| !is_text_sub(type
))
199 // Try to avoid demuxing whole file at once
200 if (d_dvdsub
->non_interleaved
&& subpts
> curpts
+ 1)
203 double endpts
= d_dvdsub
->first
->endpts
+ sub_offset
;
204 len
= ds_get_packet_sub(d_dvdsub
, &packet
);
205 if (is_av_sub(type
)) {
207 type
= decode_avsub(d_dvdsub
->sh
, &packet
, &len
, &subpts
, &endpts
);
213 if (len
< 2) continue;
214 len
= FFMIN(len
- 2, AV_RB16(packet
));
218 if (d_dvdsub
->demuxer
->teletext
) {
224 if (p
[0] == 2 || p
[0] == 3)
225 teletext_control(d_dvdsub
->demuxer
->teletext
,
226 TV_VBI_CONTROL_DECODE_DVB
, p
+ 2);
234 if (opts
->ass_enabled
) {
235 sh_sub_t
* sh
= d_dvdsub
->sh
;
236 ass_track
= sh
? sh
->ass_track
: NULL
;
237 if (!ass_track
) continue;
238 if (type
== 'a') { // ssa/ass subs with libass
239 ass_process_chunk(ass_track
, packet
, len
,
240 (long long)(subpts
*1000 + 0.5),
241 (long long)((endpts
-subpts
)*1000 + 0.5));
242 } else { // plaintext subs with libass
243 if (subpts
!= MP_NOPTS_VALUE
) {
244 subtitle tmp_subs
= {0};
245 if (endpts
== MP_NOPTS_VALUE
) endpts
= subpts
+ 3;
246 sub_add_text(&tmp_subs
, packet
, len
, endpts
);
247 tmp_subs
.start
= subpts
* 100;
248 tmp_subs
.end
= endpts
* 100;
249 ass_process_subtitle(ass_track
, &tmp_subs
);
250 sub_clear_text(&tmp_subs
, MP_NOPTS_VALUE
);
256 if (subpts
!= MP_NOPTS_VALUE
) {
257 if (endpts
== MP_NOPTS_VALUE
)
258 sub_clear_text(&subs
, MP_NOPTS_VALUE
);
259 if (type
== 'a') { // ssa/ass subs without libass => convert to plaintext
261 unsigned char* p
= packet
;
262 for (i
=0; i
< 8 && *p
!= '\0'; p
++)
265 if (*p
== '\0') /* Broken line? */
270 sub_add_text(&subs
, packet
, len
, endpts
);
271 set_osd_subtitle(mpctx
, &subs
);
273 if (d_dvdsub
->non_interleaved
)
274 ds_get_next_pts(d_dvdsub
);
276 if (!opts
->ass_enabled
)
277 if (sub_clear_text(&subs
, curpts
))
278 set_osd_subtitle(mpctx
, &subs
);
281 spudec_heartbeat(vo_spudec
, 90000*curpts
);
282 if (spudec_changed(vo_spudec
))
283 vo_osd_changed(OSDTYPE_SPU
);
289 void update_teletext(sh_video_t
*sh_video
, demuxer_t
*demuxer
, int reset
)
293 if (!demuxer
->teletext
)
296 //Also forcing page update when such ioctl is not supported or call error occured
297 if(teletext_control(demuxer
->teletext
,TV_VBI_CONTROL_IS_CHANGED
,&page_changed
)!=VBI_CONTROL_TRUE
)
303 if(teletext_control(demuxer
->teletext
,TV_VBI_CONTROL_GET_VBIPAGE
,&vo_osd_teletext_page
)!=VBI_CONTROL_TRUE
)
304 vo_osd_teletext_page
=NULL
;
305 if(teletext_control(demuxer
->teletext
,TV_VBI_CONTROL_GET_HALF_PAGE
,&vo_osd_teletext_half
)!=VBI_CONTROL_TRUE
)
306 vo_osd_teletext_half
=0;
307 if(teletext_control(demuxer
->teletext
,TV_VBI_CONTROL_GET_MODE
,&vo_osd_teletext_mode
)!=VBI_CONTROL_TRUE
)
308 vo_osd_teletext_mode
=0;
309 if(teletext_control(demuxer
->teletext
,TV_VBI_CONTROL_GET_FORMAT
,&vo_osd_teletext_format
)!=VBI_CONTROL_TRUE
)
310 vo_osd_teletext_format
=0;
311 vo_osd_changed(OSDTYPE_TELETEXT
);
313 teletext_control(demuxer
->teletext
,TV_VBI_CONTROL_MARK_UNCHANGED
,NULL
);
316 int select_audio(demuxer_t
* demuxer
, int audio_id
, char* audio_lang
)
318 if (audio_id
== -1 && audio_lang
)
319 audio_id
= demuxer_audio_track_by_lang(demuxer
, audio_lang
);
321 audio_id
= demuxer_default_audio_track(demuxer
);
322 if (audio_id
!= -1) // -1 (automatic) is the default behaviour of demuxers
323 demuxer_switch_audio(demuxer
, audio_id
);
324 if (audio_id
== -2) { // some demuxers don't yet know how to switch to no sound
325 demuxer
->audio
->id
= -2;
326 demuxer
->audio
->sh
= NULL
;
328 return demuxer
->audio
->id
;
331 bool attachment_is_font(struct demux_attachment
*att
)
333 if (!att
->name
|| !att
->type
|| !att
->data
|| !att
->data_size
)
335 // match against MIME types
336 if (strcmp(att
->type
, "application/x-truetype-font") == 0
337 || strcmp(att
->type
, "application/x-font") == 0)
339 // fallback: match against file extension
340 if (strlen(att
->name
) > 4) {
341 char *ext
= att
->name
+ strlen(att
->name
) - 4;
342 if (strcasecmp(ext
, ".ttf") == 0 || strcasecmp(ext
, ".ttc") == 0
343 || strcasecmp(ext
, ".otf") == 0)
349 /* Parse -noconfig common to both programs */
350 int disable_system_conf
=0;
351 int disable_user_conf
=0;
353 /* Disable all configuration files */
354 static void noconfig_all(void)
356 disable_system_conf
= 1;
357 disable_user_conf
= 1;
360 const m_option_t noconfig_opts
[] = {
361 {"all", noconfig_all
, CONF_TYPE_FUNC
, CONF_GLOBAL
|CONF_NOCFG
|CONF_PRE_PARSE
, 0, 0, NULL
},
362 {"system", &disable_system_conf
, CONF_TYPE_FLAG
, CONF_GLOBAL
|CONF_NOCFG
|CONF_PRE_PARSE
, 0, 1, NULL
},
363 {"user", &disable_user_conf
, CONF_TYPE_FLAG
, CONF_GLOBAL
|CONF_NOCFG
|CONF_PRE_PARSE
, 0, 1, NULL
},
364 {NULL
, NULL
, 0, 0, 0, 0, NULL
}