libdvbv5 1.26.1
Library to work with Digital TV devices on Linux
dvb-dev.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2016 - Mauro Carvalho Chehab
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation version 2.1 of the License.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16 * Or, point your browser to http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
17 */
18
19#ifndef _DVB_DEV_H
20#define _DVB_DEV_H
21
22#include "dvb-fe.h"
23#include "dvb-scan.h"
24
25#include <linux/dvb/dmx.h>
26
67};
68
87 char *syspath;
88 char *path;
89 char *sysname;
91 char *bus_addr;
92 char *bus_id;
94 char *product;
95 char *serial;
96};
97
110};
111
121typedef int (*dvb_dev_change_t)(char *sysname,
122 enum dvb_dev_change_type type, void *priv);
123
130
141 /* Digital TV device lists */
144
145 /* Digital TV frontend access */
147};
148
160
167void dvb_dev_free(struct dvb_device *dvb);
168
190int dvb_dev_find(struct dvb_device *dvb, dvb_dev_change_t handler,
191 void *user_priv);
192
207 unsigned int adapter,
208 unsigned int num,
209 enum dvb_dev_type type);
210
222 const char *sysname);
223
235
254 unsigned verbose,
255 dvb_logfunc_priv logfunc, void *logpriv);
256
274 unsigned verbose,
275 dvb_logfunc logfunc);
276
301 const char *sysname, int flags);
302
310void dvb_dev_close(struct dvb_open_descriptor *open_dev);
311
323
336ssize_t dvb_dev_read(struct dvb_open_descriptor *open_dev,
337 void *buf, size_t count);
338
353
371 int buffersize);
372
397 int pid, dmx_pes_type_t type,
398 dmx_output_t output, int buffersize);
399
423 int pid, unsigned filtsize,
424 unsigned char *filter,
425 unsigned char *mask,
426 unsigned char *mode,
427 unsigned int flags);
428
444int dvb_dev_dmx_get_pmt_pid(struct dvb_open_descriptor *open_dev, int sid);
445
468 struct dvb_entry *entry,
469 check_frontend_t *check_frontend,
470 void *args,
471 unsigned other_nit,
472 unsigned timeout_multiply);
473
474/* From dvb-dev-remote.c */
475
476#ifdef HAVE_DVBV5_REMOTE
477
478#define REMOTE_BUF_SIZE (87 * 188) /* 16356 bytes */
479
480
494int dvb_dev_remote_init(struct dvb_device *d, char *server, int port);
495
496#else
497
498static inline int dvb_dev_remote_init(struct dvb_device *d, char *server,
499 int port)
500{
501 return -1;
502};
503
504#endif
505
506
507#endif
static int dvb_dev_remote_init(struct dvb_device *d, char *server, int port)
Definition dvb-dev.h:498
struct dvb_dev_list * dvb_get_dev_info(struct dvb_device *dvb, const char *sysname)
Return data about a device from its sysname.
dvb_dev_change_type
Describes the type of change to be notifier_delay.
Definition dvb-dev.h:106
@ DVB_DEV_REMOVE
Definition dvb-dev.h:109
@ DVB_DEV_ADD
Definition dvb-dev.h:107
@ DVB_DEV_CHANGE
Definition dvb-dev.h:108
struct dvb_dev_list * dvb_dev_seek_by_adapter(struct dvb_device *dvb, unsigned int adapter, unsigned int num, enum dvb_dev_type type)
Find a device that matches the search criteria given by this functions's parameters.
int(* dvb_dev_change_t)(char *sysname, enum dvb_dev_change_type type, void *priv)
Describes a callback for dvb_dev_find()
Definition dvb-dev.h:121
dvb_dev_type
Definition dvb-dev.h:58
@ DVB_DEVICE_AUDIO
Definition dvb-dev.h:66
@ DVB_DEVICE_NET
Definition dvb-dev.h:62
@ DVB_DEVICE_CA_SEC
Definition dvb-dev.h:64
@ DVB_DEVICE_DEMUX
Definition dvb-dev.h:60
@ DVB_DEVICE_FRONTEND
Definition dvb-dev.h:59
@ DVB_DEVICE_DVR
Definition dvb-dev.h:61
@ DVB_DEVICE_CA
Definition dvb-dev.h:63
@ DVB_DEVICE_VIDEO
Definition dvb-dev.h:65
Provides interfaces to deal with DVB frontend.
void(* dvb_logfunc_priv)(void *logpriv, int level, const char *fmt,...)
Definition dvb-log.h:52
void(* dvb_logfunc)(int level, const char *fmt,...)
Definition dvb-log.h:44
Provides interfaces to scan programs inside MPEG-TS digital TV streams.
void dvb_dev_free(struct dvb_device *dvb)
free a struct dvb_device
struct dvb_open_descriptor * dvb_dev_open(struct dvb_device *dvb, const char *sysname, int flags)
Opens a dvb device.
void dvb_dev_stop_monitor(struct dvb_device *dvb)
Stop the dvb_dev_find loop.
int dvb_dev_dmx_get_pmt_pid(struct dvb_open_descriptor *open_dev, int sid)
read the contents of the MPEG-TS PAT table, seeking for an specific service ID
int dvb_dev_dmx_set_pesfilter(struct dvb_open_descriptor *open_dev, int pid, dmx_pes_type_t type, dmx_output_t output, int buffersize)
Start a filter for a MPEG-TS Packetized Elementary Stream (PES)
void dvb_dev_dmx_stop(struct dvb_open_descriptor *open_dev)
Stops the demux filter for a given file descriptor.
int dvb_dev_dmx_set_section_filter(struct dvb_open_descriptor *open_dev, int pid, unsigned filtsize, unsigned char *filter, unsigned char *mask, unsigned char *mode, unsigned int flags)
Sets a MPEG-TS section filter.
int dvb_dev_find(struct dvb_device *dvb, dvb_dev_change_t handler, void *user_priv)
finds all DVB devices on the local machine
int dvb_dev_set_bufsize(struct dvb_open_descriptor *open_dev, int buffersize)
Start a demux or dvr buffer size.
int dvb_dev_get_fd(struct dvb_open_descriptor *open_dev)
returns fd from a local device This will not work for remote devices.
void dvb_dev_set_log(struct dvb_device *dvb, unsigned verbose, dvb_logfunc logfunc)
Sets the DVB verbosity and log function.
ssize_t dvb_dev_read(struct dvb_open_descriptor *open_dev, void *buf, size_t count)
read from a dvb demux or dvr file
struct dvb_device * dvb_dev_alloc(void)
Allocate a struct dvb_device.
void dvb_dev_close(struct dvb_open_descriptor *open_dev)
Closes a dvb device.
void dvb_dev_set_logpriv(struct dvb_device *dvb, unsigned verbose, dvb_logfunc_priv logfunc, void *logpriv)
Sets the DVB verbosity and log function with context private data.
struct dvb_v5_descriptors * dvb_dev_scan(struct dvb_open_descriptor *open_dev, struct dvb_entry *entry, check_frontend_t *check_frontend, void *args, unsigned other_nit, unsigned timeout_multiply)
Scans a DVB dvb_add_scaned_transponder.
int() check_frontend_t(void *args, struct dvb_v5_fe_parms *parms)
Callback for the application to show the frontend status.
Definition dvb-scan.h:293
Digital TV device node properties.
Definition dvb-dev.h:86
char * bus_addr
Definition dvb-dev.h:91
enum dvb_dev_type dvb_type
Definition dvb-dev.h:90
char * syspath
Definition dvb-dev.h:87
char * serial
Definition dvb-dev.h:95
char * bus_id
Definition dvb-dev.h:92
char * product
Definition dvb-dev.h:94
char * sysname
Definition dvb-dev.h:89
char * path
Definition dvb-dev.h:88
char * manufacturer
Definition dvb-dev.h:93
Digital TV list of devices.
Definition dvb-dev.h:140
struct dvb_v5_fe_parms * fe_parms
Definition dvb-dev.h:146
int num_devices
Definition dvb-dev.h:143
struct dvb_dev_list * devices
Definition dvb-dev.h:142
Represents one entry on a DTV file.
Definition dvb-file.h:104
Opaque struct with a DVB open file descriptor.
Contains the descriptors needed to scan the Service ID and other relevant info at a MPEG-TS Digital T...
Definition dvb-scan.h:87
struct dvb_entry * entry
Definition dvb-scan.h:90
Keeps data needed to handle the DVB frontend.
Definition dvb-fe.h:117