Commit 756a9df7 authored by Jean-Paul Saman's avatar Jean-Paul Saman

- Enabled tuning for DVB-C and DVB-T cards.

- Syncing with old satellite plugin.
- Cleanup of code.
parent 712d1a84
...@@ -82,14 +82,20 @@ int E_(Open) ( vlc_object_t *p_this ) ...@@ -82,14 +82,20 @@ int E_(Open) ( vlc_object_t *p_this )
unsigned int u_device = 0; unsigned int u_device = 0;
unsigned int u_freq = 0; unsigned int u_freq = 0;
unsigned int u_srate = 0; unsigned int u_srate = 0;
int i_lnb_lof1;
int i_lnb_lof2;
int i_lnb_slof;
int i_bandwidth = 0;
int i_modulation = 0;
int i_guard = 0;
int i_transmission = 0;
int i_hierarchy = 0;
vlc_bool_t b_polarisation = 0; vlc_bool_t b_polarisation = 0;
int i_fec = 0; int i_fec = 0;
fe_code_rate_t fe_fec = FEC_NONE; int i_code_rate_HP = 0;
int i_code_rate_LP = 0;
vlc_bool_t b_diseqc; vlc_bool_t b_diseqc;
vlc_bool_t b_probe; vlc_bool_t b_probe;
int i_lnb_lof1;
int i_lnb_lof2;
int i_lnb_slof;
char dvr[] = DVR; char dvr[] = DVR;
char frontend[] = FRONTEND; char frontend[] = FRONTEND;
int i_len = 0; int i_len = 0;
...@@ -115,17 +121,10 @@ int E_(Open) ( vlc_object_t *p_this ) ...@@ -115,17 +121,10 @@ int E_(Open) ( vlc_object_t *p_this )
msg_Err( p_input, "(access) cannot determine frontend info" ); msg_Err( p_input, "(access) cannot determine frontend info" );
return -1; return -1;
} }
if (frontend_info.type != FE_QPSK)
{
msg_Err( p_input, "frontend not of type satellite" );
return -1;
}
} }
else /* no frontend probing is done so use default values. */ else /* no frontend probing is done so use default border values. */
{ {
int i_len; msg_Dbg( p_input, "using default bvalues for frontend info" );
msg_Dbg( p_input, "using default values for frontend info" );
i_len = sizeof(FRONTEND); i_len = sizeof(FRONTEND);
if (snprintf(frontend, sizeof(FRONTEND), FRONTEND, u_adapter, u_device) >= i_len) if (snprintf(frontend, sizeof(FRONTEND), FRONTEND, u_adapter, u_device) >= i_len)
{ {
...@@ -133,12 +132,21 @@ int E_(Open) ( vlc_object_t *p_this ) ...@@ -133,12 +132,21 @@ int E_(Open) ( vlc_object_t *p_this )
frontend[sizeof(FRONTEND)] = '\0'; frontend[sizeof(FRONTEND)] = '\0';
} }
strncpy(frontend_info.name, frontend, 128); strncpy(frontend_info.name, frontend, 128);
msg_Dbg(p_input, "method of access is %s", p_input->psz_access);
frontend_info.type = FE_QPSK; frontend_info.type = FE_QPSK;
if (strncmp( p_input->psz_access, "qpsk",4 ) ==0)
frontend_info.type = FE_QPSK;
else if (strncmp( p_input->psz_access, "cable",5 ) ==0)
frontend_info.type = FE_QAM;
else if (strncmp( p_input->psz_access, "terrestrial",11) ==0)
frontend_info.type = FE_OFDM;
frontend_info.frequency_max = 12999; frontend_info.frequency_max = 12999;
frontend_info.frequency_min = 10000; frontend_info.frequency_min = 10000;
frontend_info.symbol_rate_max = 30000; frontend_info.symbol_rate_max = 30000;
frontend_info.symbol_rate_min = 1000; frontend_info.symbol_rate_min = 1000;
/* b_polarisation */
} }
/* Register Callback functions */ /* Register Callback functions */
...@@ -164,10 +172,11 @@ int E_(Open) ( vlc_object_t *p_this ) ...@@ -164,10 +172,11 @@ int E_(Open) ( vlc_object_t *p_this )
} }
} }
/* Validating input values */
if ( ((u_freq) > frontend_info.frequency_max) || if ( ((u_freq) > frontend_info.frequency_max) ||
((u_freq) < frontend_info.frequency_min) ) ((u_freq) < frontend_info.frequency_min) )
{ {
msg_Warn( p_input, "invalid frequency %d, using default one", u_freq ); msg_Warn( p_input, "invalid frequency %d (kHz), using default one", u_freq );
u_freq = config_GetInt( p_input, "frequency" ); u_freq = config_GetInt( p_input, "frequency" );
if ( ((u_freq) > frontend_info.frequency_max) || if ( ((u_freq) > frontend_info.frequency_max) ||
((u_freq) < frontend_info.frequency_min) ) ((u_freq) < frontend_info.frequency_min) )
...@@ -212,57 +221,58 @@ int E_(Open) ( vlc_object_t *p_this ) ...@@ -212,57 +221,58 @@ int E_(Open) ( vlc_object_t *p_this )
} }
} }
switch( i_fec ) /* Get antenna configuration options */
{ b_diseqc = config_GetInt( p_input, "diseqc" );
case 1: i_lnb_lof1 = config_GetInt( p_input, "lnb-lof1" );
fe_fec = FEC_1_2; i_lnb_lof2 = config_GetInt( p_input, "lnb-lof2" );
break; i_lnb_slof = config_GetInt( p_input, "lnb-slof" );
case 2:
fe_fec = FEC_2_3;
break;
case 3:
fe_fec = FEC_3_4;
break;
case 4:
fe_fec = FEC_4_5;
break;
case 5:
fe_fec = FEC_5_6;
break;
case 6:
fe_fec = FEC_6_7;
break;
case 7:
fe_fec = FEC_7_8;
break;
case 8:
fe_fec = FEC_8_9;
break;
case 9:
fe_fec = FEC_AUTO;
break;
default:
/* cannot happen */
fe_fec = FEC_NONE;
msg_Err( p_input, "invalid FEC (unknown)" );
break;
}
/* Setting frontend parameters for tuning the hardware */
switch( frontend_info.type ) switch( frontend_info.type )
{ {
/* DVB-S: satellite and budget cards (nova) */
case FE_QPSK: case FE_QPSK:
fep.frequency = u_freq * 1000; fep.frequency = u_freq * 1000;
fep.inversion = INVERSION_AUTO; fep.inversion = dvb_DecodeInversion(p_input, (int) b_polarisation);
fep.u.qpsk.symbol_rate = u_srate * 1000; fep.u.qpsk.symbol_rate = u_srate * 1000;
fep.u.qpsk.fec_inner = fe_fec; fep.u.qpsk.fec_inner = dvb_DecodeFEC(p_input, i_fec);
msg_Dbg( p_input, "satellite frontend found on %s", frontend_info.name ); msg_Dbg( p_input, "satellite (QPSK) frontend found on %s", frontend_info.name );
break; break;
/* DVB-C */
case FE_QAM: case FE_QAM:
msg_Dbg( p_input, "cable frontend found on %s", frontend_info.name ); i_modulation = config_GetInt(p_input, "modulation");
fep.frequency = u_freq * 1000;
fep.inversion = dvb_DecodeInversion(p_input, (int) b_polarisation);
fep.u.qam.symbol_rate = u_srate * 1000;
fep.u.qam.fec_inner = dvb_DecodeFEC(p_input, i_fec);
fep.u.qam.modulation = dvb_DecodeModulation(p_input, i_modulation);
msg_Dbg( p_input, "cable (QAM) frontend found on %s", frontend_info.name );
break; break;
/* DVB-T */
case FE_OFDM: case FE_OFDM:
msg_Dbg( p_input, "terrestrial frontend found on %s", frontend_info.name ); i_bandwidth = config_GetInt( p_input, "bandwidth");
i_code_rate_HP = config_GetInt(p_input, "code-rate-hp");
i_code_rate_LP = config_GetInt(p_input, "code-rate-lp");
i_modulation = config_GetInt(p_input, "modulation");
i_transmission = config_GetInt(p_input, "transmission");
i_guard = config_GetInt(p_input, "guard");
i_hierarchy = config_GetInt(p_input, "hierarchy");
fep.frequency = u_freq * 1000;
fep.inversion = dvb_DecodeInversion(p_input, (int) b_polarisation);
fep.u.ofdm.bandwidth = dvb_DecodeBandwidth(p_input, i_bandwidth);
fep.u.ofdm.code_rate_HP = dvb_DecodeFEC(p_input, i_code_rate_HP);
fep.u.ofdm.code_rate_LP = dvb_DecodeFEC(p_input, i_code_rate_LP);
fep.u.ofdm.constellation = dvb_DecodeModulation(p_input, i_modulation);
fep.u.ofdm.transmission_mode = dvb_DecodeTransmission(p_input, i_transmission);
fep.u.ofdm.guard_interval = dvb_DecodeGuardInterval(p_input, i_guard);
fep.u.ofdm.hierarchy_information = dvb_DecodeHierarchy(p_input, i_hierarchy);
msg_Dbg( p_input, "terrestrial (OFDM) frontend found on %s", frontend_info.name );
break; break;
default: default:
msg_Err( p_input, "Could not determine frontend type on %s", frontend_info.name ); msg_Err( p_input, "Could not determine frontend type on %s", frontend_info.name );
return -1; return -1;
...@@ -300,17 +310,8 @@ int E_(Open) ( vlc_object_t *p_this ) ...@@ -300,17 +310,8 @@ int E_(Open) ( vlc_object_t *p_this )
return -1; return -1;
} }
/* Get antenna configuration options */
b_diseqc = config_GetInt( p_input, "diseqc" );
i_lnb_lof1 = config_GetInt( p_input, "lnb-lof1" );
i_lnb_lof2 = config_GetInt( p_input, "lnb-lof2" );
i_lnb_slof = config_GetInt( p_input, "lnb-slof" );
/* Initialize the Satellite Card */ /* Initialize the Satellite Card */
msg_Dbg( p_input, "initializing Sat Card with Freq: %u, Pol: %d, " switch (ioctl_SetFrontend (p_input, fep, b_polarisation, u_adapter, u_device ))
"FEC: %d, Srate: %u", u_freq, b_polarisation, fe_fec, u_srate );
switch (ioctl_SetQPSKFrontend (p_input, fep, b_polarisation, u_adapter, u_device ))
{ {
case -2: case -2:
msg_Err( p_input, "frontend returned an unexpected event" ); msg_Err( p_input, "frontend returned an unexpected event" );
...@@ -463,8 +464,11 @@ int SatelliteSetProgram( input_thread_t * p_input, ...@@ -463,8 +464,11 @@ int SatelliteSetProgram( input_thread_t * p_input,
pgrm_descriptor_t * p_new_prg ) pgrm_descriptor_t * p_new_prg )
{ {
unsigned int i_es_index; unsigned int i_es_index;
vlc_value_t val;
unsigned int u_adapter = 1; unsigned int u_adapter = 1;
unsigned int u_device = 0; unsigned int u_device = 0;
unsigned int u_video_type = 1; /* default video type */
unsigned int u_audio_type = 2; /* default audio type */
// Get adapter and device number to use for this dvb card // Get adapter and device number to use for this dvb card
u_adapter = config_GetInt( p_input, "adapter" ); u_adapter = config_GetInt( p_input, "adapter" );
...@@ -497,17 +501,22 @@ int SatelliteSetProgram( input_thread_t * p_input, ...@@ -497,17 +501,22 @@ int SatelliteSetProgram( input_thread_t * p_input,
{ {
case MPEG1_VIDEO_ES: case MPEG1_VIDEO_ES:
case MPEG2_VIDEO_ES: case MPEG2_VIDEO_ES:
case MPEG2_MOTO_VIDEO_ES:
if ( input_SelectES( p_input , p_es ) == 0 ) if ( input_SelectES( p_input , p_es ) == 0 )
{ {
ioctl_SetDMXFilter(p_input, p_es->i_id, &p_es->i_demux_fd, 1, u_adapter, u_device); ioctl_SetDMXFilter(p_input, p_es->i_id, &p_es->i_demux_fd, u_video_type,
u_adapter, u_device);
u_video_type += 3;
} }
break; break;
case MPEG1_AUDIO_ES: case MPEG1_AUDIO_ES:
case MPEG2_AUDIO_ES: case MPEG2_AUDIO_ES:
if ( input_SelectES( p_input , p_es ) == 0 ) if ( input_SelectES( p_input , p_es ) == 0 )
{ {
ioctl_SetDMXFilter(p_input, p_es->i_id, &p_es->i_demux_fd, 2, u_adapter, u_device); ioctl_SetDMXFilter(p_input, p_es->i_id, &p_es->i_demux_fd, u_audio_type,
u_adapter, u_device);
input_SelectES( p_input , p_es ); input_SelectES( p_input , p_es );
u_audio_type += 3;
} }
break; break;
default: default:
...@@ -520,6 +529,10 @@ int SatelliteSetProgram( input_thread_t * p_input, ...@@ -520,6 +529,10 @@ int SatelliteSetProgram( input_thread_t * p_input,
p_input->stream.p_selected_program = p_new_prg; p_input->stream.p_selected_program = p_new_prg;
/* Update the navigation variables without triggering a callback */
val.i_int = p_new_prg->i_number;
var_Change( p_input, "program", VLC_VAR_SETVALUE, &val, NULL );
return 0; return 0;
} }
......
...@@ -79,7 +79,7 @@ struct diseqc_cmd_t switch_cmds[] = ...@@ -79,7 +79,7 @@ struct diseqc_cmd_t switch_cmds[] =
{ { { 0xe0, 0x10, 0x38, 0xff, 0x00, 0x00 }, 4 }, 0 } { { { 0xe0, 0x10, 0x38, 0xff, 0x00, 0x00 }, 4 }, 0 }
}; };
static int ioctl_CheckQPSK(input_thread_t * p_input, int front); static int ioctl_CheckFrontend(input_thread_t * p_input, int front);
/***************************************************************************** /*****************************************************************************
* ioctl_FrontendControl : commands the SEC device * ioctl_FrontendControl : commands the SEC device
...@@ -121,9 +121,9 @@ int ioctl_FrontendControl(input_thread_t * p_input, int freq, int pol, int lnb_s ...@@ -121,9 +121,9 @@ int ioctl_FrontendControl(input_thread_t * p_input, int freq, int pol, int lnb_s
voltage = (pol) ? SEC_VOLTAGE_18 : SEC_VOLTAGE_13; voltage = (pol) ? SEC_VOLTAGE_18 : SEC_VOLTAGE_13;
/* In case we have a DiSEqC, set it to the correct address */ /* In case we have a DiSEqC, set it to the correct address */
cmd.msg[0] =0x0; /* framing */ cmd.msg[0] = 0x0; /* framing */
cmd.msg[1] =0x10; /* address */ cmd.msg[1] = 0x10; /* address */
cmd.msg[2] =0x38; /* command */ cmd.msg[2] = 0x38; /* command */
/* command parameters start at index 3 */ /* command parameters start at index 3 */
cmd.msg[3] = 0xF0 | ((diseqc * 4) & 0x0F); cmd.msg[3] = 0xF0 | ((diseqc * 4) & 0x0F);
cmd.msg_len = 4; cmd.msg_len = 4;
...@@ -201,6 +201,7 @@ int ioctl_InfoFrontend(input_thread_t * p_input, struct dvb_frontend_info *info, ...@@ -201,6 +201,7 @@ int ioctl_InfoFrontend(input_thread_t * p_input, struct dvb_frontend_info *info,
# endif # endif
return -1; return -1;
} }
/* Print out frontend capabilities. */
msg_Dbg(p_input, "Frontend Info:\tname = %s\n\t\tfrequency_min = %d\n\t\tfrequency_max = %d\n\t\tfrequency_stepsize = %d\n\t\tfrequency_tolerance = %d\n\t\tsymbol_rate_min = %d\n\t\tsymbol_rate_max = %d\n\t\tsymbol_rate_tolerance (ppm) = %d\n\t\tnotifier_delay (ms)= %d\n", msg_Dbg(p_input, "Frontend Info:\tname = %s\n\t\tfrequency_min = %d\n\t\tfrequency_max = %d\n\t\tfrequency_stepsize = %d\n\t\tfrequency_tolerance = %d\n\t\tsymbol_rate_min = %d\n\t\tsymbol_rate_max = %d\n\t\tsymbol_rate_tolerance (ppm) = %d\n\t\tnotifier_delay (ms)= %d\n",
info->name, info->name,
info->frequency_min, info->frequency_min,
...@@ -211,6 +212,56 @@ int ioctl_InfoFrontend(input_thread_t * p_input, struct dvb_frontend_info *info, ...@@ -211,6 +212,56 @@ int ioctl_InfoFrontend(input_thread_t * p_input, struct dvb_frontend_info *info,
info->symbol_rate_max, info->symbol_rate_max,
info->symbol_rate_tolerance, info->symbol_rate_tolerance,
info->notifier_delay ); info->notifier_delay );
msg_Dbg(p_input, "Frontend Info capability list:");
if (info->caps&FE_IS_STUPID)
msg_Dbg(p_input, "no capabilities - frontend is stupid!");
if (info->caps&FE_CAN_INVERSION_AUTO)
msg_Dbg(p_input, "inversion auto");
if (info->caps&FE_CAN_FEC_1_2)
msg_Dbg(p_input, "forward error correction 1/2");
if (info->caps&FE_CAN_FEC_2_3)
msg_Dbg(p_input, "forward error correction 2/3");
if (info->caps&FE_CAN_FEC_3_4)
msg_Dbg(p_input, "forward error correction 3/4");
if (info->caps&FE_CAN_FEC_4_5)
msg_Dbg(p_input, "forward error correction 4/5");
if (info->caps&FE_CAN_FEC_5_6)
msg_Dbg(p_input, "forward error correction 5/6");
if (info->caps&FE_CAN_FEC_6_7)
msg_Dbg(p_input, "forward error correction 6/7");
if (info->caps&FE_CAN_FEC_7_8)
msg_Dbg(p_input, "forward error correction 7/8");
if (info->caps&FE_CAN_FEC_8_9)
msg_Dbg(p_input, "forward error correction 8/9");
if (info->caps&FE_CAN_FEC_AUTO)
msg_Dbg(p_input, "forward error correction auto");
if (info->caps&FE_CAN_QPSK)
msg_Dbg(p_input, "card can do QPSK");
if (info->caps&FE_CAN_QAM_16)
msg_Dbg(p_input, "card can do QAM 16");
if (info->caps&FE_CAN_QAM_32)
msg_Dbg(p_input, "card can do QAM 32");
if (info->caps&FE_CAN_QAM_64)
msg_Dbg(p_input, "card can do QAM 64");
if (info->caps&FE_CAN_QAM_128)
msg_Dbg(p_input, "card can do QAM 128");
if (info->caps&FE_CAN_QAM_256)
msg_Dbg(p_input, "card can do QAM 256");
if (info->caps&FE_CAN_QAM_AUTO)
msg_Dbg(p_input, "card can do QAM auto");
if (info->caps&FE_CAN_TRANSMISSION_MODE_AUTO)
msg_Dbg(p_input, "transmission mode auto");
if (info->caps&FE_CAN_BANDWIDTH_AUTO)
msg_Dbg(p_input, "bandwidth mode auto");
if (info->caps&FE_CAN_GUARD_INTERVAL_AUTO)
msg_Dbg(p_input, "guard interval mode auto");
if (info->caps&FE_CAN_HIERARCHY_AUTO)
msg_Dbg(p_input, "hierarchy mode auto");
if (info->caps&FE_CAN_MUTE_TS)
msg_Dbg(p_input, "card can mute TS");
if (info->caps&FE_CAN_CLEAN_SETUP)
msg_Dbg(p_input, "clean setup");
msg_Dbg(p_input,"End of capability list");
close(front); close(front);
return 0; return 0;
...@@ -243,7 +294,7 @@ int ioctl_DiseqcSendMsg (input_thread_t *p_input, int fd, fe_sec_voltage_t v, st ...@@ -243,7 +294,7 @@ int ioctl_DiseqcSendMsg (input_thread_t *p_input, int fd, fe_sec_voltage_t v, st
msleep(15); msleep(15);
while (*cmd) while (*cmd)
{ {
msg_Dbg(p_input, "msg: %02x %02x %02x %02x %02x %02x", msg_Dbg(p_input, "DiseqcSendMsg(): %02x %02x %02x %02x %02x %02x",
(*cmd)->cmd.msg[0], (*cmd)->cmd.msg[1], (*cmd)->cmd.msg[0], (*cmd)->cmd.msg[1],
(*cmd)->cmd.msg[2], (*cmd)->cmd.msg[3], (*cmd)->cmd.msg[2], (*cmd)->cmd.msg[3],
(*cmd)->cmd.msg[4], (*cmd)->cmd.msg[5]); (*cmd)->cmd.msg[4], (*cmd)->cmd.msg[5]);
...@@ -287,7 +338,8 @@ int ioctl_DiseqcSendMsg (input_thread_t *p_input, int fd, fe_sec_voltage_t v, st ...@@ -287,7 +338,8 @@ int ioctl_DiseqcSendMsg (input_thread_t *p_input, int fd, fe_sec_voltage_t v, st
return err; return err;
} }
int ioctl_SetupSwitch (input_thread_t *p_input, int frontend_fd, int switch_pos, int voltage_18, int hiband) int ioctl_SetupSwitch (input_thread_t *p_input, int frontend_fd, int switch_pos,
int voltage_18, int hiband)
{ {
int ret; int ret;
struct diseqc_cmd_t *cmd[2] = { NULL, NULL }; struct diseqc_cmd_t *cmd[2] = { NULL, NULL };
...@@ -320,9 +372,9 @@ int ioctl_SetupSwitch (input_thread_t *p_input, int frontend_fd, int switch_pos, ...@@ -320,9 +372,9 @@ int ioctl_SetupSwitch (input_thread_t *p_input, int frontend_fd, int switch_pos,
#define LOF_LO 9750000 #define LOF_LO 9750000
/***************************************************************************** /*****************************************************************************
* ioctl_SetQPSKFrontend : controls the FE device * ioctl_SetFrontend : controls the FE device
*****************************************************************************/ *****************************************************************************/
int ioctl_SetQPSKFrontend (input_thread_t * p_input, struct dvb_frontend_parameters fep, int ioctl_SetFrontend (input_thread_t * p_input, struct dvb_frontend_parameters fep,
int b_polarisation, unsigned int u_adapter, unsigned int u_device ) int b_polarisation, unsigned int u_adapter, unsigned int u_device )
{ {
int front; int front;
...@@ -335,7 +387,7 @@ int ioctl_SetQPSKFrontend (input_thread_t * p_input, struct dvb_frontend_paramet ...@@ -335,7 +387,7 @@ int ioctl_SetQPSKFrontend (input_thread_t * p_input, struct dvb_frontend_paramet
i_len = sizeof(FRONTEND); i_len = sizeof(FRONTEND);
if (snprintf(frontend, sizeof(FRONTEND), FRONTEND, u_adapter, u_device) >= i_len) if (snprintf(frontend, sizeof(FRONTEND), FRONTEND, u_adapter, u_device) >= i_len)
{ {
msg_Err(p_input, "error: snprintf() truncated string for FRONTEND" ); msg_Err(p_input, "ioctl_SetFrontEnd snprintf() truncated string for FRONTEND" );
frontend[sizeof(FRONTEND)] = '\0'; frontend[sizeof(FRONTEND)] = '\0';
} }
...@@ -370,9 +422,9 @@ int ioctl_SetQPSKFrontend (input_thread_t * p_input, struct dvb_frontend_paramet ...@@ -370,9 +422,9 @@ int ioctl_SetQPSKFrontend (input_thread_t * p_input, struct dvb_frontend_paramet
{ {
close(front); close(front);
# ifdef HAVE_ERRNO_H # ifdef HAVE_ERRNO_H
msg_Err(p_input, "ioctl_SetQPSKFrontend: ioctl FE_SET_FRONTEND failed (%d) %s", ret, strerror(errno)); msg_Err(p_input, "ioctl_SetFrontend: ioctl FE_SET_FRONTEND failed (%d) %s", ret, strerror(errno));
# else # else
msg_Err(p_input, "ioctl_SetQPSKFrontend: ioctl FE_SET_FRONTEND failed (%d)", ret); msg_Err(p_input, "ioctl_SetFrontend: ioctl FE_SET_FRONTEND failed (%d)", ret);
# endif # endif
return -1; return -1;
} }
...@@ -391,13 +443,13 @@ int ioctl_SetQPSKFrontend (input_thread_t * p_input, struct dvb_frontend_paramet ...@@ -391,13 +443,13 @@ int ioctl_SetQPSKFrontend (input_thread_t * p_input, struct dvb_frontend_paramet
if (s & FE_HAS_LOCK) if (s & FE_HAS_LOCK)
{ {
msg_Dbg(p_input, "ioctl_SetQPSKFrontend: tuning status == 0x%02x!!! ..." msg_Dbg(p_input, "ioctl_SetFrontend: tuning status == 0x%02x!!! ..."
"tuning succeeded", s); "tuning succeeded", s);
ret = 0; ret = 0;
} }
else else
{ {
msg_Dbg(p_input, "ioctl_SetQPSKFrontend: tuning status == 0x%02x!!! ..." msg_Dbg(p_input, "ioctl_SetFrontend: tuning status == 0x%02x!!! ..."
"tuning failed", s); "tuning failed", s);
ret = -1; ret = -1;
} }
...@@ -412,12 +464,12 @@ int ioctl_SetQPSKFrontend (input_thread_t * p_input, struct dvb_frontend_paramet ...@@ -412,12 +464,12 @@ int ioctl_SetQPSKFrontend (input_thread_t * p_input, struct dvb_frontend_paramet
/****************************************************************** /******************************************************************
* Check completion of the frontend control sequence * Check completion of the frontend control sequence
******************************************************************/ ******************************************************************/
static int ioctl_CheckQPSK(input_thread_t * p_input, int front) static int ioctl_CheckFrontend(input_thread_t * p_input, int front)
{ {
int ret; int ret;
struct pollfd pfd[1]; struct pollfd pfd[1];
struct dvb_frontend_event event; struct dvb_frontend_event event;
/* poll for QPSK event to check if tuning worked */ /* poll for frontend event to check if tuning worked */
pfd[0].fd = front; pfd[0].fd = front;
pfd[0].events = POLLIN; pfd[0].events = POLLIN;
...@@ -428,9 +480,9 @@ static int ioctl_CheckQPSK(input_thread_t * p_input, int front) ...@@ -428,9 +480,9 @@ static int ioctl_CheckQPSK(input_thread_t * p_input, int front)
if ( (ret=ioctl(front, FE_GET_EVENT, &event)) < 0) if ( (ret=ioctl(front, FE_GET_EVENT, &event)) < 0)
{ {
# ifdef HAVE_ERRNO_H # ifdef HAVE_ERRNO_H
msg_Err(p_input, "ioctl_CheckQPSK: ioctl FE_GET_EVENT failed (%d) %s", ret, strerror(errno)); msg_Err(p_input, "ioctl_CheckFrontend: ioctl FE_GET_EVENT failed (%d) %s", ret, strerror(errno));
# else # else
msg_Err(p_input, "ioctl_CheckQPSK: ioctl FE_GET_EVENT failed (%d)", ret); msg_Err(p_input, "ioctl_CheckFrontend: ioctl FE_GET_EVENT failed (%d)", ret);
# endif # endif
return -5; return -5;
} }
...@@ -438,43 +490,43 @@ static int ioctl_CheckQPSK(input_thread_t * p_input, int front) ...@@ -438,43 +490,43 @@ static int ioctl_CheckQPSK(input_thread_t * p_input, int front)
switch(event.status) switch(event.status)
{ {
case FE_HAS_SIGNAL: /* found something above the noise level */ case FE_HAS_SIGNAL: /* found something above the noise level */
msg_Dbg(p_input, "ioctl_CheckQPSK: FE_HAS_SIGNAL"); msg_Dbg(p_input, "ioctl_CheckFrontend: FE_HAS_SIGNAL");
break; break;
case FE_HAS_CARRIER: /* found a DVB signal */ case FE_HAS_CARRIER: /* found a DVB signal */
msg_Dbg(p_input, "ioctl_CheckQPSK: FE_HAS_CARRIER"); msg_Dbg(p_input, "ioctl_CheckFrontend: FE_HAS_CARRIER");
break; break;
case FE_HAS_VITERBI: /* FEC is stable */ case FE_HAS_VITERBI: /* FEC is stable */
msg_Dbg(p_input, "ioctl_CheckQPSK: FE_HAS_VITERBI"); msg_Dbg(p_input, "ioctl_CheckFrontend: FE_HAS_VITERBI");
break; break;
case FE_HAS_SYNC: /* found sync bytes */ case FE_HAS_SYNC: /* found sync bytes */
msg_Dbg(p_input, "ioctl_CheckQPSK: FE_HAS_SYNC"); msg_Dbg(p_input, "ioctl_CheckFrontend: FE_HAS_SYNC");
break; break;
case FE_HAS_LOCK: /* everything's working... */ case FE_HAS_LOCK: /* everything's working... */
msg_Dbg(p_input, "ioctl_CheckQPSK: FE_HAS_LOCK"); msg_Dbg(p_input, "ioctl_CheckFrontend: FE_HAS_LOCK");
break; break;
case FE_TIMEDOUT: /* no lock within the last ~2 seconds */ case FE_TIMEDOUT: /* no lock within the last ~2 seconds */
msg_Dbg(p_input, "ioctl_CheckQPSK: FE_TIMEDOUT"); msg_Dbg(p_input, "ioctl_CheckFrontend: FE_TIMEDOUT");
return -2; return -2;
case FE_REINIT: /* frontend was reinitialized, */ case FE_REINIT: /* frontend was reinitialized, */
/* application is recommned to reset */ /* application is recommned to reset */
/* DiSEqC, tone and parameters */ /* DiSEqC, tone and parameters */
msg_Dbg(p_input, "ioctl_CheckQPSK: FE_REINIT"); msg_Dbg(p_input, "ioctl_CheckFrontend: FE_REINIT");
return -1; return -1;
} }
} }
else else
{ {
/* should come here */ /* should come here */
msg_Err(p_input, "ioctl_CheckQPSK: event() failed"); msg_Err(p_input, "ioctl_CheckFrontend: event() failed");
return -3; return -3;
} }
} }
else else
{ {
# ifdef HAVE_ERRNO_H # ifdef HAVE_ERRNO_H
msg_Err(p_input, "ioctl_CheckQPSK: poll() failed (%s)", strerror(errno)); msg_Err(p_input, "ioctl_CheckFrontend: poll() failed (%s)", strerror(errno));
# else # else
msg_Err(p_input, "ioctl_CheckQPSK: poll() failed"); msg_Err(p_input, "ioctl_CheckFrontend: poll() failed");
# endif # endif
return -4; return -4;
} }
...@@ -505,9 +557,9 @@ int ioctl_SetDMXFilter(input_thread_t * p_input, int i_pid, int * pi_fd , int i_ ...@@ -505,9 +557,9 @@ int ioctl_SetDMXFilter(input_thread_t * p_input, int i_pid, int * pi_fd , int i_
if ((*pi_fd = open(dmx, O_RDWR|O_NONBLOCK)) < 0) if ((*pi_fd = open(dmx, O_RDWR|O_NONBLOCK)) < 0)
{ {
# ifdef HAVE_ERRNO_H # ifdef HAVE_ERRNO_H
msg_Err(p_input, "ioctl_SetDMXFIlter: opening device failed (%s)", strerror(errno)); msg_Err(p_input, "ioctl_SetDMXFilter: opening device failed (%s)", strerror(errno));
# else # else
msg_Err(p_input, "ioctl_SetDMXFIlter: opening device failed"); msg_Err(p_input, "ioctl_SetDMXFilter: opening device failed");
# endif # endif
return -1; return -1;
} }
...@@ -519,17 +571,43 @@ int ioctl_SetDMXFilter(input_thread_t * p_input, int i_pid, int * pi_fd , int i_ ...@@ -519,17 +571,43 @@ int ioctl_SetDMXFilter(input_thread_t * p_input, int i_pid, int * pi_fd , int i_
switch ( i_type ) switch ( i_type )
{ {
case 1: case 1:
msg_Dbg(p_input, "ioctl_SetDMXFIlter: DMX_PES_VIDEO for PMT %d", i_pid); msg_Dbg(p_input, "ioctl_SetDMXFilter: DMX_PES_VIDEO for PMT %d", i_pid);
s_filter_params.pes_type = DMX_PES_VIDEO; s_filter_params.pes_type = DMX_PES_VIDEO;
break; break;
case 2: case 2:
msg_Dbg(p_input, "ioctl_SetDMXFIlter: DMX_PES_AUDIO for PMT %d", i_pid); msg_Dbg(p_input, "ioctl_SetDMXFilter: DMX_PES_AUDIO for PMT %d", i_pid);
s_filter_params.pes_type = DMX_PES_AUDIO; s_filter_params.pes_type = DMX_PES_AUDIO;
break; break;
case 3: case 3:
msg_Dbg(p_input, "ioctl_SetDMXFIlter: DMX_PES_OTHER for PMT %d", i_pid); msg_Dbg(p_input, "ioctl_SetDMXFilter: DMX_PES_OTHER for PMT %d", i_pid);
s_filter_params.pes_type = DMX_PES_OTHER; s_filter_params.pes_type = DMX_PES_OTHER;
break; break;
case 4:
msg_Dbg(p_input, "ioctl_SetDMXFilter: DMX_PES_VIDEO1 for PMT %d", i_pid);
s_filter_params.pes_type = DMX_PES_VIDEO1;
break;
case 5:
msg_Dbg(p_input, "ioctl_SetDMXFilter: DMX_PES_AUDIO1 for PMT %d", i_pid);
s_filter_params.pes_type = DMX_PES_AUDIO1;
break;
case 7:
msg_Dbg(p_input, "ioctl_SetDMXFilter: DMX_PES_VIDEO2 for PMT %d", i_pid);
s_filter_params.pes_type = DMX_PES_VIDEO2;
break;
case 8:
msg_Dbg(p_input, "ioctl_SetDMXFilter: DMX_PES_AUDIO2 for PMT %d", i_pid);
s_filter_params.pes_type = DMX_PES_AUDIO2;
break;
case 10:
msg_Dbg(p_input, "ioctl_SetDMXFilter: DMX_PES_VIDEO3 for PMT %d", i_pid);
s_filter_params.pes_type = DMX_PES_VIDEO3;
break;
case 11:
msg_Dbg(p_input, "ioctl_SetDMXFilter: DMX_PES_AUDIO3 for PMT %d", i_pid);
s_filter_params.pes_type = DMX_PES_AUDIO3;
break;
default: default:
msg_Err(p_input, "trying to set PMT id to=%d for unknown type %d", i_pid, i_type ); msg_Err(p_input, "trying to set PMT id to=%d for unknown type %d", i_pid, i_type );
break; break;
...@@ -540,9 +618,9 @@ int ioctl_SetDMXFilter(input_thread_t * p_input, int i_pid, int * pi_fd , int i_ ...@@ -540,9 +618,9 @@ int ioctl_SetDMXFilter(input_thread_t * p_input, int i_pid, int * pi_fd , int i_
if ((result = ioctl(*pi_fd, DMX_SET_PES_FILTER, &s_filter_params)) < 0) if ((result = ioctl(*pi_fd, DMX_SET_PES_FILTER, &s_filter_params)) < 0)
{ {
# ifdef HAVE_ERRNO_H # ifdef HAVE_ERRNO_H
msg_Err(p_input, "ioctl_SetDMXFIlter: ioctl failed with %d (%s)",result, strerror(errno)); msg_Err(p_input, "ioctl_SetDMXFilter: ioctl failed with %d (%s)",result, strerror(errno));
# else # else
msg_Err(p_input, "ioctl_SetDMXFIlter: ioctl failed with %d",result); msg_Err(p_input, "ioctl_SetDMXFilter: ioctl failed with %d",result);
# endif # endif
return -1; return -1;
} }
...@@ -568,3 +646,214 @@ int ioctl_UnsetDMXFilter(input_thread_t * p_input, int demux) ...@@ -568,3 +646,214 @@ int ioctl_UnsetDMXFilter(input_thread_t * p_input, int demux)
close(demux); close(demux);
return 0; return 0;
} }
/*****************************************************************************
* dvb_DecodeBandwidth : decodes arguments for DVB S/C/T card
*****************************************************************************/
fe_bandwidth_t dvb_DecodeBandwidth(input_thread_t * p_input, int bandwidth)
{
fe_bandwidth_t fe_bandwidth = 0;
switch (bandwidth)
{
case 0:
fe_bandwidth = BANDWIDTH_AUTO;
break;
case 6:
fe_bandwidth = BANDWIDTH_6_MHZ;
break;
case 7:
fe_bandwidth = BANDWIDTH_7_MHZ;
break;
case 8:
fe_bandwidth = BANDWIDTH_8_MHZ;
break;
default:
msg_Dbg( p_input, "terrestrial dvb has bandwidth not set, using auto");
fe_bandwidth = BANDWIDTH_AUTO;
break;
}
return fe_bandwidth;
}
fe_code_rate_t dvb_DecodeFEC(input_thread_t * p_input, int fec)
{
fe_code_rate_t fe_fec = FEC_NONE;
switch( fec )
{
case 1:
fe_fec = FEC_1_2;
break;
case 2:
fe_fec = FEC_2_3;
break;
case 3:
fe_fec = FEC_3_4;
break;
case 4:
fe_fec = FEC_4_5;
break;
case 5:
fe_fec = FEC_5_6;
break;
case 6:
fe_fec = FEC_6_7;
break;
case 7:
fe_fec = FEC_7_8;
break;
case 8:
fe_fec = FEC_8_9;
break;
case 9:
fe_fec = FEC_AUTO;
break;
default:
/* cannot happen */
fe_fec = FEC_NONE;
msg_Err( p_input, "argument has invalid FEC (%d)", fec);
break;
}
return fe_fec;
}
fe_modulation_t dvb_DecodeModulation(input_thread_t * p_input, int modulation)
{
fe_modulation_t fe_modulation = 0;
switch( modulation )
{
case -1:
fe_modulation = QPSK;
break;
case 0:
fe_modulation = QAM_AUTO;
break;
case 16:
fe_modulation = QAM_16;
break;
case 32:
fe_modulation = QAM_32;
break;
case 64:
fe_modulation = QAM_64;
break;
case 128:
fe_modulation = QAM_128;
break;
case 256:
fe_modulation = QAM_256;
break;
default:
msg_Dbg( p_input, "terrestrial/cable dvb has constellation/modulation not set, using auto");
fe_modulation = QAM_AUTO;
break;
}
return fe_modulation;
}
fe_transmit_mode_t dvb_DecodeTransmission(input_thread_t * p_input, int transmission)
{
fe_transmit_mode_t fe_transmission = 0;
switch( transmission )
{
case 0:
fe_transmission = TRANSMISSION_MODE_AUTO;
break;
case 2:
fe_transmission = TRANSMISSION_MODE_2K;
break;
case 8:
fe_transmission = TRANSMISSION_MODE_8K;
break;
default:
msg_Dbg( p_input, "terrestrial dvb has transmission mode not set, using auto");
fe_transmission = TRANSMISSION_MODE_AUTO;
break;
}
return fe_transmission;
}
fe_guard_interval_t dvb_DecodeGuardInterval(input_thread_t * p_input, int guard)
{
fe_guard_interval_t fe_guard = 0;
switch( guard )
{
case 0:
fe_guard = GUARD_INTERVAL_AUTO;
break;
case 4:
fe_guard = GUARD_INTERVAL_1_4;
break;
case 8:
fe_guard = GUARD_INTERVAL_1_8;
break;
case 16:
fe_guard = GUARD_INTERVAL_1_16;
break;
case 32:
fe_guard = GUARD_INTERVAL_1_32;
break;
default:
msg_Dbg( p_input, "terrestrial dvb has guard interval not set, using auto");
fe_guard = GUARD_INTERVAL_AUTO;
break;
}
return fe_guard;
}
fe_hierarchy_t dvb_DecodeHierarchy(input_thread_t * p_input, int hierarchy)
{
fe_hierarchy_t fe_hierarchy = 0;
switch (hierarchy)
{
case -1:
fe_hierarchy = HIERARCHY_NONE;
break;
case 0:
fe_hierarchy = HIERARCHY_AUTO;
break;
case 1:
fe_hierarchy = HIERARCHY_1;
break;
case 2:
fe_hierarchy = HIERARCHY_2;
break;
case 4:
fe_hierarchy = HIERARCHY_4;
break;
default:
msg_Dbg( p_input, "terrestrial dvb has hierarchy not set, using auto");
fe_hierarchy = HIERARCHY_AUTO;
break;
}
return fe_hierarchy;
}
fe_spectral_inversion_t dvb_DecodeInversion(input_thread_t * p_input, int inversion)
{
fe_spectral_inversion_t fe_inversion=0;
switch (inversion)
{
case 0:
fe_inversion = INVERSION_OFF;
break;
case 1:
fe_inversion = INVERSION_ON;
break;
case 2:
fe_inversion = INVERSION_AUTO;
break;
default:
msg_Dbg( p_input, "dvb has inversion/polarisation not set, using auto");
fe_inversion = INVERSION_AUTO;
break;
}
return fe_inversion;
}
...@@ -34,8 +34,18 @@ ...@@ -34,8 +34,18 @@
* Prototypes * Prototypes
*****************************************************************************/ *****************************************************************************/
int ioctl_FrontendControl(input_thread_t *p_input, int freq, int pol, int lnb_slof, int diseqc, unsigned int u_adapter, unsigned int u_device ); int ioctl_FrontendControl(input_thread_t *p_input, int freq, int pol, int lnb_slof, int diseqc, unsigned int u_adapter, unsigned int u_device );
int ioctl_SetQPSKFrontend (input_thread_t * p_input, struct dvb_frontend_parameters fep, int b_polarisation, unsigned int u_adapter, unsigned int u_device ); int ioctl_SetFrontend (input_thread_t * p_input, struct dvb_frontend_parameters fep, int b_polarisation, unsigned int u_adapter, unsigned int u_device );
int ioctl_SetDMXFilter(input_thread_t * p_input, int i_pid, int *pi_fd, int i_type, unsigned int u_adapter, unsigned int u_device ); int ioctl_SetDMXFilter(input_thread_t * p_input, int i_pid, int *pi_fd, int i_type, unsigned int u_adapter, unsigned int u_device );
int ioctl_UnsetDMXFilter(input_thread_t * p_input, int ); int ioctl_UnsetDMXFilter(input_thread_t * p_input, int );
int ioctl_InfoFrontend(input_thread_t * p_input, struct dvb_frontend_info *info, unsigned int u_adapter, unsigned int u_device ); int ioctl_InfoFrontend(input_thread_t * p_input, struct dvb_frontend_info *info, unsigned int u_adapter, unsigned int u_device );
/*****************************************************************************
* dvb argument helper functions
*****************************************************************************/
fe_bandwidth_t dvb_DecodeBandwidth(input_thread_t * p_input, int bandwidth);
fe_code_rate_t dvb_DecodeFEC(input_thread_t * p_input, int fec);
fe_modulation_t dvb_DecodeModulation(input_thread_t * p_input, int modulation);
fe_transmit_mode_t dvb_DecodeTransmission(input_thread_t * p_input, int transmission);
fe_guard_interval_t dvb_DecodeGuardInterval(input_thread_t * p_input, int guard);
fe_hierarchy_t dvb_DecodeHierarchy(input_thread_t * p_input, int hierarchy);
fe_spectral_inversion_t dvb_DecodeInversion(input_thread_t * p_input, int inversion);
...@@ -40,8 +40,9 @@ void E_(Close) ( vlc_object_t * ); ...@@ -40,8 +40,9 @@ void E_(Close) ( vlc_object_t * );
* Module descriptor * Module descriptor
*****************************************************************************/ *****************************************************************************/
/* Satellite options */
#define ADAPTER_TEXT N_("adapter card to tune") #define ADAPTER_TEXT N_("adapter card to tune")
#define ADAPTER_LONGTEXT "" #define ADAPTER_LONGTEXT N_("adapter cards have a device file named /dev/dvb/adapter[n] with n>=0")
#define DEVICE_TEXT N_("device nummer to use on adapter") #define DEVICE_TEXT N_("device nummer to use on adapter")
#define DEVICE_LONGTEXT "" #define DEVICE_LONGTEXT ""
...@@ -53,7 +54,7 @@ void E_(Close) ( vlc_object_t * ); ...@@ -53,7 +54,7 @@ void E_(Close) ( vlc_object_t * );
#define POL_LONGTEXT "" #define POL_LONGTEXT ""
#define FEC_TEXT N_("satellite default transponder FEC") #define FEC_TEXT N_("satellite default transponder FEC")
#define FEC_LONGTEXT "" #define FEC_LONGTEXT N_("FEC=Forward Error Correction mode")
#define SRATE_TEXT N_("satellite default transponder symbol rate") #define SRATE_TEXT N_("satellite default transponder symbol rate")
#define SRATE_LONGTEXT "" #define SRATE_LONGTEXT ""
...@@ -73,6 +74,29 @@ void E_(Close) ( vlc_object_t * ); ...@@ -73,6 +74,29 @@ void E_(Close) ( vlc_object_t * );
#define PROBE_TEXT N_("probe the dvb card for capabilities (default disabled)") #define PROBE_TEXT N_("probe the dvb card for capabilities (default disabled)")
#define PROBE_LONGTEXT N_("some dvb cards do not like to be probed for their capabilities") #define PROBE_LONGTEXT N_("some dvb cards do not like to be probed for their capabilities")
/* Cable */
#define MODULATION_TEXT N_("modulation type")
#define MODULATION_LONGTEXT N_("modulation type for frontend device ")
/* Terrestrial */
#define CODE_RATE_HP_TEXT N_("terrestrial high priority stream code rate (FEC)")
#define CODE_RATE_HP_LONGTEXT ""
#define CODE_RATE_LP_TEXT N_("terrestrial low priority stream code rate (FEC)")
#define CODE_RATE_LP_LONGTEXT ""
#define BANDWIDTH_TEXT N_("terrestrial bandwidth")
#define BANDWIDTH_LONGTEXT N_("terrestrial bandwidth [0=auto,6,7,8 in MHz]")
#define GUARD_TEXT N_("terrestrial guard interval")
#define GUARD_LONGTEXT ""
#define TRANSMISSION_TEXT N_("terrestrial transmission mode")
#define TRANSMISSION_LONGTEXT ""
#define HIERARCHY_TEXT N_("terrestrial hierarchy mode")
#define HIERARCHY_LONGTEXT ""
vlc_module_begin(); vlc_module_begin();
add_category_hint( N_("Input"), NULL, VLC_FALSE ); add_category_hint( N_("Input"), NULL, VLC_FALSE );
add_integer( "adapter", 1, NULL, ADAPTER_TEXT, ADAPTER_LONGTEXT, VLC_FALSE ); add_integer( "adapter", 1, NULL, ADAPTER_TEXT, ADAPTER_LONGTEXT, VLC_FALSE );
...@@ -89,12 +113,20 @@ vlc_module_begin(); ...@@ -89,12 +113,20 @@ vlc_module_begin();
add_integer( "lnb-slof", 11700, NULL, add_integer( "lnb-slof", 11700, NULL,
LNB_SLOF_TEXT, LNB_SLOF_LONGTEXT, VLC_FALSE ); LNB_SLOF_TEXT, LNB_SLOF_LONGTEXT, VLC_FALSE );
add_bool( "probe", 0, NULL, PROBE_TEXT, PROBE_LONGTEXT, VLC_FALSE ); add_bool( "probe", 0, NULL, PROBE_TEXT, PROBE_LONGTEXT, VLC_FALSE );
add_integer( "code-rate-hp", 9, NULL, CODE_RATE_HP_TEXT, CODE_RATE_HP_LONGTEXT, VLC_FALSE );
add_integer( "code-rate-lp", 9, NULL, CODE_RATE_LP_TEXT, CODE_RATE_LP_LONGTEXT, VLC_FALSE );
add_integer( "bandwidth", 0, NULL, BANDWIDTH_TEXT, BANDWIDTH_LONGTEXT, VLC_FALSE );
add_integer( "modulation", 0, NULL, MODULATION_TEXT, MODULATION_LONGTEXT, VLC_FALSE );
add_integer( "quard", 0, NULL, GUARD_TEXT, GUARD_LONGTEXT, VLC_TRUE );
add_integer( "transmission", 0, NULL, TRANSMISSION_TEXT, TRANSMISSION_LONGTEXT, VLC_TRUE );
add_integer( "hierarchy", 0, NULL, HIERARCHY_TEXT, HIERARCHY_LONGTEXT, VLC_TRUE );
set_description( _("DVB input module with v4l2 support") ); set_description( _("DVB input module with v4l2 support") );
set_capability( "access", 0 ); set_capability( "access", 0 );
add_shortcut( "qpsk" ); add_shortcut( "qpsk" );
// add_shortcut( "cable" ); add_shortcut( "cable" );
// add_shortcut( "terrestrial" ); add_shortcut( "terrestrial" );
add_shortcut( "dvb" ); add_shortcut( "dvb" );
add_shortcut( "satellite" );
set_callbacks( E_(Open), E_(Close) ); set_callbacks( E_(Open), E_(Close) );
vlc_module_end(); vlc_module_end();
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment