Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
6194c61e
Commit
6194c61e
authored
Mar 21, 2002
by
Johan Bilien
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forgot to add the input files.
parent
6d7c2261
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
778 additions
and
0 deletions
+778
-0
plugins/satellite/Makefile
plugins/satellite/Makefile
+1
-0
plugins/satellite/input_satellite.c
plugins/satellite/input_satellite.c
+446
-0
plugins/satellite/satellite.c
plugins/satellite/satellite.c
+61
-0
plugins/satellite/satellite_tools.c
plugins/satellite/satellite_tools.c
+231
-0
plugins/satellite/satellite_tools.h
plugins/satellite/satellite_tools.h
+39
-0
No files found.
plugins/satellite/Makefile
0 → 100644
View file @
6194c61e
satellite_SOURCES
=
satellite.c input_satellite.c satellite_tools.c satellite_tools.h
plugins/satellite/input_satellite.c
0 → 100644
View file @
6194c61e
/*****************************************************************************
* input_satellite.c: Satellite card input
*****************************************************************************
* Copyright (C) 1998-2002 VideoLAN
*
* Authors: Johan Bilien <jobi@via.ecp.fr>
*
* 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
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*****************************************************************************/
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <videolan/vlc.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <fcntl.h>
#include <sys/types.h>
#include <string.h>
#include <errno.h>
#ifdef STRNCASECMP_IN_STRINGS_H
# include <strings.h>
#endif
#include "stream_control.h"
#include "input_ext-intf.h"
#include "input_ext-dec.h"
#include "input_ext-plugins.h"
#include "debug.h"
#include "satellite_tools.h"
#define DISEQC 0
/* Wether you should use Diseqc*/
#define FEC 2
/* FEC */
#define LNB_LOF_1 9750000
#define LNB_LOF_2 10600000
#define LNB_SLOF 11700000
#define SATELLITE_READ_ONCE 3
/*****************************************************************************
* Local prototypes
*****************************************************************************/
static
int
SatelliteOpen
(
input_thread_t
*
);
static
void
SatelliteClose
(
input_thread_t
*
);
static
int
SatelliteSetArea
(
input_thread_t
*
,
input_area_t
*
);
static
int
SatelliteSetProgram
(
input_thread_t
*
,
pgrm_descriptor_t
*
);
static
void
SatelliteSeek
(
input_thread_t
*
,
off_t
);
static
int
SatelliteInit
(
input_thread_t
*
);
static
void
SatelliteEnd
(
input_thread_t
*
);
static
int
SatelliteDemux
(
input_thread_t
*
);
static
int
SatelliteRewind
(
input_thread_t
*
);
/*****************************************************************************
* Functions exported as capabilities. They are declared as static so that
* we don't pollute the namespace too much.
*****************************************************************************/
void
_M
(
access_getfunctions
)(
function_list_t
*
p_function_list
)
{
#define access p_function_list->functions.access
access
.
pf_open
=
SatelliteOpen
;
access
.
pf_close
=
SatelliteClose
;
access
.
pf_read
=
input_FDRead
;
access
.
pf_set_area
=
SatelliteSetArea
;
access
.
pf_set_program
=
SatelliteSetProgram
;
access
.
pf_seek
=
SatelliteSeek
;
#undef access
}
void
_M
(
demux_getfunctions
)(
function_list_t
*
p_function_list
)
{
#define demux p_function_list->functions.demux
demux
.
pf_init
=
SatelliteInit
;
demux
.
pf_end
=
SatelliteEnd
;
demux
.
pf_demux
=
SatelliteDemux
;
demux
.
pf_rewind
=
SatelliteRewind
;
#undef demux
}
/*****************************************************************************
* SatelliteOpen : open the dvr device
*****************************************************************************/
static
int
SatelliteOpen
(
input_thread_t
*
p_input
)
{
input_socket_t
*
p_satellite
;
char
*
psz_parser
;
char
*
psz_next
;
int
i_fd
=
0
;
int
i_freq
=
0
;
int
i_srate
=
0
;
boolean_t
b_pol
=
0
;
/* parse the options passed in command line : */
psz_parser
=
strdup
(
p_input
->
psz_name
);
if
(
!
psz_parser
)
{
return
(
-
1
);
}
i_freq
=
(
int
)
strtol
(
psz_parser
,
&
psz_next
,
10
);
if
(
*
psz_next
)
{
psz_parser
=
psz_next
+
1
;
b_pol
=
(
boolean_t
)
strtol
(
psz_parser
,
&
psz_next
,
10
);
if
(
*
psz_next
)
{
psz_parser
=
psz_next
+
1
;
i_srate
=
(
boolean_t
)
strtol
(
psz_parser
,
&
psz_next
,
10
);
}
}
/* Initialise structure */
p_satellite
=
malloc
(
sizeof
(
input_socket_t
)
);
if
(
p_satellite
==
NULL
)
{
intf_ErrMsg
(
"input: satellite: Out of memory"
);
return
-
1
;
}
p_input
->
p_access_data
=
(
void
*
)
p_satellite
;
/* Open the DVR device */
intf_WarnMsg
(
2
,
"input: opening file `%s'"
,
DVR
);
if
(
(
p_satellite
->
i_handle
=
open
(
DVR
,
/*O_NONBLOCK | O_LARGEFILE*/
0
))
==
(
-
1
)
)
{
intf_ErrMsg
(
"input error: cannot open file (%s)"
,
strerror
(
errno
)
);
return
-
1
;
}
/* Initialize the Satellite Card */
intf_WarnMsg
(
2
,
"Initializing Sat Card with Freq: %d, Pol: %d, Srate: %d"
,
i_freq
,
b_pol
,
i_srate
);
if
(
ioctl_SECControl
(
i_freq
*
1000
,
b_pol
,
LNB_SLOF
,
DISEQC
)
<
0
)
{
intf_ErrMsg
(
"input: satellite: An error occured when controling SEC"
);
return
-
1
;
}
intf_WarnMsg
(
3
,
"Initializing Frontend device"
);
switch
(
ioctl_SetQPSKFrontend
(
i_freq
*
1000
,
i_srate
*
1000
,
FEC
,
LNB_LOF_1
,
LNB_LOF_2
,
LNB_SLOF
))
{
case
-
2
:
intf_ErrMsg
(
"input: satellite: Frontend returned
an unexpected event"
);
close
(
p_satellite
->
i_handle
);
free
(
p_satellite
);
return
-
1
;
break
;
case
-
3
:
intf_ErrMsg
(
"input: satellite: Frontend returned
no event"
);
close
(
p_satellite
->
i_handle
);
free
(
p_satellite
);
return
-
1
;
break
;
case
-
4
:
intf_ErrMsg
(
"input: satellite: Frontend: time out
when polling for event"
);
close
(
p_satellite
->
i_handle
);
free
(
p_satellite
);
return
-
1
;
break
;
case
-
5
:
intf_ErrMsg
(
"input: satellite: An error occured when polling
Frontend device"
);
close
(
p_satellite
->
i_handle
);
free
(
p_satellite
);
return
-
1
;
break
;
case
-
1
:
intf_ErrMsg
(
"input: satellite: Frontend returned
an failure event"
);
close
(
p_satellite
->
i_handle
);
free
(
p_satellite
);
return
-
1
;
break
;
default:
break
;
}
intf_WarnMsg
(
3
,
" Setting filter on PAT "
);
if
(
ioctl_SetDMXFilter
(
0
,
&
i_fd
,
3
)
<
0
)
{
intf_ErrMsg
(
"input: satellite: An error occured when setting
filter on PAT"
);
return
-
1
;
}
if
(
input_InitStream
(
p_input
,
sizeof
(
stream_ts_data_t
)
)
==
-
1
)
{
intf_ErrMsg
(
"input: satellite: Not enough memory to allow stream
structure"
);
return
(
-
1
);
}
vlc_mutex_lock
(
&
p_input
->
stream
.
stream_lock
);
p_input
->
stream
.
b_pace_control
=
1
;
p_input
->
stream
.
b_seekable
=
0
;
p_input
->
stream
.
p_selected_area
->
i_tell
=
0
;
vlc_mutex_unlock
(
&
p_input
->
stream
.
stream_lock
);
p_input
->
i_mtu
=
SATELLITE_READ_ONCE
*
TS_PACKET_SIZE
;
p_input
->
stream
.
i_method
=
INPUT_METHOD_SATELLITE
;
p_input
->
psz_demux
=
"satellite"
;
return
0
;
}
/*****************************************************************************
* SatelliteClose : Closes the device
*****************************************************************************/
static
void
SatelliteClose
(
input_thread_t
*
p_input
)
{
input_socket_t
*
p_satellite
;
int
i_es_index
;
if
(
p_input
->
stream
.
p_selected_program
)
{
for
(
i_es_index
=
1
;
i_es_index
<
p_input
->
stream
.
p_selected_program
->
i_es_number
;
i_es_index
++
)
{
#define p_es p_input->stream.p_selected_program->pp_es[i_es_index]
if
(
p_es
->
p_decoder_fifo
)
{
ioctl_UnsetDMXFilter
(
p_es
->
i_dmx_fd
);
}
#undef p_es
}
}
p_satellite
=
(
input_socket_t
*
)
p_input
;
close
(
p_satellite
->
i_handle
);
}
/*****************************************************************************
* SatelliteSetArea : Does nothing
*****************************************************************************/
static
int
SatelliteSetArea
(
input_thread_t
*
p_input
,
input_area_t
*
p_area
)
{
return
-
1
;
}
/*****************************************************************************
* SatelliteSetProgram : Sets the card filters according to the
* selected program,
* and makes the appropriate changes to stream structure.
*****************************************************************************/
int
SatelliteSetProgram
(
input_thread_t
*
p_input
,
pgrm_descriptor_t
*
p_new_prg
)
{
int
i_es_index
;
if
(
p_input
->
stream
.
p_selected_program
)
{
for
(
i_es_index
=
1
;
i_es_index
<
p_input
->
stream
.
p_selected_program
->
i_es_number
;
i_es_index
++
)
{
#define p_es p_input->stream.p_selected_program->pp_es[i_es_index]
if
(
p_es
->
p_decoder_fifo
)
{
input_UnselectES
(
p_input
,
p_es
);
}
ioctl_UnsetDMXFilter
(
p_es
->
i_dmx_fd
);
#undef p_es
}
}
for
(
i_es_index
=
1
;
i_es_index
<
p_new_prg
->
i_es_number
;
i_es_index
++
)
{
#define p_es p_new_prg->pp_es[i_es_index]
switch
(
p_es
->
i_cat
)
{
case
MPEG1_VIDEO_ES
:
case
MPEG2_VIDEO_ES
:
if
(
p_main
->
b_video
)
{
ioctl_SetDMXFilter
(
p_es
->
i_id
,
&
p_es
->
i_dmx_fd
,
1
);
input_SelectES
(
p_input
,
p_es
);
}
break
;
case
MPEG1_AUDIO_ES
:
case
MPEG2_AUDIO_ES
:
if
(
p_main
->
b_audio
)
{
ioctl_SetDMXFilter
(
p_es
->
i_id
,
&
p_es
->
i_dmx_fd
,
2
);
input_SelectES
(
p_input
,
p_es
);
}
break
;
default:
ioctl_SetDMXFilter
(
p_es
->
i_id
,
&
p_es
->
i_dmx_fd
,
3
);
input_SelectES
(
p_input
,
p_es
);
break
;
#undef p_es
}
}
p_input
->
stream
.
p_selected_program
=
p_new_prg
;
return
(
0
);
}
/*****************************************************************************
* SatelliteSeek: does nothing (not a seekable stream
*****************************************************************************/
static
void
SatelliteSeek
(
input_thread_t
*
p_input
,
off_t
i_off
)
{
return
;
}
/*****************************************************************************
* SatelliteInit: initializes TS structures
*****************************************************************************/
static
int
SatelliteInit
(
input_thread_t
*
p_input
)
{
es_descriptor_t
*
p_pat_es
;
es_ts_data_t
*
p_demux_data
;
stream_ts_data_t
*
p_stream_data
;
/* Initialize the stream */
input_InitStream
(
p_input
,
sizeof
(
stream_ts_data_t
)
);
/* Init */
p_stream_data
=
(
stream_ts_data_t
*
)
p_input
->
stream
.
p_demux_data
;
p_stream_data
->
i_pat_version
=
PAT_UNINITIALIZED
;
/* We'll have to catch the PAT in order to continue
* Then the input will catch the PMT and then the others ES
* The PAT es is indepedent of any program. */
p_pat_es
=
input_AddES
(
p_input
,
NULL
,
0x00
,
sizeof
(
es_ts_data_t
)
);
p_demux_data
=
(
es_ts_data_t
*
)
p_pat_es
->
p_demux_data
;
p_demux_data
->
b_psi
=
1
;
p_demux_data
->
i_psi_type
=
PSI_IS_PAT
;
p_demux_data
->
p_psi_section
=
malloc
(
sizeof
(
psi_section_t
));
p_demux_data
->
p_psi_section
->
b_is_complete
=
1
;
return
0
;
}
/*****************************************************************************
* SatelliteEnd: frees unused data
*****************************************************************************/
static
void
SatelliteEnd
(
input_thread_t
*
p_input
)
{
}
/*****************************************************************************
* SatelliteDemux
*****************************************************************************/
static
int
SatelliteDemux
(
input_thread_t
*
p_input
)
{
int
i_read_once
=
(
p_input
->
i_mtu
?
p_input
->
i_bufsize
/
TS_PACKET_SIZE
:
SATELLITE_READ_ONCE
);
int
i
;
/* if not set, set filters to the PMTs */
for
(
i
=
0
;
i
<
p_input
->
stream
.
i_pgrm_number
;
i
++
)
{
if
(
p_input
->
stream
.
pp_programs
[
i
]
->
pp_es
[
0
]
->
i_dmx_fd
==
0
)
{
intf_WarnMsg
(
2
,
"input: satellite: setting filter on pmt pid %d"
,
p_input
->
stream
.
pp_programs
[
i
]
->
pp_es
[
0
]
->
i_id
);
ioctl_SetDMXFilter
(
p_input
->
stream
.
pp_programs
[
i
]
->
pp_es
[
0
]
->
i_id
,
&
p_input
->
stream
.
pp_programs
[
i
]
->
pp_es
[
0
]
->
i_dmx_fd
,
3
);
}
}
for
(
i
=
0
;
i
<
SATELLITE_READ_ONCE
;
i
++
)
{
data_packet_t
*
p_data
;
ssize_t
i_result
;
i_result
=
input_ReadTS
(
p_input
,
&
p_data
);
if
(
i_result
<=
0
)
{
return
(
i_result
);
}
input_DemuxTS
(
p_input
,
p_data
);
}
return
(
i_read_once
);
}
/*****************************************************************************
* SatelliteRewind: Does nothing
*****************************************************************************/
static
int
SatelliteRewind
(
input_thread_t
*
p_input
)
{
return
-
1
;
}
plugins/satellite/satellite.c
0 → 100644
View file @
6194c61e
/*****************************************************************************
* dvb.c : Satellite input module for vlc
*****************************************************************************
* Copyright (C) 2000 VideoLAN
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
* 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
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*****************************************************************************/
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <stdlib.h>
/* malloc(), free() */
#include <string.h>
/* strdup() */
#include <videolan/vlc.h>
/*****************************************************************************
* Capabilities defined in the other files.
*****************************************************************************/
void
_M
(
access_getfunctions
)(
function_list_t
*
p_function_list
);
void
_M
(
demux_getfunctions
)(
function_list_t
*
p_function_list
);
/*****************************************************************************
* Local prototypes.
*****************************************************************************/
/*****************************************************************************
* Build configuration tree.
*****************************************************************************/
MODULE_CONFIG_START
MODULE_CONFIG_STOP
MODULE_INIT_START
SET_DESCRIPTION
(
"Satellite input module"
)
ADD_CAPABILITY
(
DEMUX
,
0
)
ADD_CAPABILITY
(
ACCESS
,
50
)
ADD_SHORTCUT
(
"satellite"
)
MODULE_INIT_STOP
MODULE_ACTIVATE_START
_M
(
access_getfunctions
)(
&
p_module
->
p_functions
->
access
);
_M
(
demux_getfunctions
)(
&
p_module
->
p_functions
->
demux
);
MODULE_ACTIVATE_STOP
MODULE_DEACTIVATE_START
MODULE_DEACTIVATE_STOP
plugins/satellite/satellite_tools.c
0 → 100644
View file @
6194c61e
/*****************************************************************************
* linux_dvb_tools.c : functions to control a DVB card under Linux
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
*
* Authors: Damien Lucas <nitrox@via.ecp.fr>
* Johan Bilien <jobi@via.ecp.fr>
*
* 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
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*****************************************************************************/
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdint.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <time.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/poll.h>
/* DVB Card Drivers */
#include <ost/sec.h>
#include <ost/dmx.h>
#include <ost/frontend.h>
#include "satellite_tools.h"
/*****************************************************************************
* ioctl_SECControl : commands the SEC device
*****************************************************************************/
int
ioctl_SECControl
(
int
freq
,
int
pol
,
int
lnb_slof
,
int
diseqc
)
{
struct
secCommand
scmd
;
struct
secCmdSequence
scmds
;
int
sec
;
if
((
sec
=
open
(
SEC
,
O_RDWR
))
<
0
)
{
return
-
1
;
}
/* Set the frequency of the transponder, taking into account the
local frequencies of the LNB */
scmds
.
continuousTone
=
(
freq
<
lnb_slof
)
?
SEC_TONE_OFF
:
SEC_TONE_ON
;
/* Set the polarity of the transponder by setting the correct
voltage on the universal LNB */
scmds
.
voltage
=
(
pol
)
?
SEC_VOLTAGE_18
:
SEC_VOLTAGE_13
;
/* In case we have a DiSEqC, set it to the correct address */
scmd
.
type
=
0
;
scmd
.
u
.
diseqc
.
addr
=
0x10
;
scmd
.
u
.
diseqc
.
cmd
=
0x38
;
scmd
.
u
.
diseqc
.
numParams
=
1
;
scmd
.
u
.
diseqc
.
params
[
0
]
=
0xF0
|
((
diseqc
*
4
)
&
0x0F
)
|
(
scmds
.
continuousTone
==
SEC_TONE_ON
?
1
:
0
)
|
(
scmds
.
voltage
==
SEC_VOLTAGE_18
?
2
:
0
);
scmds
.
miniCommand
=
SEC_MINI_NONE
;
scmds
.
numCommands
=
1
;
scmds
.
commands
=&
scmd
;
/* Send the data to the SEC device to prepare the LNB for tuning */
/*intf_Msg("Sec: Sending data\n");*/
if
(
ioctl
(
sec
,
SEC_SEND_SEQUENCE
,
&
scmds
)
<
0
)
{
return
-
1
;
}
close
(
sec
);
return
0
;
}
static
int
check_qpsk
(
int
);
/*****************************************************************************
* ioctl_SetQPSKFrontend : controls the FE device
*****************************************************************************/
int
ioctl_SetQPSKFrontend
(
int
freq
,
int
srate
,
int
fec
,
\
int
lnb_lof1
,
int
lnb_lof2
,
int
lnb_slof
)
{
FrontendParameters
fep
;
int
front
;
int
rc
;
/* Open the frontend device */
if
((
front
=
open
(
FRONTEND
,
O_RDWR
))
<
0
)
{
return
-
1
;
}
/* Set the frequency of the transponder, taking into account the
local frequencies of the LNB */
fep
.
Frequency
=
(
freq
<
lnb_slof
)
?
freq
-
lnb_lof1
:
freq
-
lnb_lof2
;
/* Set symbol rate and FEC */
fep
.
u
.
qpsk
.
SymbolRate
=
srate
;
fep
.
u
.
qpsk
.
FEC_inner
=
FEC_AUTO
;
/* Now send it all to the frontend device */
if
(
ioctl
(
front
,
FE_SET_FRONTEND
,
&
fep
)
<
0
)
{
return
-
1
;
}
/* Check if it worked */
rc
=
check_qpsk
(
front
);
/* Close front end device */
close
(
front
);
return
rc
;
}
/******************************************************************
* Check completion of the frontend control sequence
******************************************************************/
static
int
check_qpsk
(
int
front
)
{
struct
pollfd
pfd
[
1
];
FrontendEvent
event
;
/* poll for QPSK event to check if tuning worked */
pfd
[
0
].
fd
=
front
;
pfd
[
0
].
events
=
POLLIN
;
if
(
poll
(
pfd
,
1
,
3000
))
{
if
(
pfd
[
0
].
revents
&
POLLIN
)
{
if
(
ioctl
(
front
,
FE_GET_EVENT
,
&
event
)
==
-
EBUFFEROVERFLOW
)
{
return
-
5
;
}
switch
(
event
.
type
)
{
case
FE_UNEXPECTED_EV
:
return
-
2
;
case
FE_FAILURE_EV
:
return
-
1
;
case
FE_COMPLETION_EV
:
break
;
}
}
else
{
/* should come here */
return
-
3
;
}
}
else
{
return
-
4
;
}
return
0
;
}
/*****************************************************************************
* ioctl_SetDMXAudioFilter : controls the demux to add a filter
*****************************************************************************/
int
ioctl_SetDMXFilter
(
int
i_pid
,
int
*
pi_fd
,
int
i_type
)
{
struct
dmxPesFilterParams
s_filter_params
;
/* We first open the device */
if
((
*
pi_fd
=
open
(
DMX
,
O_RDWR
|
O_NONBLOCK
))
<
0
)
{
return
-
1
;
}
/* We fill the DEMUX structure : */
s_filter_params
.
pid
=
i_pid
;
s_filter_params
.
input
=
DMX_IN_FRONTEND
;
s_filter_params
.
output
=
DMX_OUT_TS_TAP
;
switch
(
i_type
)
{
case
1
:
s_filter_params
.
pesType
=
DMX_PES_VIDEO
;
break
;
case
2
:
s_filter_params
.
pesType
=
DMX_PES_AUDIO
;
break
;
case
3
:
s_filter_params
.
pesType
=
DMX_PES_OTHER
;
break
;
}
s_filter_params
.
flags
=
DMX_IMMEDIATE_START
;
/* We then give the order to the device : */
if
(
ioctl
(
*
pi_fd
,
DMX_SET_PES_FILTER
,
&
s_filter_params
)
<
0
)
{
return
-
1
;
}
return
0
;
}
/*****************************************************************************
* ioctl_UnsetDMXFilter : removes a filter
*****************************************************************************/
int
ioctl_UnsetDMXFilter
(
int
demux
)
{
ioctl
(
demux
,
DMX_STOP
);
close
(
demux
);
return
0
;
}
plugins/satellite/satellite_tools.h
0 → 100644
View file @
6194c61e
/*****************************************************************************
* linux_dvb_tools.h : functions to control a DVB card under Linux
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
*
* Authors: Johan Bilien <jobi@via.ecp.fr>
*
* 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
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*****************************************************************************/
/*****************************************************************************
* Devices location
*****************************************************************************/
#define SEC "/dev/ost/sec"
#define DMX "/dev/ost/demux"
#define FRONTEND "/dev/ost/frontend"
#define DVR "/dev/ost/dvr"
/*****************************************************************************
* Prototypes
*****************************************************************************/
int
ioctl_SECControl
(
int
,
int
,
int
,
int
);
int
ioctl_SetQPSKFrontend
(
int
,
int
,
int
,
int
,
int
,
int
);
int
ioctl_SetDMXFilter
(
int
,
int
*
,
int
);
int
ioctl_UnsetDMXFilter
(
int
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment