libdvbv5  1.30.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 
86 struct dvb_dev_list {
87  char *syspath;
88  char *path;
89  char *sysname;
91  char *bus_addr;
92  char *bus_id;
93  char *manufacturer;
94  char *product;
95  char *serial;
96 };
97 
110 };
111 
121 typedef int (*dvb_dev_change_t)(char *sysname,
122  enum dvb_dev_change_type type, void *priv);
123 
129 struct dvb_open_descriptor;
130 
140 struct dvb_device {
141  /* Digital TV device lists */
144 
145  /* Digital TV frontend access */
147 };
148 
159 struct dvb_device *dvb_dev_alloc(void);
160 
167 void dvb_dev_free(struct dvb_device *dvb);
168 
190 int 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 
221 struct dvb_dev_list *dvb_get_dev_info(struct dvb_device *dvb,
222  const char *sysname);
223 
234 void dvb_dev_stop_monitor(struct dvb_device *dvb);
235 
253 void dvb_dev_set_logpriv(struct dvb_device *dvb,
254  unsigned verbose,
255  dvb_logfunc_priv logfunc, void *logpriv);
256 
273 void dvb_dev_set_log(struct dvb_device *dvb,
274  unsigned verbose,
275  dvb_logfunc logfunc);
276 
300 struct dvb_open_descriptor *dvb_dev_open(struct dvb_device *dvb,
301  const char *sysname, int flags);
302 
310 void dvb_dev_close(struct dvb_open_descriptor *open_dev);
311 
322 int dvb_dev_get_fd(struct dvb_open_descriptor *open_dev);
323 
336 ssize_t dvb_dev_read(struct dvb_open_descriptor *open_dev,
337  void *buf, size_t count);
338 
352 void dvb_dev_dmx_stop(struct dvb_open_descriptor *open_dev);
353 
370 int dvb_dev_set_bufsize(struct dvb_open_descriptor *open_dev,
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 
444 int dvb_dev_dmx_get_pmt_pid(struct dvb_open_descriptor *open_dev, int sid);
445 
467 struct dvb_v5_descriptors *dvb_dev_scan(struct dvb_open_descriptor *open_dev,
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 
494 int dvb_dev_remote_init(struct dvb_device *d, char *server, int port);
495 
496 #else
497 
498 static 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
struct dvb_entry * entry
Definition: dvb-scan.h:90
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
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_get_fd(struct dvb_open_descriptor *open_dev)
returns fd from a local device This will not work for remote devices.
void dvb_dev_stop_monitor(struct dvb_device *dvb)
Stop the dvb_dev_find loop.
char * manufacturer
Definition: dvb-dev.h:93
ssize_t dvb_dev_read(struct dvb_open_descriptor *open_dev, void *buf, size_t count)
read from a dvb demux or dvr file
void(* dvb_logfunc)(int level, const char *fmt,...)
typedef used by dvb_fe_open2 for the log function
Definition: dvb-log.h:44
void(* dvb_logfunc_priv)(void *logpriv, int level, const char *fmt,...)
Definition: dvb-log.h:52
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)
dvb_dev_type
Type of a device entry to search.
Definition: dvb-dev.h:58
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.
char * path
Definition: dvb-dev.h:88
char * product
Definition: dvb-dev.h:94
void dvb_dev_close(struct dvb_open_descriptor *open_dev)
Closes a dvb device.
int num_devices
Definition: dvb-dev.h:143
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.
char * serial
Definition: dvb-dev.h:95
struct dvb_dev_list * dvb_get_dev_info(struct dvb_device *dvb, const char *sysname)
Return data about a device from its sysname.
struct dvb_device * dvb_dev_alloc(void)
Allocate a struct dvb_device.
void dvb_dev_dmx_stop(struct dvb_open_descriptor *open_dev)
Stops the demux filter for a given file descriptor.
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
int dvb_dev_find(struct dvb_device *dvb, dvb_dev_change_t handler, void *user_priv)
finds all DVB devices on the local machine
void dvb_dev_set_log(struct dvb_device *dvb, unsigned verbose, dvb_logfunc logfunc)
Sets the DVB verbosity and log function.
Keeps data needed to handle the DVB frontend.
Definition: dvb-fe.h:117
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.
Provides interfaces to scan programs inside MPEG-TS digital TV streams.
void dvb_dev_free(struct dvb_device *dvb)
free a struct dvb_device
static int dvb_dev_remote_init(struct dvb_device *d, char *server, int port)
Definition: dvb-dev.h:498
Digital TV device node properties.
Definition: dvb-dev.h:86
dvb_dev_change_type
Describes the type of change to be notifier_delay.
Definition: dvb-dev.h:106
struct dvb_dev_list * devices
Definition: dvb-dev.h:142
char * bus_id
Definition: dvb-dev.h:92
struct dvb_v5_fe_parms * fe_parms
Definition: dvb-dev.h:146
char * syspath
Definition: dvb-dev.h:87
Opaque struct with a DVB open file descriptor.
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
Represents one entry on a DTV file.
Definition: dvb-file.h:104
struct dvb_open_descriptor * dvb_dev_open(struct dvb_device *dvb, const char *sysname, int flags)
Opens a dvb device.
Contains the descriptors needed to scan the Service ID and other relevant info at a MPEG-TS Digital T...
Definition: dvb-scan.h:87
char * bus_addr
Definition: dvb-dev.h:91
Provides interfaces to deal with DVB frontend.
char * sysname
Definition: dvb-dev.h:89
enum dvb_dev_type dvb_type
Definition: dvb-dev.h:90
int dvb_dev_set_bufsize(struct dvb_open_descriptor *open_dev, int buffersize)
Start a demux or dvr buffer size.
Digital TV list of devices.
Definition: dvb-dev.h:140