2010-01-30 23:24:23 +00:00
|
|
|
/*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2007-02-17 21:04:46 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include "stream/stream.h"
|
|
|
|
#include "libmpdemux/demuxer.h"
|
|
|
|
#include "libmpdemux/stheader.h"
|
|
|
|
#include "mplayer.h"
|
|
|
|
#include "libvo/sub.h"
|
|
|
|
#include "libvo/video_out.h"
|
2009-01-25 20:35:58 +00:00
|
|
|
#include "cpudetect.h"
|
|
|
|
#include "help_mp.h"
|
|
|
|
#include "mp_msg.h"
|
2007-02-17 21:04:46 +00:00
|
|
|
#include "spudec.h"
|
2009-01-25 20:35:58 +00:00
|
|
|
#include "version.h"
|
2007-02-17 21:04:46 +00:00
|
|
|
#include "vobsub.h"
|
2009-10-29 22:13:04 +00:00
|
|
|
#include "libmpcodecs/dec_teletext.h"
|
2008-01-27 16:13:21 +00:00
|
|
|
#include "libavutil/intreadwrite.h"
|
2008-04-14 11:21:29 +00:00
|
|
|
#include "m_option.h"
|
2009-09-23 19:04:24 +00:00
|
|
|
#include "mpcommon.h"
|
2007-02-17 21:04:46 +00:00
|
|
|
|
|
|
|
double sub_last_pts = -303;
|
|
|
|
|
2008-07-30 12:01:30 +00:00
|
|
|
#ifdef CONFIG_ASS
|
2007-02-17 21:04:46 +00:00
|
|
|
#include "libass/ass_mp.h"
|
|
|
|
ass_track_t* ass_track = 0; // current track to render
|
|
|
|
#endif
|
|
|
|
|
|
|
|
sub_data* subdata = NULL;
|
|
|
|
subtitle* vo_sub_last = NULL;
|
|
|
|
|
2009-01-25 20:35:58 +00:00
|
|
|
|
|
|
|
void print_version(const char* name)
|
|
|
|
{
|
|
|
|
mp_msg(MSGT_CPLAYER, MSGL_INFO, MP_TITLE, name);
|
|
|
|
|
|
|
|
/* Test for CPU capabilities (and corresponding OS support) for optimizing */
|
|
|
|
GetCpuCaps(&gCpuCaps);
|
|
|
|
#if ARCH_X86
|
|
|
|
mp_msg(MSGT_CPLAYER, MSGL_V,
|
2009-01-25 22:52:00 +00:00
|
|
|
"CPUflags: MMX: %d MMX2: %d 3DNow: %d 3DNowExt: %d SSE: %d SSE2: %d SSSE3: %d\n",
|
2009-01-25 20:35:58 +00:00
|
|
|
gCpuCaps.hasMMX, gCpuCaps.hasMMX2,
|
|
|
|
gCpuCaps.has3DNow, gCpuCaps.has3DNowExt,
|
2009-01-25 22:52:00 +00:00
|
|
|
gCpuCaps.hasSSE, gCpuCaps.hasSSE2, gCpuCaps.hasSSSE3);
|
2009-04-08 20:21:21 +00:00
|
|
|
#if CONFIG_RUNTIME_CPUDETECT
|
2009-01-25 20:35:58 +00:00
|
|
|
mp_msg(MSGT_CPLAYER,MSGL_V, MSGTR_CompiledWithRuntimeDetection);
|
|
|
|
#else
|
|
|
|
mp_msg(MSGT_CPLAYER,MSGL_V, MSGTR_CompiledWithCPUExtensions);
|
2009-01-26 11:24:05 +00:00
|
|
|
if (HAVE_MMX)
|
2009-01-25 20:35:58 +00:00
|
|
|
mp_msg(MSGT_CPLAYER,MSGL_V," MMX");
|
2009-01-26 11:24:05 +00:00
|
|
|
if (HAVE_MMX2)
|
2009-01-25 20:35:58 +00:00
|
|
|
mp_msg(MSGT_CPLAYER,MSGL_V," MMX2");
|
2009-01-26 11:24:05 +00:00
|
|
|
if (HAVE_AMD3DNOW)
|
2009-01-25 20:35:58 +00:00
|
|
|
mp_msg(MSGT_CPLAYER,MSGL_V," 3DNow");
|
2009-01-26 11:24:05 +00:00
|
|
|
if (HAVE_AMD3DNOWEXT)
|
2009-01-25 22:49:51 +00:00
|
|
|
mp_msg(MSGT_CPLAYER,MSGL_V," 3DNowExt");
|
2009-01-26 11:24:05 +00:00
|
|
|
if (HAVE_SSE)
|
2009-01-25 20:35:58 +00:00
|
|
|
mp_msg(MSGT_CPLAYER,MSGL_V," SSE");
|
2009-01-26 11:24:05 +00:00
|
|
|
if (HAVE_SSE2)
|
2009-01-25 20:35:58 +00:00
|
|
|
mp_msg(MSGT_CPLAYER,MSGL_V," SSE2");
|
2009-01-26 11:24:05 +00:00
|
|
|
if (HAVE_SSSE3)
|
2009-01-25 22:52:00 +00:00
|
|
|
mp_msg(MSGT_CPLAYER,MSGL_V," SSSE3");
|
2009-01-26 11:24:05 +00:00
|
|
|
if (HAVE_CMOV)
|
2009-01-25 22:52:00 +00:00
|
|
|
mp_msg(MSGT_CPLAYER,MSGL_V," CMOV");
|
2009-01-25 20:35:58 +00:00
|
|
|
mp_msg(MSGT_CPLAYER,MSGL_V,"\n");
|
2009-04-08 20:21:21 +00:00
|
|
|
#endif /* CONFIG_RUNTIME_CPUDETECT */
|
2009-01-25 20:35:58 +00:00
|
|
|
#endif /* ARCH_X86 */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-23 21:21:58 +00:00
|
|
|
void update_subtitles(sh_video_t *sh_video, double refpts, demux_stream_t *d_dvdsub, int reset)
|
2007-02-17 21:04:46 +00:00
|
|
|
{
|
|
|
|
unsigned char *packet=NULL;
|
|
|
|
int len;
|
|
|
|
char type = d_dvdsub->sh ? ((sh_sub_t *)d_dvdsub->sh)->type : 'v';
|
|
|
|
static subtitle subs;
|
|
|
|
if (reset) {
|
2008-01-06 20:27:14 +00:00
|
|
|
sub_clear_text(&subs, MP_NOPTS_VALUE);
|
|
|
|
if (vo_sub) {
|
2009-09-23 21:48:48 +00:00
|
|
|
set_osd_subtitle(NULL);
|
2008-01-06 20:27:14 +00:00
|
|
|
}
|
|
|
|
if (vo_spudec) {
|
|
|
|
spudec_reset(vo_spudec);
|
|
|
|
vo_osd_changed(OSDTYPE_SPU);
|
|
|
|
}
|
2007-02-17 21:04:46 +00:00
|
|
|
}
|
|
|
|
// find sub
|
|
|
|
if (subdata) {
|
2009-09-23 21:21:58 +00:00
|
|
|
if (sub_fps==0) sub_fps = sh_video ? sh_video->fps : 25;
|
2008-01-06 20:27:14 +00:00
|
|
|
current_module = "find_sub";
|
2009-09-23 19:01:33 +00:00
|
|
|
if (refpts > sub_last_pts || refpts < sub_last_pts-1.0) {
|
|
|
|
find_sub(subdata, (refpts+sub_delay) *
|
2009-05-13 02:58:57 +00:00
|
|
|
(subdata->sub_uses_time ? 100. : sub_fps));
|
2008-01-06 20:27:14 +00:00
|
|
|
if (vo_sub) vo_sub_last = vo_sub;
|
|
|
|
// FIXME! frame counter...
|
2009-09-23 19:01:33 +00:00
|
|
|
sub_last_pts = refpts;
|
2008-01-06 20:27:14 +00:00
|
|
|
}
|
2007-02-17 21:04:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DVD sub:
|
2007-12-28 20:57:38 +00:00
|
|
|
if (vo_config_count && vo_spudec &&
|
2008-01-06 20:27:14 +00:00
|
|
|
(vobsub_id >= 0 || (dvdsub_id >= 0 && type == 'v'))) {
|
|
|
|
int timestamp;
|
|
|
|
current_module = "spudec";
|
|
|
|
spudec_heartbeat(vo_spudec, 90000*sh_video->timer);
|
|
|
|
/* Get a sub packet from the DVD or a vobsub and make a timestamp
|
|
|
|
* relative to sh_video->timer */
|
|
|
|
while(1) {
|
|
|
|
// Vobsub
|
|
|
|
len = 0;
|
|
|
|
if (vo_vobsub) {
|
2009-09-23 19:01:33 +00:00
|
|
|
if (refpts+sub_delay >= 0) {
|
|
|
|
len = vobsub_get_packet(vo_vobsub, refpts+sub_delay,
|
2008-01-06 20:27:14 +00:00
|
|
|
(void**)&packet, ×tamp);
|
|
|
|
if (len > 0) {
|
2009-09-23 19:01:33 +00:00
|
|
|
timestamp -= (refpts + sub_delay - sh_video->timer)*90000;
|
|
|
|
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);
|
2008-01-06 20:27:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// DVD sub
|
|
|
|
len = ds_get_packet_sub(d_dvdsub, (unsigned char**)&packet);
|
|
|
|
if (len > 0) {
|
|
|
|
// XXX This is wrong, sh_video->pts can be arbitrarily
|
|
|
|
// much behind demuxing position. Unfortunately using
|
|
|
|
// d_video->pts which would have been the simplest
|
|
|
|
// improvement doesn't work because mpeg specific hacks
|
|
|
|
// in video.c set d_video->pts to 0.
|
2009-09-23 19:01:33 +00:00
|
|
|
float x = d_dvdsub->pts - refpts;
|
2008-01-06 20:27:14 +00:00
|
|
|
if (x > -20 && x < 20) // prevent missing subs on pts reset
|
|
|
|
timestamp = 90000*(sh_video->timer + d_dvdsub->pts
|
2009-09-23 19:01:33 +00:00
|
|
|
+ sub_delay - refpts);
|
2008-01-06 20:27:14 +00:00
|
|
|
else timestamp = 90000*(sh_video->timer + sub_delay);
|
|
|
|
mp_dbg(MSGT_CPLAYER, MSGL_V, "\rDVD sub: len=%d "
|
|
|
|
"v_pts=%5.3f s_pts=%5.3f ts=%d \n", len,
|
2009-09-23 19:01:33 +00:00
|
|
|
refpts, d_dvdsub->pts, timestamp);
|
2008-01-06 20:27:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (len<=0 || !packet) break;
|
|
|
|
if (vo_vobsub || timestamp >= 0)
|
|
|
|
spudec_assemble(vo_spudec, packet, len, timestamp);
|
|
|
|
}
|
2007-02-17 21:04:46 +00:00
|
|
|
|
2008-01-06 20:27:14 +00:00
|
|
|
if (spudec_changed(vo_spudec))
|
|
|
|
vo_osd_changed(OSDTYPE_SPU);
|
2009-11-10 11:31:47 +00:00
|
|
|
} else if (dvdsub_id >= 0 && (type == 't' || type == 'm' || type == 'a' || type == 'd')) {
|
2009-09-23 19:01:33 +00:00
|
|
|
double curpts = refpts + sub_delay;
|
2008-01-06 20:27:14 +00:00
|
|
|
double endpts;
|
2009-11-10 11:31:47 +00:00
|
|
|
if (type == 'd' && !d_dvdsub->demuxer->teletext) {
|
|
|
|
tt_stream_props tsp = {0};
|
|
|
|
void *ptr = &tsp;
|
|
|
|
if (teletext_control(NULL, TV_VBI_CONTROL_START, &ptr) == VBI_CONTROL_TRUE)
|
|
|
|
d_dvdsub->demuxer->teletext = ptr;
|
|
|
|
}
|
2009-11-01 09:48:34 +00:00
|
|
|
if (d_dvdsub->non_interleaved)
|
|
|
|
ds_get_next_pts(d_dvdsub);
|
2008-01-06 20:27:14 +00:00
|
|
|
while (d_dvdsub->first) {
|
2009-09-23 18:28:20 +00:00
|
|
|
double subpts = ds_get_next_pts(d_dvdsub);
|
|
|
|
if (subpts > curpts)
|
2008-01-06 20:27:14 +00:00
|
|
|
break;
|
|
|
|
endpts = d_dvdsub->first->endpts;
|
|
|
|
len = ds_get_packet_sub(d_dvdsub, &packet);
|
2008-01-27 16:13:21 +00:00
|
|
|
if (type == 'm') {
|
|
|
|
if (len < 2) continue;
|
|
|
|
len = FFMIN(len - 2, AV_RB16(packet));
|
|
|
|
packet += 2;
|
|
|
|
}
|
2009-11-10 11:31:47 +00:00
|
|
|
if (type == 'd') {
|
|
|
|
if (d_dvdsub->demuxer->teletext) {
|
|
|
|
uint8_t *p = packet;
|
|
|
|
p++;
|
|
|
|
len--;
|
|
|
|
while (len >= 46) {
|
|
|
|
int sublen = p[1];
|
|
|
|
if (p[0] == 2 || p[0] == 3)
|
|
|
|
teletext_control(d_dvdsub->demuxer->teletext,
|
|
|
|
TV_VBI_CONTROL_DECODE_DVB, p + 2);
|
|
|
|
p += sublen + 2;
|
|
|
|
len -= sublen + 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
2008-07-30 12:01:30 +00:00
|
|
|
#ifdef CONFIG_ASS
|
2008-01-27 16:36:35 +00:00
|
|
|
if (ass_enabled) {
|
2008-01-11 21:45:17 +00:00
|
|
|
sh_sub_t* sh = d_dvdsub->sh;
|
|
|
|
ass_track = sh ? sh->ass_track : NULL;
|
2008-01-27 16:36:35 +00:00
|
|
|
if (!ass_track) continue;
|
|
|
|
if (type == 'a') { // ssa/ass subs with libass
|
2010-04-12 21:04:17 +00:00
|
|
|
if (len > 10 && memcmp(packet, "Dialogue: ", 10) == 0)
|
|
|
|
ass_process_data(ass_track, packet, len);
|
|
|
|
else
|
2008-09-08 21:26:22 +00:00
|
|
|
ass_process_chunk(ass_track, packet, len,
|
2009-09-23 18:28:20 +00:00
|
|
|
(long long)(subpts*1000 + 0.5),
|
|
|
|
(long long)((endpts-subpts)*1000 + 0.5));
|
2008-01-27 16:38:04 +00:00
|
|
|
} else { // plaintext subs with libass
|
2009-09-23 18:28:20 +00:00
|
|
|
if (subpts != MP_NOPTS_VALUE) {
|
2009-12-18 19:29:33 +00:00
|
|
|
subtitle tmp_subs = {0};
|
2009-09-23 18:28:20 +00:00
|
|
|
if (endpts == MP_NOPTS_VALUE) endpts = subpts + 3;
|
2009-12-18 19:29:33 +00:00
|
|
|
sub_add_text(&tmp_subs, packet, len, endpts);
|
|
|
|
tmp_subs.start = subpts * 100;
|
|
|
|
tmp_subs.end = endpts * 100;
|
|
|
|
ass_process_subtitle(ass_track, &tmp_subs);
|
|
|
|
sub_clear_text(&tmp_subs, MP_NOPTS_VALUE);
|
2008-01-27 16:38:04 +00:00
|
|
|
}
|
2008-01-06 20:27:14 +00:00
|
|
|
}
|
2008-01-11 21:45:17 +00:00
|
|
|
continue;
|
|
|
|
}
|
2007-02-17 21:04:46 +00:00
|
|
|
#endif
|
2009-09-23 18:28:20 +00:00
|
|
|
if (subpts != MP_NOPTS_VALUE) {
|
2008-01-06 20:27:14 +00:00
|
|
|
if (endpts == MP_NOPTS_VALUE)
|
|
|
|
sub_clear_text(&subs, MP_NOPTS_VALUE);
|
2008-01-11 21:45:17 +00:00
|
|
|
if (type == 'a') { // ssa/ass subs without libass => convert to plaintext
|
|
|
|
int i;
|
|
|
|
unsigned char* p = packet;
|
2010-04-12 21:04:17 +00:00
|
|
|
int skip_commas = 8;
|
|
|
|
if (len > 10 && memcmp(packet, "Dialogue: ", 10) == 0)
|
|
|
|
skip_commas = 9;
|
|
|
|
for (i=0; i < skip_commas && *p != '\0'; p++)
|
2008-01-11 21:45:17 +00:00
|
|
|
if (*p == ',')
|
|
|
|
i++;
|
|
|
|
if (*p == '\0') /* Broken line? */
|
|
|
|
continue;
|
|
|
|
len -= p - packet;
|
|
|
|
packet = p;
|
|
|
|
}
|
2008-01-06 20:27:14 +00:00
|
|
|
sub_add_text(&subs, packet, len, endpts);
|
2009-09-23 21:48:48 +00:00
|
|
|
set_osd_subtitle(&subs);
|
2008-01-06 20:27:14 +00:00
|
|
|
}
|
2009-11-01 09:48:34 +00:00
|
|
|
if (d_dvdsub->non_interleaved)
|
|
|
|
ds_get_next_pts(d_dvdsub);
|
2008-01-06 20:27:14 +00:00
|
|
|
}
|
|
|
|
if (sub_clear_text(&subs, curpts))
|
2009-09-23 21:48:48 +00:00
|
|
|
set_osd_subtitle(&subs);
|
2007-02-17 21:04:46 +00:00
|
|
|
}
|
|
|
|
current_module=NULL;
|
|
|
|
}
|
2007-07-29 17:57:39 +00:00
|
|
|
|
|
|
|
void update_teletext(sh_video_t *sh_video, demuxer_t *demuxer, int reset)
|
|
|
|
{
|
2007-09-08 03:06:23 +00:00
|
|
|
int page_changed;
|
|
|
|
|
2009-11-07 12:31:05 +00:00
|
|
|
if (!demuxer->teletext)
|
|
|
|
return;
|
2007-07-29 17:57:39 +00:00
|
|
|
|
2007-09-08 03:06:23 +00:00
|
|
|
//Also forcing page update when such ioctl is not supported or call error occured
|
2009-11-07 12:31:05 +00:00
|
|
|
if(teletext_control(demuxer->teletext,TV_VBI_CONTROL_IS_CHANGED,&page_changed)!=VBI_CONTROL_TRUE)
|
2007-09-08 03:06:23 +00:00
|
|
|
page_changed=1;
|
|
|
|
|
|
|
|
if(!page_changed)
|
|
|
|
return;
|
|
|
|
|
2009-11-07 12:31:05 +00:00
|
|
|
if(teletext_control(demuxer->teletext,TV_VBI_CONTROL_GET_VBIPAGE,&vo_osd_teletext_page)!=VBI_CONTROL_TRUE)
|
2007-07-29 17:57:39 +00:00
|
|
|
vo_osd_teletext_page=NULL;
|
2009-11-07 12:31:05 +00:00
|
|
|
if(teletext_control(demuxer->teletext,TV_VBI_CONTROL_GET_HALF_PAGE,&vo_osd_teletext_half)!=VBI_CONTROL_TRUE)
|
2007-07-29 17:57:39 +00:00
|
|
|
vo_osd_teletext_half=0;
|
2009-11-07 12:31:05 +00:00
|
|
|
if(teletext_control(demuxer->teletext,TV_VBI_CONTROL_GET_MODE,&vo_osd_teletext_mode)!=VBI_CONTROL_TRUE)
|
2007-07-29 17:57:39 +00:00
|
|
|
vo_osd_teletext_mode=0;
|
2009-11-07 12:31:05 +00:00
|
|
|
if(teletext_control(demuxer->teletext,TV_VBI_CONTROL_GET_FORMAT,&vo_osd_teletext_format)!=VBI_CONTROL_TRUE)
|
2007-07-29 17:57:39 +00:00
|
|
|
vo_osd_teletext_format=0;
|
|
|
|
vo_osd_changed(OSDTYPE_TELETEXT);
|
2007-09-08 03:06:23 +00:00
|
|
|
|
2009-11-07 12:31:05 +00:00
|
|
|
teletext_control(demuxer->teletext,TV_VBI_CONTROL_MARK_UNCHANGED,NULL);
|
2007-07-29 17:57:39 +00:00
|
|
|
}
|
2008-02-29 17:25:50 +00:00
|
|
|
|
|
|
|
int select_audio(demuxer_t* demuxer, int audio_id, char* audio_lang)
|
|
|
|
{
|
|
|
|
if (audio_id == -1 && audio_lang)
|
|
|
|
audio_id = demuxer_audio_track_by_lang(demuxer, audio_lang);
|
2008-03-30 16:55:46 +00:00
|
|
|
if (audio_id == -1)
|
|
|
|
audio_id = demuxer_default_audio_track(demuxer);
|
2008-02-29 17:25:50 +00:00
|
|
|
if (audio_id != -1) // -1 (automatic) is the default behaviour of demuxers
|
|
|
|
demuxer_switch_audio(demuxer, audio_id);
|
|
|
|
if (audio_id == -2) { // some demuxers don't yet know how to switch to no sound
|
|
|
|
demuxer->audio->id = -2;
|
|
|
|
demuxer->audio->sh = NULL;
|
|
|
|
}
|
|
|
|
return demuxer->audio->id;
|
|
|
|
}
|
2008-04-14 11:21:29 +00:00
|
|
|
|
|
|
|
/* Parse -noconfig common to both programs */
|
|
|
|
int disable_system_conf=0;
|
|
|
|
int disable_user_conf=0;
|
2008-07-30 13:44:59 +00:00
|
|
|
#ifdef CONFIG_GUI
|
2008-04-15 13:20:15 +00:00
|
|
|
int disable_gui_conf=0;
|
2008-07-30 13:44:59 +00:00
|
|
|
#endif /* CONFIG_GUI */
|
2008-04-14 11:21:29 +00:00
|
|
|
|
|
|
|
/* Disable all configuration files */
|
|
|
|
static void noconfig_all(void)
|
|
|
|
{
|
|
|
|
disable_system_conf = 1;
|
|
|
|
disable_user_conf = 1;
|
2008-07-30 13:44:59 +00:00
|
|
|
#ifdef CONFIG_GUI
|
2008-04-14 11:21:29 +00:00
|
|
|
disable_gui_conf = 1;
|
2008-07-30 13:44:59 +00:00
|
|
|
#endif /* CONFIG_GUI */
|
2008-04-14 11:21:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const m_option_t noconfig_opts[] = {
|
|
|
|
{"all", noconfig_all, CONF_TYPE_FUNC, CONF_GLOBAL|CONF_NOCFG|CONF_PRE_PARSE, 0, 0, NULL},
|
|
|
|
{"system", &disable_system_conf, CONF_TYPE_FLAG, CONF_GLOBAL|CONF_NOCFG|CONF_PRE_PARSE, 0, 1, NULL},
|
|
|
|
{"user", &disable_user_conf, CONF_TYPE_FLAG, CONF_GLOBAL|CONF_NOCFG|CONF_PRE_PARSE, 0, 1, NULL},
|
2008-07-30 13:44:59 +00:00
|
|
|
#ifdef CONFIG_GUI
|
2008-04-14 11:21:29 +00:00
|
|
|
{"gui", &disable_gui_conf, CONF_TYPE_FLAG, CONF_GLOBAL|CONF_NOCFG|CONF_PRE_PARSE, 0, 1, NULL},
|
2008-07-30 13:44:59 +00:00
|
|
|
#endif /* CONFIG_GUI */
|
2008-04-14 11:21:29 +00:00
|
|
|
{NULL, NULL, 0, 0, 0, 0, NULL}
|
|
|
|
};
|
2010-03-17 09:12:51 +00:00
|
|
|
|