Separate teletext from tv support.
[mplayer.git] / mpcommon.c
blob575ddd0425d9f4ed78edc611fe0c5aab6d55d0a0
1 #include <stdlib.h>
2 #include "stream/stream.h"
3 #include "libmpdemux/demuxer.h"
4 #include "libmpdemux/stheader.h"
5 #include "mplayer.h"
6 #include "libvo/sub.h"
7 #include "libvo/video_out.h"
8 #include "cpudetect.h"
9 #include "help_mp.h"
10 #include "mp_msg.h"
11 #include "spudec.h"
12 #include "version.h"
13 #include "vobsub.h"
14 #include "libmpcodecs/dec_teletext.h"
15 #include "libavutil/intreadwrite.h"
16 #include "m_option.h"
17 #include "mpcommon.h"
19 double sub_last_pts = -303;
21 #ifdef CONFIG_ASS
22 #include "libass/ass.h"
23 #include "libass/ass_mp.h"
24 ass_track_t* ass_track = 0; // current track to render
25 #endif
27 sub_data* subdata = NULL;
28 subtitle* vo_sub_last = NULL;
31 void print_version(const char* name)
33 mp_msg(MSGT_CPLAYER, MSGL_INFO, MP_TITLE, name);
35 /* Test for CPU capabilities (and corresponding OS support) for optimizing */
36 GetCpuCaps(&gCpuCaps);
37 #if ARCH_X86
38 mp_msg(MSGT_CPLAYER, MSGL_V,
39 "CPUflags: MMX: %d MMX2: %d 3DNow: %d 3DNowExt: %d SSE: %d SSE2: %d SSSE3: %d\n",
40 gCpuCaps.hasMMX, gCpuCaps.hasMMX2,
41 gCpuCaps.has3DNow, gCpuCaps.has3DNowExt,
42 gCpuCaps.hasSSE, gCpuCaps.hasSSE2, gCpuCaps.hasSSSE3);
43 #if CONFIG_RUNTIME_CPUDETECT
44 mp_msg(MSGT_CPLAYER,MSGL_V, MSGTR_CompiledWithRuntimeDetection);
45 #else
46 mp_msg(MSGT_CPLAYER,MSGL_V, MSGTR_CompiledWithCPUExtensions);
47 if (HAVE_MMX)
48 mp_msg(MSGT_CPLAYER,MSGL_V," MMX");
49 if (HAVE_MMX2)
50 mp_msg(MSGT_CPLAYER,MSGL_V," MMX2");
51 if (HAVE_AMD3DNOW)
52 mp_msg(MSGT_CPLAYER,MSGL_V," 3DNow");
53 if (HAVE_AMD3DNOWEXT)
54 mp_msg(MSGT_CPLAYER,MSGL_V," 3DNowExt");
55 if (HAVE_SSE)
56 mp_msg(MSGT_CPLAYER,MSGL_V," SSE");
57 if (HAVE_SSE2)
58 mp_msg(MSGT_CPLAYER,MSGL_V," SSE2");
59 if (HAVE_SSSE3)
60 mp_msg(MSGT_CPLAYER,MSGL_V," SSSE3");
61 if (HAVE_CMOV)
62 mp_msg(MSGT_CPLAYER,MSGL_V," CMOV");
63 mp_msg(MSGT_CPLAYER,MSGL_V,"\n");
64 #endif /* CONFIG_RUNTIME_CPUDETECT */
65 #endif /* ARCH_X86 */
69 void update_subtitles(sh_video_t *sh_video, double refpts, demux_stream_t *d_dvdsub, int reset)
71 unsigned char *packet=NULL;
72 int len;
73 char type = d_dvdsub->sh ? ((sh_sub_t *)d_dvdsub->sh)->type : 'v';
74 static subtitle subs;
75 if (reset) {
76 sub_clear_text(&subs, MP_NOPTS_VALUE);
77 if (vo_sub) {
78 set_osd_subtitle(NULL);
80 if (vo_spudec) {
81 spudec_reset(vo_spudec);
82 vo_osd_changed(OSDTYPE_SPU);
85 // find sub
86 if (subdata) {
87 if (sub_fps==0) sub_fps = sh_video ? sh_video->fps : 25;
88 current_module = "find_sub";
89 if (refpts > sub_last_pts || refpts < sub_last_pts-1.0) {
90 find_sub(subdata, (refpts+sub_delay) *
91 (subdata->sub_uses_time ? 100. : sub_fps));
92 if (vo_sub) vo_sub_last = vo_sub;
93 // FIXME! frame counter...
94 sub_last_pts = refpts;
98 // DVD sub:
99 if (vo_config_count && vo_spudec &&
100 (vobsub_id >= 0 || (dvdsub_id >= 0 && type == 'v'))) {
101 int timestamp;
102 current_module = "spudec";
103 spudec_heartbeat(vo_spudec, 90000*sh_video->timer);
104 /* Get a sub packet from the DVD or a vobsub and make a timestamp
105 * relative to sh_video->timer */
106 while(1) {
107 // Vobsub
108 len = 0;
109 if (vo_vobsub) {
110 if (refpts+sub_delay >= 0) {
111 len = vobsub_get_packet(vo_vobsub, refpts+sub_delay,
112 (void**)&packet, &timestamp);
113 if (len > 0) {
114 timestamp -= (refpts + sub_delay - sh_video->timer)*90000;
115 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);
118 } else {
119 // DVD sub
120 len = ds_get_packet_sub(d_dvdsub, (unsigned char**)&packet);
121 if (len > 0) {
122 // XXX This is wrong, sh_video->pts can be arbitrarily
123 // much behind demuxing position. Unfortunately using
124 // d_video->pts which would have been the simplest
125 // improvement doesn't work because mpeg specific hacks
126 // in video.c set d_video->pts to 0.
127 float x = d_dvdsub->pts - refpts;
128 if (x > -20 && x < 20) // prevent missing subs on pts reset
129 timestamp = 90000*(sh_video->timer + d_dvdsub->pts
130 + sub_delay - refpts);
131 else timestamp = 90000*(sh_video->timer + sub_delay);
132 mp_dbg(MSGT_CPLAYER, MSGL_V, "\rDVD sub: len=%d "
133 "v_pts=%5.3f s_pts=%5.3f ts=%d \n", len,
134 refpts, d_dvdsub->pts, timestamp);
137 if (len<=0 || !packet) break;
138 if (vo_vobsub || timestamp >= 0)
139 spudec_assemble(vo_spudec, packet, len, timestamp);
142 if (spudec_changed(vo_spudec))
143 vo_osd_changed(OSDTYPE_SPU);
144 } else if (dvdsub_id >= 0 && (type == 't' || type == 'm' || type == 'a')) {
145 double curpts = refpts + sub_delay;
146 double endpts;
147 if (d_dvdsub->non_interleaved)
148 ds_get_next_pts(d_dvdsub);
149 while (d_dvdsub->first) {
150 double subpts = ds_get_next_pts(d_dvdsub);
151 if (subpts > curpts)
152 break;
153 endpts = d_dvdsub->first->endpts;
154 len = ds_get_packet_sub(d_dvdsub, &packet);
155 if (type == 'm') {
156 if (len < 2) continue;
157 len = FFMIN(len - 2, AV_RB16(packet));
158 packet += 2;
160 #ifdef CONFIG_ASS
161 if (ass_enabled) {
162 sh_sub_t* sh = d_dvdsub->sh;
163 ass_track = sh ? sh->ass_track : NULL;
164 if (!ass_track) continue;
165 if (type == 'a') { // ssa/ass subs with libass
166 ass_process_chunk(ass_track, packet, len,
167 (long long)(subpts*1000 + 0.5),
168 (long long)((endpts-subpts)*1000 + 0.5));
169 } else { // plaintext subs with libass
170 if (subpts != MP_NOPTS_VALUE) {
171 if (endpts == MP_NOPTS_VALUE) endpts = subpts + 3;
172 sub_clear_text(&subs, MP_NOPTS_VALUE);
173 sub_add_text(&subs, packet, len, endpts);
174 subs.start = subpts * 100;
175 subs.end = endpts * 100;
176 ass_process_subtitle(ass_track, &subs);
179 continue;
181 #endif
182 if (subpts != MP_NOPTS_VALUE) {
183 if (endpts == MP_NOPTS_VALUE)
184 sub_clear_text(&subs, MP_NOPTS_VALUE);
185 if (type == 'a') { // ssa/ass subs without libass => convert to plaintext
186 int i;
187 unsigned char* p = packet;
188 for (i=0; i < 8 && *p != '\0'; p++)
189 if (*p == ',')
190 i++;
191 if (*p == '\0') /* Broken line? */
192 continue;
193 len -= p - packet;
194 packet = p;
196 sub_add_text(&subs, packet, len, endpts);
197 set_osd_subtitle(&subs);
199 if (d_dvdsub->non_interleaved)
200 ds_get_next_pts(d_dvdsub);
202 if (sub_clear_text(&subs, curpts))
203 set_osd_subtitle(&subs);
205 current_module=NULL;
208 void update_teletext(sh_video_t *sh_video, demuxer_t *demuxer, int reset)
210 #ifdef CONFIG_TV_TELETEXT
211 int page_changed;
213 if (!demuxer->teletext)
214 return;
216 //Also forcing page update when such ioctl is not supported or call error occured
217 if(teletext_control(demuxer->teletext,TV_VBI_CONTROL_IS_CHANGED,&page_changed)!=VBI_CONTROL_TRUE)
218 page_changed=1;
220 if(!page_changed)
221 return;
223 if(teletext_control(demuxer->teletext,TV_VBI_CONTROL_GET_VBIPAGE,&vo_osd_teletext_page)!=VBI_CONTROL_TRUE)
224 vo_osd_teletext_page=NULL;
225 if(teletext_control(demuxer->teletext,TV_VBI_CONTROL_GET_HALF_PAGE,&vo_osd_teletext_half)!=VBI_CONTROL_TRUE)
226 vo_osd_teletext_half=0;
227 if(teletext_control(demuxer->teletext,TV_VBI_CONTROL_GET_MODE,&vo_osd_teletext_mode)!=VBI_CONTROL_TRUE)
228 vo_osd_teletext_mode=0;
229 if(teletext_control(demuxer->teletext,TV_VBI_CONTROL_GET_FORMAT,&vo_osd_teletext_format)!=VBI_CONTROL_TRUE)
230 vo_osd_teletext_format=0;
231 vo_osd_changed(OSDTYPE_TELETEXT);
233 teletext_control(demuxer->teletext,TV_VBI_CONTROL_MARK_UNCHANGED,NULL);
234 #endif
237 int select_audio(demuxer_t* demuxer, int audio_id, char* audio_lang)
239 if (audio_id == -1 && audio_lang)
240 audio_id = demuxer_audio_track_by_lang(demuxer, audio_lang);
241 if (audio_id == -1)
242 audio_id = demuxer_default_audio_track(demuxer);
243 if (audio_id != -1) // -1 (automatic) is the default behaviour of demuxers
244 demuxer_switch_audio(demuxer, audio_id);
245 if (audio_id == -2) { // some demuxers don't yet know how to switch to no sound
246 demuxer->audio->id = -2;
247 demuxer->audio->sh = NULL;
249 return demuxer->audio->id;
252 /* Parse -noconfig common to both programs */
253 int disable_system_conf=0;
254 int disable_user_conf=0;
255 #ifdef CONFIG_GUI
256 int disable_gui_conf=0;
257 #endif /* CONFIG_GUI */
259 /* Disable all configuration files */
260 static void noconfig_all(void)
262 disable_system_conf = 1;
263 disable_user_conf = 1;
264 #ifdef CONFIG_GUI
265 disable_gui_conf = 1;
266 #endif /* CONFIG_GUI */
269 const m_option_t noconfig_opts[] = {
270 {"all", noconfig_all, CONF_TYPE_FUNC, CONF_GLOBAL|CONF_NOCFG|CONF_PRE_PARSE, 0, 0, NULL},
271 {"system", &disable_system_conf, CONF_TYPE_FLAG, CONF_GLOBAL|CONF_NOCFG|CONF_PRE_PARSE, 0, 1, NULL},
272 {"user", &disable_user_conf, CONF_TYPE_FLAG, CONF_GLOBAL|CONF_NOCFG|CONF_PRE_PARSE, 0, 1, NULL},
273 #ifdef CONFIG_GUI
274 {"gui", &disable_gui_conf, CONF_TYPE_FLAG, CONF_GLOBAL|CONF_NOCFG|CONF_PRE_PARSE, 0, 1, NULL},
275 #endif /* CONFIG_GUI */
276 {NULL, NULL, 0, 0, 0, 0, NULL}