blob: ae7fc33c3231ec974a46d1275d38270e18b73827 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#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>
Ingo Molnar3593cab2006-02-07 06:49:14 -020029#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
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
Abylay Ospan0d834632009-06-06 09:31:34 -030045#define MAX_PID 0x1fff
46
Abylay Ospan26b9d6c2009-11-01 18:46:53 -030047#define SPEED_PKTS_INTERVAL 50000
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049struct dvb_demux_filter {
Andreas Oberritterdad4a732005-09-09 13:02:26 -070050 struct dmx_section_filter filter;
51 u8 maskandmode[DMX_MAX_FILTER_SIZE];
52 u8 maskandnotmode[DMX_MAX_FILTER_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 int doneq;
54
Andreas Oberritterdad4a732005-09-09 13:02:26 -070055 struct dvb_demux_filter *next;
56 struct dvb_demux_feed *feed;
57 int index;
58 int state;
59 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Andreas Oberritterdad4a732005-09-09 13:02:26 -070061 u16 hw_handle;
62 struct timer_list timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063};
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#define DMX_FEED_ENTRY(pos) list_entry(pos, struct dvb_demux_feed, list_head)
66
67struct dvb_demux_feed {
Andreas Oberritterdad4a732005-09-09 13:02:26 -070068 union {
69 struct dmx_ts_feed ts;
70 struct dmx_section_feed sec;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 } feed;
72
Andreas Oberritterdad4a732005-09-09 13:02:26 -070073 union {
74 dmx_ts_cb ts;
75 dmx_section_cb sec;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 } cb;
77
Andreas Oberritterdad4a732005-09-09 13:02:26 -070078 struct dvb_demux *demux;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 void *priv;
Andreas Oberritterdad4a732005-09-09 13:02:26 -070080 int type;
81 int state;
82 u16 pid;
83 u8 *buffer;
84 int buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Andreas Oberritterdad4a732005-09-09 13:02:26 -070086 struct timespec timeout;
87 struct dvb_demux_filter *filter;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Andreas Oberritterdad4a732005-09-09 13:02:26 -070089 int ts_type;
90 enum dmx_ts_pes pes_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Andreas Oberritterdad4a732005-09-09 13:02:26 -070092 int cc;
93 int pusi_seen; /* prevents feeding of garbage from previous section */
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Andreas Oberritterdad4a732005-09-09 13:02:26 -070095 u16 peslen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97 struct list_head list_head;
Andreas Oberritterdad4a732005-09-09 13:02:26 -070098 unsigned int index; /* a unique index for each feed (can be used as hardware pid filter index) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070099};
100
101struct dvb_demux {
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700102 struct dmx_demux dmx;
103 void *priv;
104 int filternum;
105 int feednum;
106 int (*start_feed)(struct dvb_demux_feed *feed);
107 int (*stop_feed)(struct dvb_demux_feed *feed);
108 int (*write_to_decoder)(struct dvb_demux_feed *feed,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 const u8 *buf, size_t len);
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700110 u32 (*check_crc32)(struct dvb_demux_feed *feed,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 const u8 *buf, size_t len);
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700112 void (*memcopy)(struct dvb_demux_feed *feed, u8 *dst,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 const u8 *src, size_t len);
114
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700115 int users;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#define MAX_DVB_DEMUX_USERS 10
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700117 struct dvb_demux_filter *filter;
118 struct dvb_demux_feed *feed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700120 struct list_head frontend_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Mauro Carvalho Chehabfde04ab2013-04-04 13:25:30 -0300122 struct dvb_demux_feed *pesfilter[DMX_PES_OTHER];
123 u16 pids[DMX_PES_OTHER];
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700124 int playing;
125 int recording;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127#define DMX_MAX_PID 0x2000
128 struct list_head feed_list;
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700129 u8 tsbuf[204];
130 int tsbufp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Ingo Molnar3593cab2006-02-07 06:49:14 -0200132 struct mutex mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 spinlock_t lock;
Abylay Ospan0d834632009-06-06 09:31:34 -0300134
135 uint8_t *cnt_storage; /* for TS continuity check */
Abylay Ospan26b9d6c2009-11-01 18:46:53 -0300136
137 struct timespec speed_last_time; /* for TS speed check */
138 uint32_t speed_pkts_cnt; /* for TS speed check */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139};
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141int dvb_dmx_init(struct dvb_demux *dvbdemux);
Andreas Oberritter93653462005-09-09 13:02:23 -0700142void dvb_dmx_release(struct dvb_demux *dvbdemux);
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700143void dvb_dmx_swfilter_packets(struct dvb_demux *dvbdmx, const u8 *buf,
144 size_t count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145void dvb_dmx_swfilter(struct dvb_demux *demux, const u8 *buf, size_t count);
Andreas Oberritterdad4a732005-09-09 13:02:26 -0700146void dvb_dmx_swfilter_204(struct dvb_demux *demux, const u8 *buf,
147 size_t count);
Michael Krufky8e156702011-08-27 18:46:37 -0300148void dvb_dmx_swfilter_raw(struct dvb_demux *demux, const u8 *buf,
149 size_t count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151#endif /* _DVB_DEMUX_H_ */