Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
dvb_demux.h
Go to the documentation of this file.
1 /*
2  * dvb_demux.h: DVB kernel demux API
3  *
4  * Copyright (C) 2000-2001 Marcus Metzler & Ralph Metzler
5  * for convergence integrated media GmbH
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public License
9  * as published by the Free Software Foundation; either version 2.1
10  * of the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20  *
21  */
22 
23 #ifndef _DVB_DEMUX_H_
24 #define _DVB_DEMUX_H_
25 
26 #include <linux/time.h>
27 #include <linux/timer.h>
28 #include <linux/spinlock.h>
29 #include <linux/mutex.h>
30 
31 #include "demux.h"
32 
33 #define DMX_TYPE_TS 0
34 #define DMX_TYPE_SEC 1
35 #define DMX_TYPE_PES 2
36 
37 #define DMX_STATE_FREE 0
38 #define DMX_STATE_ALLOCATED 1
39 #define DMX_STATE_SET 2
40 #define DMX_STATE_READY 3
41 #define DMX_STATE_GO 4
42 
43 #define DVB_DEMUX_MASK_MAX 18
44 
45 #define MAX_PID 0x1fff
46 
47 #define SPEED_PKTS_INTERVAL 50000
48 
53  int doneq;
54 
57  int index;
58  int state;
59  int type;
60 
62  struct timer_list timer;
63 };
64 
65 #define DMX_FEED_ENTRY(pos) list_entry(pos, struct dvb_demux_feed, list_head)
66 
68  union {
69  struct dmx_ts_feed ts;
71  } feed;
72 
73  union {
76  } cb;
77 
78  struct dvb_demux *demux;
79  void *priv;
80  int type;
81  int state;
85 
86  struct timespec timeout;
88 
89  int ts_type;
91 
92  int cc;
93  int pusi_seen; /* prevents feeding of garbage from previous section */
94 
96 
98  unsigned int index; /* a unique index for each feed (can be used as hardware pid filter index) */
99 };
100 
101 struct dvb_demux {
102  struct dmx_demux dmx;
103  void *priv;
105  int feednum;
109  const u8 *buf, size_t len);
111  const u8 *buf, size_t len);
113  const u8 *src, size_t len);
114 
115  int users;
116 #define MAX_DVB_DEMUX_USERS 10
119 
121 
124  int playing;
126 
127 #define DMX_MAX_PID 0x2000
129  u8 tsbuf[204];
130  int tsbufp;
131 
132  struct mutex mutex;
134 
135  uint8_t *cnt_storage; /* for TS continuity check */
136 
137  struct timespec speed_last_time; /* for TS speed check */
138  uint32_t speed_pkts_cnt; /* for TS speed check */
139 };
140 
141 int dvb_dmx_init(struct dvb_demux *dvbdemux);
142 void dvb_dmx_release(struct dvb_demux *dvbdemux);
143 void dvb_dmx_swfilter_packets(struct dvb_demux *dvbdmx, const u8 *buf,
144  size_t count);
145 void dvb_dmx_swfilter(struct dvb_demux *demux, const u8 *buf, size_t count);
146 void dvb_dmx_swfilter_204(struct dvb_demux *demux, const u8 *buf,
147  size_t count);
148 void dvb_dmx_swfilter_raw(struct dvb_demux *demux, const u8 *buf,
149  size_t count);
150 
151 #endif /* _DVB_DEMUX_H_ */