2003-03-16 20:13:28 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
dvbstream
|
|
|
|
(C) Dave Chapman <dave@dchapman.com> 2001, 2002.
|
|
|
|
|
2013-07-12 20:11:08 +00:00
|
|
|
Original authors: Nico, probably Arpi
|
|
|
|
|
2013-10-12 23:18:50 +00:00
|
|
|
Some code based on dvbstream, 0.4.3-pre3 (CVS checkout),
|
|
|
|
http://sourceforge.net/projects/dvbtools/
|
2003-03-16 20:13:28 +00:00
|
|
|
|
2006-06-22 13:34:00 +00:00
|
|
|
Modified for use with MPlayer, for details see the changelog at
|
|
|
|
http://svn.mplayerhq.hu/mplayer/trunk/
|
2005-04-16 12:51:09 +00:00
|
|
|
$Id$
|
|
|
|
|
2003-03-16 20:13:28 +00:00
|
|
|
Copyright notice:
|
|
|
|
|
|
|
|
This program 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.
|
|
|
|
|
|
|
|
This program 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 this program; if not, write to the Free Software
|
2007-01-22 08:02:06 +00:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2003-03-16 20:13:28 +00:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
2003-08-11 00:02:46 +00:00
|
|
|
#include "config.h"
|
2003-03-16 20:13:28 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/time.h>
|
2008-08-14 15:54:53 +00:00
|
|
|
#include <poll.h>
|
2003-03-16 20:13:28 +00:00
|
|
|
#include <unistd.h>
|
2003-08-11 00:02:46 +00:00
|
|
|
#include <fcntl.h>
|
2003-03-16 20:13:28 +00:00
|
|
|
#include <errno.h>
|
|
|
|
|
2013-11-30 21:40:51 +00:00
|
|
|
#include <libavutil/avstring.h>
|
|
|
|
|
|
|
|
#include "osdep/io.h"
|
2014-07-01 21:10:38 +00:00
|
|
|
#include "misc/ctype.h"
|
2013-11-30 21:40:51 +00:00
|
|
|
|
2003-03-16 20:13:28 +00:00
|
|
|
#include "stream.h"
|
2014-06-10 19:44:50 +00:00
|
|
|
#include "options/m_config.h"
|
2013-12-17 01:02:25 +00:00
|
|
|
#include "options/m_option.h"
|
2014-06-10 19:44:50 +00:00
|
|
|
#include "options/options.h"
|
2013-12-17 01:02:25 +00:00
|
|
|
#include "options/path.h"
|
2003-03-16 20:13:28 +00:00
|
|
|
|
|
|
|
#include "dvbin.h"
|
2013-12-21 19:36:45 +00:00
|
|
|
#include "dvb_tune.h"
|
2003-03-16 20:13:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
#define MAX_CHANNELS 8
|
2003-08-11 00:02:46 +00:00
|
|
|
#define CHANNEL_LINE_LEN 256
|
|
|
|
#define min(a, b) ((a) <= (b) ? (a) : (b))
|
2003-03-16 20:13:28 +00:00
|
|
|
|
|
|
|
|
2003-08-11 00:02:46 +00:00
|
|
|
//TODO: CAMBIARE list_ptr e da globale a per_priv
|
|
|
|
|
2014-06-10 19:44:50 +00:00
|
|
|
#define OPT_BASE_STRUCT struct dvb_params
|
2003-08-11 00:02:46 +00:00
|
|
|
|
|
|
|
/// URL definition
|
2007-12-02 21:37:08 +00:00
|
|
|
static const m_option_t stream_params[] = {
|
2013-08-02 15:02:34 +00:00
|
|
|
OPT_STRING("prog", cfg_prog, 0),
|
|
|
|
OPT_INTRANGE("card", cfg_card, 0, 1, 4),
|
|
|
|
{0}
|
2003-08-11 00:02:46 +00:00
|
|
|
};
|
|
|
|
|
2014-06-10 19:44:50 +00:00
|
|
|
const struct m_sub_options stream_dvb_conf = {
|
|
|
|
.opts = (const m_option_t[]) {
|
|
|
|
OPT_STRING("prog", cfg_prog, 0),
|
|
|
|
OPT_INTRANGE("card", cfg_card, 0, 1, 4),
|
|
|
|
OPT_INTRANGE("timeout", cfg_timeout, 0, 1, 30),
|
2014-08-06 18:27:32 +00:00
|
|
|
OPT_STRING("file", cfg_file, 0),
|
2014-06-10 19:44:50 +00:00
|
|
|
{0}
|
|
|
|
},
|
|
|
|
.size = sizeof(struct dvb_params),
|
|
|
|
.defaults = &(const struct dvb_params){
|
|
|
|
.cfg_prog = "",
|
|
|
|
.cfg_card = 1,
|
|
|
|
.cfg_timeout = 30,
|
|
|
|
},
|
2003-08-11 00:02:46 +00:00
|
|
|
};
|
|
|
|
|
2014-12-31 00:57:26 +00:00
|
|
|
static void parse_vdr_par_string(const char* vdr_par_str, dvb_channel_t* ptr) {
|
2014-12-31 01:20:14 +00:00
|
|
|
//FIXME: There is more information in this parameter string, especially related
|
|
|
|
// to non-DVB-S reception.
|
2014-12-31 00:57:26 +00:00
|
|
|
if (vdr_par_str[0]) {
|
|
|
|
const char* vdr_par = &vdr_par_str[0];
|
|
|
|
while (vdr_par && *vdr_par) {
|
|
|
|
switch (mp_toupper(*vdr_par)) {
|
|
|
|
case 'H':
|
|
|
|
ptr->pol = 'H';
|
|
|
|
vdr_par++;
|
|
|
|
break;
|
|
|
|
case 'V':
|
|
|
|
ptr->pol = 'V';
|
|
|
|
vdr_par++;
|
|
|
|
break;
|
|
|
|
case 'S':
|
|
|
|
vdr_par++;
|
|
|
|
if (*vdr_par == '1') {
|
|
|
|
ptr->is_dvb_s2 = true;
|
|
|
|
} else {
|
|
|
|
ptr->is_dvb_s2 = false;
|
|
|
|
}
|
|
|
|
vdr_par++;
|
|
|
|
break;
|
2014-12-31 01:20:14 +00:00
|
|
|
case 'P':
|
|
|
|
vdr_par++;
|
|
|
|
char *endptr = NULL;
|
|
|
|
errno = 0;
|
|
|
|
int n = strtol(vdr_par, &endptr, 10);
|
|
|
|
if (!errno && endptr != vdr_par) {
|
|
|
|
ptr->stream_id = n;
|
|
|
|
vdr_par = endptr;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'I':
|
|
|
|
vdr_par++;
|
|
|
|
if (*vdr_par == '1') {
|
|
|
|
ptr->inv = INVERSION_ON;
|
|
|
|
} else {
|
|
|
|
ptr->inv = INVERSION_OFF;
|
|
|
|
}
|
|
|
|
vdr_par++;
|
|
|
|
break;
|
2014-12-31 00:57:26 +00:00
|
|
|
default:
|
|
|
|
vdr_par++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-31 02:27:33 +00:00
|
|
|
static char* dvb_strtok_r(char* s, const char* sep, char** p) {
|
|
|
|
if (!s && !(s = *p)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Skip leading separators. */
|
|
|
|
s += strspn(s, sep);
|
|
|
|
|
|
|
|
/* s points at first non-separator, or end of string. */
|
|
|
|
if (!*s) {
|
|
|
|
return (*p = 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Move *p to next separator. */
|
|
|
|
*p = s + strcspn(s, sep);
|
|
|
|
if (**p) {
|
|
|
|
*(*p)++ = 0;
|
|
|
|
} else {
|
|
|
|
*p = 0;
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2014-12-31 02:20:01 +00:00
|
|
|
static bool parse_pid_string(struct mp_log *log, char* pid_string, dvb_channel_t* ptr) {
|
|
|
|
if (pid_string[0]) {
|
|
|
|
int pcnt = 0;
|
2014-12-31 02:27:33 +00:00
|
|
|
/** These tokens also catch vdr-style PID lists.
|
|
|
|
* They can contain 123=deu@3,124=eng+jap@4;125
|
|
|
|
* 3 and 4 are codes for codec type, =langLeft+langRight is allowed,
|
|
|
|
* and ; may separate a dolby channel.
|
|
|
|
* With the numChars-test and the full token-list, all is handled gracefully.
|
|
|
|
*/
|
|
|
|
const char* tokens = "+,;";
|
2014-12-31 02:20:01 +00:00
|
|
|
char* pidPart;
|
2014-12-31 02:27:33 +00:00
|
|
|
char* savePtr;
|
|
|
|
pidPart = dvb_strtok_r(pid_string, tokens, &savePtr);
|
2014-12-31 02:20:01 +00:00
|
|
|
while (pidPart != NULL) {
|
|
|
|
if (ptr->pids_cnt >= DMX_FILTER_SIZE-1) {
|
|
|
|
mp_verbose(log, "Maximum number of PIDs for one channel reached, ignoring further ones!\n");
|
|
|
|
return (pcnt > 0);
|
|
|
|
}
|
|
|
|
int numChars = 0;
|
|
|
|
int pid = 0;
|
|
|
|
pcnt += sscanf(pidPart, "%d%n", &pid, &numChars);
|
|
|
|
if (numChars > 0) {
|
|
|
|
ptr->pids[ptr->pids_cnt] = pid;
|
|
|
|
ptr->pids_cnt++;
|
|
|
|
}
|
2014-12-31 02:27:33 +00:00
|
|
|
pidPart = dvb_strtok_r(NULL, tokens, &savePtr);
|
2014-12-31 02:20:01 +00:00
|
|
|
}
|
|
|
|
if (pcnt > 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-12-21 19:36:45 +00:00
|
|
|
static dvb_channels_list *dvb_get_channels(struct mp_log *log, char *filename, int type)
|
2003-03-16 20:13:28 +00:00
|
|
|
{
|
2014-04-13 16:00:51 +00:00
|
|
|
dvb_channels_list *list;
|
|
|
|
FILE *f;
|
|
|
|
char line[CHANNEL_LINE_LEN], *colon;
|
2003-08-11 00:02:46 +00:00
|
|
|
|
2013-02-08 22:50:21 +00:00
|
|
|
if (!filename)
|
|
|
|
return NULL;
|
|
|
|
|
2014-12-31 02:20:01 +00:00
|
|
|
int fields, cnt, k;
|
2014-04-13 16:00:51 +00:00
|
|
|
int has8192, has0;
|
|
|
|
dvb_channel_t *ptr, *tmp, chn;
|
2014-12-31 01:53:30 +00:00
|
|
|
char tmp_lcr[256], tmp_hier[256], inv[256], bw[256], cr[256], mod[256], transm[256], gi[256], vpid_str[256], apid_str[256], tpid_str[256],
|
2014-12-31 01:42:29 +00:00
|
|
|
vdr_par_str[256], vdr_loc_str[256];
|
2014-04-13 16:00:51 +00:00
|
|
|
const char *cbl_conf = "%d:%255[^:]:%d:%255[^:]:%255[^:]:%255[^:]:%255[^:]\n";
|
|
|
|
const char *sat_conf = "%d:%c:%d:%d:%255[^:]:%255[^:]\n";
|
|
|
|
const char *ter_conf = "%d:%255[^:]:%255[^:]:%255[^:]:%255[^:]:%255[^:]:%255[^:]:%255[^:]:%255[^:]:%255[^:]:%255[^:]\n";
|
|
|
|
const char *atsc_conf = "%d:%255[^:]:%255[^:]:%255[^:]\n";
|
|
|
|
|
2015-01-04 22:22:02 +00:00
|
|
|
const char *vdr_conf = "%d:%255[^:]:%255[^:]:%d:%255[^:]:%255[^:]:%255[^:]:%*255[^:]:%d:%*d:%*d:%*d\n%n";
|
2014-12-31 00:57:26 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
mp_verbose(log, "CONFIG_READ FILE: %s, type: %d\n", filename, type);
|
|
|
|
if((f=fopen(filename, "r"))==NULL)
|
|
|
|
{
|
|
|
|
mp_fatal(log, "CAN'T READ CONFIG FILE %s\n", filename);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
list = malloc(sizeof(dvb_channels_list));
|
|
|
|
if(list == NULL)
|
|
|
|
{
|
|
|
|
fclose(f);
|
|
|
|
mp_verbose(log, "DVB_GET_CHANNELS: couldn't malloc enough memory\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ptr = &chn;
|
|
|
|
list->NUM_CHANNELS = 0;
|
|
|
|
list->channels = NULL;
|
|
|
|
while(! feof(f))
|
|
|
|
{
|
|
|
|
if( fgets(line, CHANNEL_LINE_LEN, f) == NULL )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if((line[0] == '#') || (strlen(line) == 0))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
colon = strchr(line, ':');
|
2014-12-31 00:57:26 +00:00
|
|
|
if (colon) {
|
|
|
|
k = colon - line;
|
|
|
|
if(!k)
|
|
|
|
continue;
|
|
|
|
// In some modern VDR-style configs, channel name also has bouquet after ;.
|
|
|
|
// Parse that off, we ignore it.
|
|
|
|
char* bouquet_sep = strchr(line, ';');
|
|
|
|
int channel_name_length = k;
|
|
|
|
if (bouquet_sep && bouquet_sep < colon) {
|
|
|
|
channel_name_length = bouquet_sep - line;
|
|
|
|
}
|
|
|
|
ptr->name = malloc(channel_name_length+1);
|
|
|
|
if(! ptr->name)
|
|
|
|
continue;
|
|
|
|
av_strlcpy(ptr->name, line, channel_name_length+1);
|
|
|
|
} else {
|
|
|
|
continue;
|
2014-04-13 16:00:51 +00:00
|
|
|
}
|
|
|
|
k++;
|
2014-12-31 01:53:30 +00:00
|
|
|
vpid_str[0] = apid_str[0] = tpid_str[0] = 0;
|
2014-12-31 01:42:29 +00:00
|
|
|
vdr_loc_str[0] = vdr_par_str[0] = 0;
|
2014-04-13 16:00:51 +00:00
|
|
|
ptr->pids_cnt = 0;
|
|
|
|
ptr->freq = 0;
|
2014-12-31 00:57:26 +00:00
|
|
|
ptr->is_dvb_s2 = false;
|
2015-01-04 22:22:02 +00:00
|
|
|
ptr->service_id = -1;
|
2014-12-31 01:20:14 +00:00
|
|
|
ptr->stream_id = NO_STREAM_ID_FILTER;
|
|
|
|
ptr->inv = INVERSION_AUTO;
|
2014-12-31 00:57:26 +00:00
|
|
|
|
|
|
|
// Check if VDR-type channels.conf-line - then full line is consumed by the scan.
|
|
|
|
int num_chars = 0;
|
|
|
|
fields = sscanf(&line[k], vdr_conf,
|
2015-01-04 22:22:02 +00:00
|
|
|
&ptr->freq, vdr_par_str, vdr_loc_str, &ptr->srate, vpid_str, apid_str, tpid_str, &ptr->service_id, &num_chars);
|
2014-12-31 00:57:26 +00:00
|
|
|
|
|
|
|
if (num_chars == strlen(&line[k])) {
|
|
|
|
// It's a VDR-style config line.
|
|
|
|
parse_vdr_par_string(vdr_par_str, ptr);
|
|
|
|
// We still need the special SAT-handling here.
|
|
|
|
if (type != TUNER_TER && type != TUNER_CBL && type != TUNER_ATSC) {
|
|
|
|
ptr->freq *= 1000UL;
|
|
|
|
ptr->srate *= 1000UL;
|
|
|
|
ptr->tone = -1;
|
|
|
|
ptr->inv = INVERSION_AUTO;
|
|
|
|
ptr->cr = FEC_AUTO;
|
2014-12-31 01:42:29 +00:00
|
|
|
|
|
|
|
if (vdr_loc_str[0]) {
|
|
|
|
// In older vdr config format, this field contained the DISEQc information.
|
|
|
|
// If it is numeric, assume that's it.
|
|
|
|
int diseqc_info = 0;
|
|
|
|
int valid_digits = 0;
|
|
|
|
if (sscanf(vdr_loc_str, "%d%n", &diseqc_info, &valid_digits) == 1) {
|
|
|
|
if (valid_digits == strlen(vdr_loc_str)) {
|
|
|
|
ptr->diseqc = diseqc_info;
|
|
|
|
if((ptr->diseqc > 4) || (ptr->diseqc < 0))
|
|
|
|
continue;
|
|
|
|
if(ptr->diseqc > 0)
|
|
|
|
ptr->diseqc--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-04 22:22:02 +00:00
|
|
|
mp_verbose(log, "SAT, NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d, SRATE: %d, POL: %c, DISEQC: %d, S2: %s, StreamID: %d, SID: %d",
|
2014-12-31 01:42:29 +00:00
|
|
|
list->NUM_CHANNELS, fields, ptr->name, ptr->freq, ptr->srate, ptr->pol, ptr->diseqc,
|
2015-01-04 22:22:02 +00:00
|
|
|
ptr->is_dvb_s2 ? "yes" : "no", ptr->stream_id, ptr->service_id);
|
2014-12-31 00:57:26 +00:00
|
|
|
} else {
|
|
|
|
mp_verbose(log, "VDR, NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d, SRATE: %d",
|
|
|
|
list->NUM_CHANNELS, fields, ptr->name, ptr->freq, ptr->srate);
|
|
|
|
}
|
|
|
|
} else if (type == TUNER_TER) {
|
2014-04-13 16:00:51 +00:00
|
|
|
fields = sscanf(&line[k], ter_conf,
|
|
|
|
&ptr->freq, inv, bw, cr, tmp_lcr, mod,
|
|
|
|
transm, gi, tmp_hier, vpid_str, apid_str);
|
|
|
|
mp_verbose(log, "TER, NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d",
|
|
|
|
list->NUM_CHANNELS, fields, ptr->name, ptr->freq);
|
2014-12-31 00:57:26 +00:00
|
|
|
} else if (type == TUNER_CBL) {
|
2014-04-13 16:00:51 +00:00
|
|
|
fields = sscanf(&line[k], cbl_conf,
|
|
|
|
&ptr->freq, inv, &ptr->srate,
|
|
|
|
cr, mod, vpid_str, apid_str);
|
|
|
|
mp_verbose(log, "CBL, NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d, SRATE: %d",
|
|
|
|
list->NUM_CHANNELS, fields, ptr->name, ptr->freq, ptr->srate);
|
|
|
|
}
|
2005-01-06 09:43:10 +00:00
|
|
|
#ifdef DVB_ATSC
|
2014-12-31 00:57:26 +00:00
|
|
|
else if (type == TUNER_ATSC)
|
2014-04-13 16:00:51 +00:00
|
|
|
{
|
|
|
|
fields = sscanf(&line[k], atsc_conf,
|
|
|
|
&ptr->freq, mod, vpid_str, apid_str);
|
|
|
|
mp_verbose(log, "ATSC, NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d\n",
|
|
|
|
list->NUM_CHANNELS, fields, ptr->name, ptr->freq);
|
|
|
|
}
|
2005-01-06 09:43:10 +00:00
|
|
|
#endif
|
2014-04-13 16:00:51 +00:00
|
|
|
else //SATELLITE
|
|
|
|
{
|
|
|
|
fields = sscanf(&line[k], sat_conf,
|
2014-12-31 00:57:26 +00:00
|
|
|
&ptr->freq, &ptr->pol, &ptr->diseqc, &ptr->srate, vpid_str, apid_str);
|
2014-07-01 21:10:38 +00:00
|
|
|
ptr->pol = mp_toupper(ptr->pol);
|
2014-04-13 16:00:51 +00:00
|
|
|
ptr->freq *= 1000UL;
|
|
|
|
ptr->srate *= 1000UL;
|
|
|
|
ptr->tone = -1;
|
|
|
|
ptr->inv = INVERSION_AUTO;
|
|
|
|
ptr->cr = FEC_AUTO;
|
|
|
|
if((ptr->diseqc > 4) || (ptr->diseqc < 0))
|
|
|
|
continue;
|
|
|
|
if(ptr->diseqc > 0)
|
|
|
|
ptr->diseqc--;
|
|
|
|
mp_verbose(log, "SAT, NUM: %d, NUM_FIELDS: %d, NAME: %s, FREQ: %d, SRATE: %d, POL: %c, DISEQC: %d",
|
|
|
|
list->NUM_CHANNELS, fields, ptr->name, ptr->freq, ptr->srate, ptr->pol, ptr->diseqc);
|
|
|
|
}
|
2014-12-31 01:53:30 +00:00
|
|
|
|
2014-12-31 02:20:01 +00:00
|
|
|
if (parse_pid_string(log, vpid_str, ptr)) {
|
|
|
|
fields++;
|
2014-04-13 16:00:51 +00:00
|
|
|
}
|
2014-12-31 02:20:01 +00:00
|
|
|
if (parse_pid_string(log, apid_str, ptr)) {
|
|
|
|
fields++;
|
|
|
|
}
|
2015-01-04 22:22:02 +00:00
|
|
|
/* If we do not know the service_id, PMT can not be extracted.
|
|
|
|
Teletext decoding will fail without PMT. */
|
|
|
|
if (ptr->service_id != -1) {
|
|
|
|
if (parse_pid_string(log, tpid_str, ptr)) {
|
|
|
|
fields++;
|
|
|
|
}
|
2014-12-31 01:53:30 +00:00
|
|
|
}
|
2015-01-04 22:22:02 +00:00
|
|
|
|
2014-12-31 01:53:30 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
if((fields < 2) || (ptr->pids_cnt <= 0) || (ptr->freq == 0) || (strlen(ptr->name) == 0))
|
2014-12-31 01:53:30 +00:00
|
|
|
continue;
|
2014-04-13 16:00:51 +00:00
|
|
|
|
|
|
|
has8192 = has0 = 0;
|
|
|
|
for(cnt = 0; cnt < ptr->pids_cnt; cnt++)
|
|
|
|
{
|
|
|
|
if(ptr->pids[cnt] == 8192)
|
|
|
|
has8192 = 1;
|
|
|
|
if(ptr->pids[cnt] == 0)
|
|
|
|
has0 = 1;
|
|
|
|
}
|
|
|
|
if(has8192)
|
|
|
|
{
|
|
|
|
ptr->pids[0] = 8192;
|
|
|
|
ptr->pids_cnt = 1;
|
|
|
|
}
|
|
|
|
else if(! has0)
|
|
|
|
{
|
|
|
|
ptr->pids[ptr->pids_cnt] = 0; //PID 0 is the PAT
|
|
|
|
ptr->pids_cnt++;
|
|
|
|
}
|
2015-01-04 22:22:02 +00:00
|
|
|
|
2015-01-05 19:27:22 +00:00
|
|
|
/* Add some PIDs which are mandatory in DVB,
|
|
|
|
* and contain human-readable helpful data. */
|
|
|
|
|
|
|
|
/* This is the STD, the service description table.
|
|
|
|
* It contains service names and such, ffmpeg decodes it. */
|
|
|
|
ptr->pids[ptr->pids_cnt] = 0x0011;
|
|
|
|
ptr->pids_cnt++;
|
|
|
|
|
|
|
|
/* This is the EIT, which contains EPG data.
|
|
|
|
* ffmpeg can not decode it (yet), but e.g. VLC
|
|
|
|
* shows what was recorded. */
|
|
|
|
ptr->pids[ptr->pids_cnt] = 0x0012;
|
|
|
|
ptr->pids_cnt++;
|
|
|
|
|
2015-01-04 22:22:02 +00:00
|
|
|
if (ptr->service_id != -1) {
|
|
|
|
/* We have the PMT-PID in addition.
|
|
|
|
This will be found later, when we tune to the channel.
|
|
|
|
Push back here to create the additional demux. */
|
|
|
|
ptr->pids[ptr->pids_cnt] = -1; // Placeholder.
|
|
|
|
ptr->pids_cnt++;
|
|
|
|
}
|
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
mp_verbose(log, " PIDS: ");
|
|
|
|
for(cnt = 0; cnt < ptr->pids_cnt; cnt++)
|
|
|
|
mp_verbose(log, " %d ", ptr->pids[cnt]);
|
|
|
|
mp_verbose(log, "\n");
|
|
|
|
|
|
|
|
if((type == TUNER_TER) || (type == TUNER_CBL))
|
|
|
|
{
|
|
|
|
if(! strcmp(inv, "INVERSION_ON"))
|
|
|
|
ptr->inv = INVERSION_ON;
|
|
|
|
else if(! strcmp(inv, "INVERSION_OFF"))
|
|
|
|
ptr->inv = INVERSION_OFF;
|
|
|
|
else
|
|
|
|
ptr->inv = INVERSION_AUTO;
|
|
|
|
|
|
|
|
|
|
|
|
if(! strcmp(cr, "FEC_1_2"))
|
|
|
|
ptr->cr =FEC_1_2;
|
|
|
|
else if(! strcmp(cr, "FEC_2_3"))
|
|
|
|
ptr->cr =FEC_2_3;
|
|
|
|
else if(! strcmp(cr, "FEC_3_4"))
|
|
|
|
ptr->cr =FEC_3_4;
|
|
|
|
else if(! strcmp(cr, "FEC_4_5"))
|
|
|
|
ptr->cr =FEC_4_5;
|
|
|
|
else if(! strcmp(cr, "FEC_6_7"))
|
|
|
|
ptr->cr =FEC_6_7;
|
|
|
|
else if(! strcmp(cr, "FEC_8_9"))
|
|
|
|
ptr->cr =FEC_8_9;
|
|
|
|
else if(! strcmp(cr, "FEC_5_6"))
|
|
|
|
ptr->cr =FEC_5_6;
|
|
|
|
else if(! strcmp(cr, "FEC_7_8"))
|
|
|
|
ptr->cr =FEC_7_8;
|
|
|
|
else if(! strcmp(cr, "FEC_NONE"))
|
|
|
|
ptr->cr =FEC_NONE;
|
|
|
|
else ptr->cr =FEC_AUTO;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if((type == TUNER_TER) || (type == TUNER_CBL) || (type == TUNER_ATSC))
|
|
|
|
{
|
|
|
|
if(! strcmp(mod, "QAM_128"))
|
|
|
|
ptr->mod = QAM_128;
|
|
|
|
else if(! strcmp(mod, "QAM_256"))
|
|
|
|
ptr->mod = QAM_256;
|
|
|
|
else if(! strcmp(mod, "QAM_64"))
|
|
|
|
ptr->mod = QAM_64;
|
|
|
|
else if(! strcmp(mod, "QAM_32"))
|
|
|
|
ptr->mod = QAM_32;
|
|
|
|
else if(! strcmp(mod, "QAM_16"))
|
|
|
|
ptr->mod = QAM_16;
|
2009-05-13 02:58:57 +00:00
|
|
|
#ifdef DVB_ATSC
|
2014-04-13 16:00:51 +00:00
|
|
|
else if(! strcmp(mod, "VSB_8") || ! strcmp(mod, "8VSB"))
|
|
|
|
ptr->mod = VSB_8;
|
|
|
|
else if(! strcmp(mod, "VSB_16") || !strcmp(mod, "16VSB"))
|
|
|
|
ptr->mod = VSB_16;
|
|
|
|
else if(! strcmp(mod, "QAM_AUTO"))
|
|
|
|
ptr->mod = QAM_AUTO;
|
2003-08-11 00:02:46 +00:00
|
|
|
|
2005-01-06 09:43:10 +00:00
|
|
|
#endif
|
2014-04-13 16:00:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(type == TUNER_TER)
|
|
|
|
{
|
|
|
|
if(! strcmp(bw, "BANDWIDTH_6_MHZ"))
|
|
|
|
ptr->bw = BANDWIDTH_6_MHZ;
|
|
|
|
else if(! strcmp(bw, "BANDWIDTH_7_MHZ"))
|
|
|
|
ptr->bw = BANDWIDTH_7_MHZ;
|
|
|
|
else if(! strcmp(bw, "BANDWIDTH_8_MHZ"))
|
|
|
|
ptr->bw = BANDWIDTH_8_MHZ;
|
|
|
|
|
|
|
|
|
|
|
|
if(! strcmp(transm, "TRANSMISSION_MODE_2K"))
|
|
|
|
ptr->trans = TRANSMISSION_MODE_2K;
|
|
|
|
else if(! strcmp(transm, "TRANSMISSION_MODE_8K"))
|
|
|
|
ptr->trans = TRANSMISSION_MODE_8K;
|
|
|
|
else if(! strcmp(transm, "TRANSMISSION_MODE_AUTO"))
|
|
|
|
ptr->trans = TRANSMISSION_MODE_AUTO;
|
|
|
|
|
|
|
|
if(! strcmp(gi, "GUARD_INTERVAL_1_32"))
|
|
|
|
ptr->gi = GUARD_INTERVAL_1_32;
|
|
|
|
else if(! strcmp(gi, "GUARD_INTERVAL_1_16"))
|
|
|
|
ptr->gi = GUARD_INTERVAL_1_16;
|
|
|
|
else if(! strcmp(gi, "GUARD_INTERVAL_1_8"))
|
|
|
|
ptr->gi = GUARD_INTERVAL_1_8;
|
|
|
|
else if(! strcmp(gi, "GUARD_INTERVAL_1_4"))
|
|
|
|
ptr->gi = GUARD_INTERVAL_1_4;
|
|
|
|
else ptr->gi = GUARD_INTERVAL_AUTO;
|
|
|
|
|
|
|
|
if(! strcmp(tmp_lcr, "FEC_1_2"))
|
|
|
|
ptr->cr_lp =FEC_1_2;
|
|
|
|
else if(! strcmp(tmp_lcr, "FEC_2_3"))
|
|
|
|
ptr->cr_lp =FEC_2_3;
|
|
|
|
else if(! strcmp(tmp_lcr, "FEC_3_4"))
|
|
|
|
ptr->cr_lp =FEC_3_4;
|
|
|
|
else if(! strcmp(tmp_lcr, "FEC_4_5"))
|
|
|
|
ptr->cr_lp =FEC_4_5;
|
|
|
|
else if(! strcmp(tmp_lcr, "FEC_6_7"))
|
|
|
|
ptr->cr_lp =FEC_6_7;
|
|
|
|
else if(! strcmp(tmp_lcr, "FEC_8_9"))
|
|
|
|
ptr->cr_lp =FEC_8_9;
|
|
|
|
else if(! strcmp(tmp_lcr, "FEC_5_6"))
|
|
|
|
ptr->cr_lp =FEC_5_6;
|
|
|
|
else if(! strcmp(tmp_lcr, "FEC_7_8"))
|
|
|
|
ptr->cr_lp =FEC_7_8;
|
|
|
|
else if(! strcmp(tmp_lcr, "FEC_NONE"))
|
|
|
|
ptr->cr_lp =FEC_NONE;
|
|
|
|
else ptr->cr_lp =FEC_AUTO;
|
|
|
|
|
|
|
|
|
|
|
|
if(! strcmp(tmp_hier, "HIERARCHY_1"))
|
|
|
|
ptr->hier = HIERARCHY_1;
|
|
|
|
else if(! strcmp(tmp_hier, "HIERARCHY_2"))
|
|
|
|
ptr->hier = HIERARCHY_2;
|
|
|
|
else if(! strcmp(tmp_hier, "HIERARCHY_4"))
|
|
|
|
ptr->hier = HIERARCHY_4;
|
|
|
|
else if(! strcmp(tmp_hier, "HIERARCHY_AUTO"))
|
|
|
|
ptr->hier = HIERARCHY_AUTO;
|
|
|
|
else ptr->hier = HIERARCHY_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
tmp = realloc(list->channels, sizeof(dvb_channel_t) * (list->NUM_CHANNELS + 1));
|
|
|
|
if(tmp == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
list->channels = tmp;
|
|
|
|
memcpy(&(list->channels[list->NUM_CHANNELS]), ptr, sizeof(dvb_channel_t));
|
|
|
|
list->NUM_CHANNELS++;
|
|
|
|
if(sizeof(dvb_channel_t) * list->NUM_CHANNELS >= 1024*1024)
|
|
|
|
{
|
|
|
|
mp_verbose(log, "dvbin.c, > 1MB allocated for channels struct, dropping the rest of the file\r\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(f);
|
|
|
|
if(list->NUM_CHANNELS == 0)
|
|
|
|
{
|
|
|
|
free(list->channels);
|
|
|
|
free(list);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
list->current = 0;
|
|
|
|
return list;
|
2003-03-16 20:13:28 +00:00
|
|
|
}
|
|
|
|
|
2007-12-15 13:30:44 +00:00
|
|
|
void dvb_free_config(dvb_config_t *config)
|
|
|
|
{
|
2014-04-13 16:00:51 +00:00
|
|
|
int i, j;
|
|
|
|
|
|
|
|
for(i=0; i<config->count; i++)
|
|
|
|
{
|
|
|
|
free(config->cards[i].name);
|
|
|
|
if(!config->cards[i].list)
|
|
|
|
continue;
|
|
|
|
if(config->cards[i].list->channels)
|
|
|
|
{
|
|
|
|
for(j=0; j<config->cards[i].list->NUM_CHANNELS; j++)
|
|
|
|
free(config->cards[i].list->channels[j].name);
|
|
|
|
free(config->cards[i].list->channels);
|
|
|
|
}
|
|
|
|
free(config->cards[i].list);
|
|
|
|
}
|
|
|
|
free(config);
|
2007-12-15 13:30:44 +00:00
|
|
|
}
|
2003-08-11 00:02:46 +00:00
|
|
|
|
|
|
|
static int dvb_streaming_read(stream_t *stream, char *buffer, int size)
|
2003-03-16 20:13:28 +00:00
|
|
|
{
|
2014-04-13 16:00:51 +00:00
|
|
|
struct pollfd pfds[1];
|
|
|
|
int pos=0, tries, rk, fd;
|
|
|
|
dvb_priv_t *priv = (dvb_priv_t *) stream->priv;
|
|
|
|
|
|
|
|
MP_TRACE(stream, "dvb_streaming_read(%d)\n", size);
|
|
|
|
|
|
|
|
tries = priv->retry + 1;
|
|
|
|
|
|
|
|
fd = priv->fd;
|
|
|
|
while(pos < size)
|
|
|
|
{
|
|
|
|
pfds[0].fd = fd;
|
|
|
|
pfds[0].events = POLLIN | POLLPRI;
|
|
|
|
|
|
|
|
rk = size - pos;
|
|
|
|
if(poll(pfds, 1, 500) <= 0)
|
|
|
|
{
|
|
|
|
MP_ERR(stream, "dvb_streaming_read, attempt N. %d failed with errno %d when reading %d bytes\n", tries, errno, size-pos);
|
|
|
|
errno = 0;
|
|
|
|
if(--tries > 0)
|
|
|
|
continue;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if((rk = read(fd, &buffer[pos], rk)) > 0)
|
|
|
|
{
|
|
|
|
pos += rk;
|
|
|
|
MP_TRACE(stream, "ret (%d) bytes\n", pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(! pos)
|
|
|
|
MP_ERR(stream, "dvb_streaming_read, return %d bytes\n", pos);
|
|
|
|
|
|
|
|
return pos;
|
2003-03-16 20:13:28 +00:00
|
|
|
}
|
|
|
|
|
2004-04-26 21:19:21 +00:00
|
|
|
static void dvbin_close(stream_t *stream);
|
2003-03-16 20:13:28 +00:00
|
|
|
|
2007-12-15 13:05:06 +00:00
|
|
|
int dvb_set_channel(stream_t *stream, int card, int n)
|
2003-03-16 20:13:28 +00:00
|
|
|
{
|
2014-04-13 16:00:51 +00:00
|
|
|
dvb_channels_list *new_list;
|
|
|
|
dvb_channel_t *channel;
|
|
|
|
dvb_priv_t *priv = stream->priv;
|
|
|
|
char buf[4096];
|
|
|
|
dvb_config_t *conf = (dvb_config_t *) priv->config;
|
|
|
|
int devno;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if((card < 0) || (card > conf->count))
|
|
|
|
{
|
|
|
|
MP_ERR(stream, "dvb_set_channel: INVALID CARD NUMBER: %d vs %d, abort\n", card, conf->count);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
devno = conf->cards[card].devno;
|
|
|
|
new_list = conf->cards[card].list;
|
|
|
|
if((n > new_list->NUM_CHANNELS) || (n < 0))
|
|
|
|
{
|
|
|
|
MP_ERR(stream, "dvb_set_channel: INVALID CHANNEL NUMBER: %d, for card %d, abort\n", n, card);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
channel = &(new_list->channels[n]);
|
|
|
|
|
|
|
|
if(priv->is_on) //the fds are already open and we have to stop the demuxers
|
|
|
|
{
|
|
|
|
for(i = 0; i < priv->demux_fds_cnt; i++)
|
|
|
|
dvb_demux_stop(priv->demux_fds[i]);
|
|
|
|
|
|
|
|
priv->retry = 0;
|
|
|
|
while(dvb_streaming_read(stream, buf, 4096) > 0); //empty both the stream's and driver's buffer
|
|
|
|
if(priv->card != card)
|
|
|
|
{
|
|
|
|
dvbin_close(stream);
|
|
|
|
if(! dvb_open_devices(priv, devno, channel->pids_cnt))
|
|
|
|
{
|
|
|
|
MP_ERR(stream, "DVB_SET_CHANNEL, COULDN'T OPEN DEVICES OF CARD: %d, EXIT\n", card);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else //close all demux_fds with pos > pids required for the new channel or open other demux_fds if we have too few
|
|
|
|
{
|
|
|
|
if(! dvb_fix_demuxes(priv, channel->pids_cnt))
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(! dvb_open_devices(priv, devno, channel->pids_cnt))
|
|
|
|
{
|
|
|
|
MP_ERR(stream, "DVB_SET_CHANNEL2, COULDN'T OPEN DEVICES OF CARD: %d, EXIT\n", card);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
priv->card = card;
|
|
|
|
priv->list = new_list;
|
|
|
|
priv->retry = 5;
|
|
|
|
new_list->current = n;
|
|
|
|
priv->fd = priv->dvr_fd;
|
|
|
|
MP_VERBOSE(stream, "DVB_SET_CHANNEL: new channel name=%s, card: %d, channel %d\n", channel->name, card, n);
|
|
|
|
|
2014-10-07 22:52:39 +00:00
|
|
|
stream_drop_buffers(stream);
|
2014-04-13 16:00:51 +00:00
|
|
|
|
|
|
|
if(channel->freq != priv->last_freq)
|
|
|
|
if (! dvb_tune(priv, channel->freq, channel->pol, channel->srate, channel->diseqc, channel->tone,
|
2014-12-31 01:20:14 +00:00
|
|
|
channel->is_dvb_s2, channel->stream_id, channel->inv, channel->mod, channel->gi,
|
|
|
|
channel->trans, channel->bw, channel->cr, channel->cr_lp, channel->hier, priv->cfg_timeout))
|
2014-04-13 16:00:51 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
priv->last_freq = channel->freq;
|
|
|
|
priv->is_on = 1;
|
2015-01-04 22:22:02 +00:00
|
|
|
|
|
|
|
if (channel->service_id != -1) {
|
|
|
|
/* We need the PMT-PID in addition.
|
|
|
|
If it has not yet beem resolved, do it now. */
|
|
|
|
for (i = 0; i < channel->pids_cnt; i++) {
|
|
|
|
if (channel->pids[i] == -1) {
|
|
|
|
MP_VERBOSE(stream, "DVB_SET_CHANNEL: PMT-PID for service %d not resolved yet, parsing PAT...\n", channel->service_id);
|
|
|
|
int pmt_pid = dvb_get_pmt_pid(priv, card, channel->service_id);
|
|
|
|
MP_VERBOSE(stream, "DVB_SET_CHANNEL: Found PMT-PID: %d\n", pmt_pid);
|
|
|
|
channel->pids[i] = pmt_pid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-04-13 16:00:51 +00:00
|
|
|
|
2015-01-04 22:22:02 +00:00
|
|
|
// sets demux filters and restart the stream
|
2014-04-13 16:00:51 +00:00
|
|
|
for(i = 0; i < channel->pids_cnt; i++)
|
|
|
|
{
|
2015-01-04 22:22:02 +00:00
|
|
|
if (channel->pids[i] == -1) {
|
|
|
|
// In case PMT was not resolved, skip it here.
|
|
|
|
MP_ERR(stream, "DVB_SET_CHANNEL: PMT-PID not found, teletext-decoding may fail.\n");
|
|
|
|
} else {
|
|
|
|
if (!dvb_set_ts_filt(priv,priv->demux_fds[i], channel->pids[i], DMX_PES_OTHER))
|
|
|
|
return 0;
|
|
|
|
}
|
2014-04-13 16:00:51 +00:00
|
|
|
}
|
2015-01-04 22:22:02 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
return 1;
|
2003-03-16 20:13:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-12-15 13:05:06 +00:00
|
|
|
int dvb_step_channel(stream_t *stream, int dir)
|
2003-03-16 20:13:28 +00:00
|
|
|
{
|
2014-04-13 16:00:51 +00:00
|
|
|
int new_current;
|
|
|
|
dvb_channels_list *list;
|
|
|
|
dvb_priv_t *priv = stream->priv;
|
2003-08-11 00:02:46 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
MP_VERBOSE(stream, "DVB_STEP_CHANNEL dir %d\n", dir);
|
2003-08-11 00:02:46 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
if(priv == NULL)
|
|
|
|
{
|
|
|
|
MP_ERR(stream, "dvb_step_channel: NULL priv_ptr, quit\n");
|
|
|
|
return 0;
|
|
|
|
}
|
2003-08-11 00:02:46 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
list = priv->list;
|
|
|
|
if(list == NULL)
|
|
|
|
{
|
|
|
|
MP_ERR(stream, "dvb_step_channel: NULL list_ptr, quit\n");
|
|
|
|
return 0;
|
|
|
|
}
|
2003-08-11 00:02:46 +00:00
|
|
|
|
command: redo ancient TV/DVB/PVR commands
Convert all these commands to properties. (Except tv_last_channel, not
sure what to do with this.) Also, internally, don't access stream
details directly, but dispatch commands with stream ctrls.
Many of the new properties are a bit strange, because they're write-
only. Also remove some OSD output these commands produced, because I
couldn't be bothered to port these.
In general, this makes everything much cleaner, and will also make it
easier to e.g. move the demuxer to its own thread.
Don't bother updating input.conf, but changes.rst documents how old
commands map to the new ones.
Mostly untested, due to lack of hardware.
2014-06-09 21:38:28 +00:00
|
|
|
new_current = (list->NUM_CHANNELS + list->current + (dir >= 0 ? 1 : -1)) % list->NUM_CHANNELS;
|
2003-08-11 00:02:46 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
return dvb_set_channel(stream, priv->card, new_current);
|
2003-03-16 20:13:28 +00:00
|
|
|
}
|
|
|
|
|
command: redo ancient TV/DVB/PVR commands
Convert all these commands to properties. (Except tv_last_channel, not
sure what to do with this.) Also, internally, don't access stream
details directly, but dispatch commands with stream ctrls.
Many of the new properties are a bit strange, because they're write-
only. Also remove some OSD output these commands produced, because I
couldn't be bothered to port these.
In general, this makes everything much cleaner, and will also make it
easier to e.g. move the demuxer to its own thread.
Don't bother updating input.conf, but changes.rst documents how old
commands map to the new ones.
Mostly untested, due to lack of hardware.
2014-06-09 21:38:28 +00:00
|
|
|
static int dvbin_stream_control(struct stream *s, int cmd, void *arg)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
switch (cmd) {
|
|
|
|
case STREAM_CTRL_DVB_SET_CHANNEL: {
|
|
|
|
int *iarg = arg;
|
|
|
|
r = dvb_set_channel(s, iarg[1], iarg[0]);
|
|
|
|
return r ? STREAM_OK : STREAM_ERROR;
|
|
|
|
}
|
|
|
|
case STREAM_CTRL_DVB_STEP_CHANNEL:
|
|
|
|
r = dvb_step_channel(s, *(int *)arg);
|
|
|
|
return r ? STREAM_OK : STREAM_ERROR;
|
|
|
|
}
|
|
|
|
return STREAM_UNSUPPORTED;
|
|
|
|
}
|
2003-03-16 20:13:28 +00:00
|
|
|
|
2003-08-11 00:02:46 +00:00
|
|
|
static void dvbin_close(stream_t *stream)
|
2003-03-16 20:13:28 +00:00
|
|
|
{
|
2014-04-13 16:00:51 +00:00
|
|
|
int i;
|
|
|
|
dvb_priv_t *priv = (dvb_priv_t *) stream->priv;
|
|
|
|
|
|
|
|
for(i = priv->demux_fds_cnt-1; i >= 0; i--)
|
|
|
|
{
|
|
|
|
priv->demux_fds_cnt--;
|
|
|
|
MP_VERBOSE(stream, "DVBIN_CLOSE, close(%d), fd=%d, COUNT=%d\n", i, priv->demux_fds[i], priv->demux_fds_cnt);
|
|
|
|
close(priv->demux_fds[i]);
|
|
|
|
}
|
|
|
|
close(priv->dvr_fd);
|
|
|
|
|
|
|
|
close(priv->fe_fd);
|
|
|
|
priv->fe_fd = priv->sec_fd = priv->dvr_fd = -1;
|
|
|
|
|
|
|
|
priv->is_on = 0;
|
|
|
|
dvb_free_config(priv->config);
|
2003-08-11 00:02:46 +00:00
|
|
|
}
|
2003-03-16 20:13:28 +00:00
|
|
|
|
|
|
|
|
2013-08-02 15:02:34 +00:00
|
|
|
static int dvb_streaming_start(stream_t *stream, int tuner_type, char *progname)
|
2003-08-11 00:02:46 +00:00
|
|
|
{
|
2014-04-13 16:00:51 +00:00
|
|
|
int i;
|
|
|
|
dvb_channel_t *channel = NULL;
|
|
|
|
dvb_priv_t *priv = stream->priv;
|
2013-08-02 15:02:34 +00:00
|
|
|
dvb_priv_t *opts = priv;
|
2003-03-16 20:13:28 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
MP_VERBOSE(stream, "\r\ndvb_streaming_start(PROG: %s, CARD: %d)\r\n",
|
|
|
|
opts->cfg_prog, opts->cfg_card);
|
2003-08-11 00:02:46 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
priv->is_on = 0;
|
2003-03-16 20:13:28 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
i = 0;
|
|
|
|
while((channel == NULL) && i < priv->list->NUM_CHANNELS)
|
|
|
|
{
|
|
|
|
if(! strcmp(priv->list->channels[i].name, progname))
|
|
|
|
channel = &(priv->list->channels[i]);
|
2003-08-11 00:02:46 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
i++;
|
|
|
|
}
|
2003-08-11 00:02:46 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
if(channel != NULL)
|
|
|
|
{
|
|
|
|
priv->list->current = i-1;
|
|
|
|
MP_VERBOSE(stream, "PROGRAM NUMBER %d: name=%s, freq=%u\n", i-1, channel->name, channel->freq);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
MP_ERR(stream, "\n\nDVBIN: no such channel \"%s\"\n\n", progname);
|
|
|
|
return 0;
|
|
|
|
}
|
2003-03-16 20:13:28 +00:00
|
|
|
|
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
if(!dvb_set_channel(stream, priv->card, priv->list->current))
|
|
|
|
{
|
|
|
|
MP_ERR(stream, "ERROR, COULDN'T SET CHANNEL %i: ", priv->list->current);
|
|
|
|
dvbin_close(stream);
|
|
|
|
return 0;
|
|
|
|
}
|
2003-03-16 20:13:28 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
MP_VERBOSE(stream, "SUCCESSFUL EXIT from dvb_streaming_start\n");
|
2003-08-11 00:02:46 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
return 1;
|
2003-08-11 00:02:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-05-24 12:06:13 +00:00
|
|
|
static int dvb_open(stream_t *stream)
|
2003-08-11 00:02:46 +00:00
|
|
|
{
|
2014-04-13 16:00:51 +00:00
|
|
|
// I don't force the file format bacause, although it's almost always TS,
|
|
|
|
// there are some providers that stream an IP multicast with M$ Mpeg4 inside
|
|
|
|
dvb_priv_t *priv = stream->priv;
|
2013-12-21 19:36:45 +00:00
|
|
|
priv->log = stream->log;
|
2013-08-02 15:02:34 +00:00
|
|
|
dvb_priv_t *p = priv;
|
2014-04-13 16:00:51 +00:00
|
|
|
char *progname;
|
|
|
|
int tuner_type = 0, i;
|
2003-03-16 20:13:28 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
priv->fe_fd = priv->sec_fd = priv->dvr_fd = -1;
|
|
|
|
priv->config = dvb_get_config(stream);
|
|
|
|
if(priv->config == NULL)
|
|
|
|
{
|
|
|
|
MP_ERR(stream, "DVB CONFIGURATION IS EMPTY, exit\n");
|
|
|
|
return STREAM_ERROR;
|
|
|
|
}
|
2003-08-11 00:02:46 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
priv->card = -1;
|
|
|
|
for(i=0; i<priv->config->count; i++)
|
|
|
|
{
|
|
|
|
if(priv->config->cards[i].devno+1 == p->cfg_card)
|
|
|
|
{
|
|
|
|
priv->card = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-11-26 12:03:23 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
if(priv->card == -1)
|
|
|
|
{
|
|
|
|
MP_ERR(stream, "NO CONFIGURATION FOUND FOR CARD N. %d, exit\n", p->cfg_card);
|
|
|
|
return STREAM_ERROR;
|
|
|
|
}
|
|
|
|
priv->timeout = p->cfg_timeout;
|
2009-05-13 02:58:57 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
tuner_type = priv->config->cards[priv->card].type;
|
2003-03-16 20:13:28 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
if(tuner_type == 0)
|
|
|
|
{
|
|
|
|
MP_VERBOSE(stream, "OPEN_DVB: UNKNOWN OR UNDETECTABLE TUNER TYPE, EXIT\n");
|
|
|
|
return STREAM_ERROR;
|
|
|
|
}
|
2003-11-01 15:17:01 +00:00
|
|
|
|
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
priv->tuner_type = tuner_type;
|
2003-03-16 20:13:28 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
MP_VERBOSE(stream, "OPEN_DVB: prog=%s, card=%d, type=%d\n",
|
|
|
|
p->cfg_prog, priv->card+1, priv->tuner_type);
|
2003-08-11 00:02:46 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
priv->list = priv->config->cards[priv->card].list;
|
2009-05-13 02:58:57 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
if((! strcmp(p->cfg_prog, "")) && (priv->list != NULL))
|
|
|
|
progname = priv->list->channels[0].name;
|
|
|
|
else
|
|
|
|
progname = p->cfg_prog;
|
2004-04-26 21:19:21 +00:00
|
|
|
|
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
if(! dvb_streaming_start(stream, tuner_type, progname))
|
|
|
|
{
|
|
|
|
return STREAM_ERROR;
|
|
|
|
}
|
2004-04-26 21:19:21 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
stream->type = STREAMTYPE_DVB;
|
|
|
|
stream->fill_buffer = dvb_streaming_read;
|
|
|
|
stream->close = dvbin_close;
|
command: redo ancient TV/DVB/PVR commands
Convert all these commands to properties. (Except tv_last_channel, not
sure what to do with this.) Also, internally, don't access stream
details directly, but dispatch commands with stream ctrls.
Many of the new properties are a bit strange, because they're write-
only. Also remove some OSD output these commands produced, because I
couldn't be bothered to port these.
In general, this makes everything much cleaner, and will also make it
easier to e.g. move the demuxer to its own thread.
Don't bother updating input.conf, but changes.rst documents how old
commands map to the new ones.
Mostly untested, due to lack of hardware.
2014-06-09 21:38:28 +00:00
|
|
|
stream->control = dvbin_stream_control;
|
2009-05-13 02:58:57 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
stream->demuxer = "lavf";
|
2013-07-12 19:58:11 +00:00
|
|
|
stream->lavf_type = "mpegts";
|
2004-04-26 21:19:21 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
return STREAM_OK;
|
2004-04-26 21:19:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#define MAX_CARDS 4
|
2013-12-21 19:36:45 +00:00
|
|
|
dvb_config_t *dvb_get_config(stream_t *stream)
|
2004-04-26 21:19:21 +00:00
|
|
|
{
|
2013-12-21 19:36:45 +00:00
|
|
|
struct mp_log *log = stream->log;
|
|
|
|
struct mpv_global *global = stream->global;
|
2014-08-06 18:27:32 +00:00
|
|
|
dvb_priv_t *priv = stream->priv;
|
2014-04-13 16:00:51 +00:00
|
|
|
int i, fd, type, size;
|
2014-08-06 18:27:32 +00:00
|
|
|
char filename[30], *name;
|
2014-04-13 16:00:51 +00:00
|
|
|
dvb_channels_list *list;
|
|
|
|
dvb_card_config_t *cards = NULL, *tmp;
|
|
|
|
dvb_config_t *conf = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
conf = malloc(sizeof(dvb_config_t));
|
|
|
|
if(conf == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
conf->priv = NULL;
|
|
|
|
conf->count = 0;
|
|
|
|
conf->cards = NULL;
|
|
|
|
for(i=0; i<MAX_CARDS; i++)
|
|
|
|
{
|
|
|
|
snprintf(filename, sizeof(filename), "/dev/dvb/adapter%d/frontend0", i);
|
|
|
|
fd = open(filename, O_RDONLY|O_NONBLOCK|O_CLOEXEC);
|
|
|
|
if(fd < 0)
|
|
|
|
{
|
|
|
|
mp_verbose(log, "DVB_CONFIG, can't open device %s, skipping\n", filename);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
type = dvb_get_tuner_type(fd, log);
|
|
|
|
close(fd);
|
|
|
|
if(type != TUNER_SAT && type != TUNER_TER && type != TUNER_CBL && type != TUNER_ATSC)
|
|
|
|
{
|
|
|
|
mp_verbose(log, "DVB_CONFIG, can't detect tuner type of card %d, skipping\n", i);
|
|
|
|
continue;
|
|
|
|
}
|
2009-05-13 02:58:57 +00:00
|
|
|
|
2012-12-09 14:05:21 +00:00
|
|
|
void *talloc_ctx = talloc_new(NULL);
|
2014-08-06 18:27:32 +00:00
|
|
|
char *conf_file = NULL;
|
|
|
|
if (priv->cfg_file && priv->cfg_file[0]) {
|
|
|
|
conf_file = priv->cfg_file;
|
|
|
|
} else {
|
|
|
|
switch(type) {
|
2012-12-09 14:05:21 +00:00
|
|
|
case TUNER_TER:
|
2014-06-18 23:55:40 +00:00
|
|
|
conf_file = mp_find_config_file(talloc_ctx, global, "channels.conf.ter");
|
2012-12-09 14:05:21 +00:00
|
|
|
break;
|
|
|
|
case TUNER_CBL:
|
2014-06-18 23:55:40 +00:00
|
|
|
conf_file = mp_find_config_file(talloc_ctx, global, "channels.conf.cbl");
|
2012-12-09 14:05:21 +00:00
|
|
|
break;
|
|
|
|
case TUNER_SAT:
|
2014-06-18 23:55:40 +00:00
|
|
|
conf_file = mp_find_config_file(talloc_ctx, global, "channels.conf.sat");
|
2012-12-09 14:05:21 +00:00
|
|
|
break;
|
|
|
|
case TUNER_ATSC:
|
2014-06-18 23:55:40 +00:00
|
|
|
conf_file = mp_find_config_file(talloc_ctx, global, "channels.conf.atsc");
|
2012-12-09 14:05:21 +00:00
|
|
|
break;
|
2014-08-06 18:27:32 +00:00
|
|
|
}
|
|
|
|
if (conf_file) {
|
|
|
|
mp_verbose(log, "Ignoring other channels.conf files.\n");
|
|
|
|
} else {
|
|
|
|
conf_file = mp_find_config_file(talloc_ctx, global, "channels.conf");
|
|
|
|
}
|
2014-08-06 18:12:12 +00:00
|
|
|
}
|
2012-12-09 14:05:21 +00:00
|
|
|
|
2013-12-21 19:36:45 +00:00
|
|
|
list = dvb_get_channels(log, conf_file, type);
|
2012-12-09 14:05:21 +00:00
|
|
|
talloc_free(talloc_ctx);
|
2004-04-03 10:30:46 +00:00
|
|
|
|
2014-04-13 16:00:51 +00:00
|
|
|
if(list == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
size = sizeof(dvb_card_config_t) * (conf->count + 1);
|
|
|
|
tmp = realloc(conf->cards, size);
|
|
|
|
|
|
|
|
if(tmp == NULL)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "DVB_CONFIG, can't realloc %d bytes, skipping\n", size);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
cards = tmp;
|
|
|
|
|
|
|
|
name = malloc(20);
|
|
|
|
if(name==NULL)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "DVB_CONFIG, can't realloc 20 bytes, skipping\n");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
conf->cards = cards;
|
|
|
|
conf->cards[conf->count].devno = i;
|
|
|
|
conf->cards[conf->count].list = list;
|
|
|
|
conf->cards[conf->count].type = type;
|
|
|
|
snprintf(name, 20, "DVB-%c card n. %d", type==TUNER_TER ? 'T' : (type==TUNER_CBL ? 'C' : 'S'), conf->count+1);
|
|
|
|
conf->cards[conf->count].name = name;
|
|
|
|
conf->count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(conf->count == 0)
|
|
|
|
{
|
|
|
|
free(conf);
|
|
|
|
conf = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return conf;
|
2003-08-11 00:02:46 +00:00
|
|
|
}
|
2003-03-16 20:13:28 +00:00
|
|
|
|
2014-06-10 19:44:50 +00:00
|
|
|
static void *get_defaults(stream_t *st)
|
|
|
|
{
|
|
|
|
return m_sub_options_copy(st, &stream_dvb_conf, st->opts->stream_dvb_opts);
|
|
|
|
}
|
2003-03-16 20:13:28 +00:00
|
|
|
|
2007-12-02 13:22:53 +00:00
|
|
|
const stream_info_t stream_info_dvb = {
|
stream: fix url_options field, make protocols field not fixed length
The way the url_options field was handled was not entirely sane: it's
actually a flexible array member, so it points to garbage for streams
which do not initialize this member (it just points to the data right
after the struct, which is garbage in theory and practice). This was
not actually a problem, since the field is only used if priv_size is
set (due to how this stuff is used). But it doesn't allow setting
priv_size only, which might be useful in some cases.
Also, make the protocols array not a fixed size array. Most stream
implementations have only 1 protocol prefix, but stream_lavf.c has
over 10 (whitelists ffmpeg protocols). The high size of the fixed
size protocol array wastes space, and it is _still_ annoying to
add new prefixes to stream_lavf (have to bump the maximum length),
so make it arbitrary length.
The two changes (plus some more cosmetic changes) arte conflated into
one, because it was annoying going over all the stream implementations.
2013-08-25 20:49:27 +00:00
|
|
|
.name = "dvbin",
|
|
|
|
.open = dvb_open,
|
2014-06-10 21:56:05 +00:00
|
|
|
.protocols = (const char*const[]){ "dvb", NULL },
|
2013-08-02 15:02:34 +00:00
|
|
|
.priv_size = sizeof(dvb_priv_t),
|
2014-06-10 19:44:50 +00:00
|
|
|
.get_defaults = get_defaults,
|
2013-08-02 15:02:34 +00:00
|
|
|
.options = stream_params,
|
2014-06-10 21:56:05 +00:00
|
|
|
.url_options = (const char*const[]){
|
stream: fix url_options field, make protocols field not fixed length
The way the url_options field was handled was not entirely sane: it's
actually a flexible array member, so it points to garbage for streams
which do not initialize this member (it just points to the data right
after the struct, which is garbage in theory and practice). This was
not actually a problem, since the field is only used if priv_size is
set (due to how this stuff is used). But it doesn't allow setting
priv_size only, which might be useful in some cases.
Also, make the protocols array not a fixed size array. Most stream
implementations have only 1 protocol prefix, but stream_lavf.c has
over 10 (whitelists ffmpeg protocols). The high size of the fixed
size protocol array wastes space, and it is _still_ annoying to
add new prefixes to stream_lavf (have to bump the maximum length),
so make it arbitrary length.
The two changes (plus some more cosmetic changes) arte conflated into
one, because it was annoying going over all the stream implementations.
2013-08-25 20:49:27 +00:00
|
|
|
"hostname=prog",
|
|
|
|
"username=card",
|
|
|
|
NULL
|
2013-08-02 15:02:34 +00:00
|
|
|
},
|
2003-08-11 00:02:46 +00:00
|
|
|
};
|