dvb_demux.h 3.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/*
 * dvb_demux.h: DVB kernel demux API
 *
 * Copyright (C) 2000-2001 Marcus Metzler & Ralph Metzler
 *                         for convergence integrated media GmbH
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation; either version 2.1
 * 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 Lesser General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 *
 */

#ifndef _DVB_DEMUX_H_
#define _DVB_DEMUX_H_

#include <linux/time.h>
#include <linux/timer.h>
#include <linux/spinlock.h>
29
#include <linux/mutex.h>
L
Linus Torvalds 已提交
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44

#include "demux.h"

#define DMX_TYPE_TS  0
#define DMX_TYPE_SEC 1
#define DMX_TYPE_PES 2

#define DMX_STATE_FREE      0
#define DMX_STATE_ALLOCATED 1
#define DMX_STATE_SET       2
#define DMX_STATE_READY     3
#define DMX_STATE_GO        4

#define DVB_DEMUX_MASK_MAX 18

45 46
#define MAX_PID 0x1fff

47 48
#define SPEED_PKTS_INTERVAL 50000

L
Linus Torvalds 已提交
49
struct dvb_demux_filter {
50 51 52
	struct dmx_section_filter filter;
	u8 maskandmode[DMX_MAX_FILTER_SIZE];
	u8 maskandnotmode[DMX_MAX_FILTER_SIZE];
L
Linus Torvalds 已提交
53 54
	int doneq;

55 56 57 58 59
	struct dvb_demux_filter *next;
	struct dvb_demux_feed *feed;
	int index;
	int state;
	int type;
L
Linus Torvalds 已提交
60

61 62
	u16 hw_handle;
	struct timer_list timer;
L
Linus Torvalds 已提交
63 64 65 66 67
};

#define DMX_FEED_ENTRY(pos) list_entry(pos, struct dvb_demux_feed, list_head)

struct dvb_demux_feed {
68 69 70
	union {
		struct dmx_ts_feed ts;
		struct dmx_section_feed sec;
L
Linus Torvalds 已提交
71 72
	} feed;

73 74 75
	union {
		dmx_ts_cb ts;
		dmx_section_cb sec;
L
Linus Torvalds 已提交
76 77
	} cb;

78
	struct dvb_demux *demux;
L
Linus Torvalds 已提交
79
	void *priv;
80 81 82 83 84
	int type;
	int state;
	u16 pid;
	u8 *buffer;
	int buffer_size;
L
Linus Torvalds 已提交
85

86 87
	struct timespec timeout;
	struct dvb_demux_filter *filter;
L
Linus Torvalds 已提交
88

89 90
	int ts_type;
	enum dmx_ts_pes pes_type;
L
Linus Torvalds 已提交
91

92 93
	int cc;
	int pusi_seen;		/* prevents feeding of garbage from previous section */
L
Linus Torvalds 已提交
94

95
	u16 peslen;
L
Linus Torvalds 已提交
96 97

	struct list_head list_head;
98
	unsigned int index;	/* a unique index for each feed (can be used as hardware pid filter index) */
L
Linus Torvalds 已提交
99 100 101
};

struct dvb_demux {
102 103 104 105 106 107 108
	struct dmx_demux dmx;
	void *priv;
	int filternum;
	int feednum;
	int (*start_feed)(struct dvb_demux_feed *feed);
	int (*stop_feed)(struct dvb_demux_feed *feed);
	int (*write_to_decoder)(struct dvb_demux_feed *feed,
L
Linus Torvalds 已提交
109
				 const u8 *buf, size_t len);
110
	u32 (*check_crc32)(struct dvb_demux_feed *feed,
L
Linus Torvalds 已提交
111
			    const u8 *buf, size_t len);
112
	void (*memcopy)(struct dvb_demux_feed *feed, u8 *dst,
L
Linus Torvalds 已提交
113 114
			 const u8 *src, size_t len);

115
	int users;
L
Linus Torvalds 已提交
116
#define MAX_DVB_DEMUX_USERS 10
117 118
	struct dvb_demux_filter *filter;
	struct dvb_demux_feed *feed;
L
Linus Torvalds 已提交
119

120
	struct list_head frontend_list;
L
Linus Torvalds 已提交
121

122 123 124 125
	struct dvb_demux_feed *pesfilter[DMX_TS_PES_OTHER];
	u16 pids[DMX_TS_PES_OTHER];
	int playing;
	int recording;
L
Linus Torvalds 已提交
126 127 128

#define DMX_MAX_PID 0x2000
	struct list_head feed_list;
129 130
	u8 tsbuf[204];
	int tsbufp;
L
Linus Torvalds 已提交
131

132
	struct mutex mutex;
L
Linus Torvalds 已提交
133
	spinlock_t lock;
134 135

	uint8_t *cnt_storage; /* for TS continuity check */
136 137 138

	struct timespec speed_last_time; /* for TS speed check */
	uint32_t speed_pkts_cnt; /* for TS speed check */
L
Linus Torvalds 已提交
139 140 141
};

int dvb_dmx_init(struct dvb_demux *dvbdemux);
142
void dvb_dmx_release(struct dvb_demux *dvbdemux);
143 144
void dvb_dmx_swfilter_packets(struct dvb_demux *dvbdmx, const u8 *buf,
			      size_t count);
L
Linus Torvalds 已提交
145
void dvb_dmx_swfilter(struct dvb_demux *demux, const u8 *buf, size_t count);
146 147
void dvb_dmx_swfilter_204(struct dvb_demux *demux, const u8 *buf,
			  size_t count);
148 149
void dvb_dmx_swfilter_raw(struct dvb_demux *demux, const u8 *buf,
			  size_t count);
L
Linus Torvalds 已提交
150 151

#endif /* _DVB_DEMUX_H_ */