blob: 53bbd5e36a71115bf0bea79b5f4e320be8059ad2 [file] [log] [blame]
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * dmx.h
3 *
4 * Copyright (C) 2000 Marcus Metzler <marcus@convergence.de>
5 * & Ralph Metzler <ralph@convergence.de>
6 * for convergence integrated media GmbH
7 *
Hamad Kadmanyd432f712013-01-17 17:36:17 +02008 * Copyright (c) 2012-2013, The Linux Foundation. All rights reserved.
Hamad Kadmany32cb9822012-05-10 08:47:44 +03009 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public License
12 * as published by the Free Software Foundation; either version 2.1
13 * of the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 *
24 */
25
26#ifndef _DVBDMX_H_
27#define _DVBDMX_H_
28
Jaswinder Singh Rajputc86629c2009-01-30 19:55:32 +053029#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#ifdef __KERNEL__
31#include <linux/time.h>
32#else
33#include <time.h>
34#endif
35
36
37#define DMX_FILTER_SIZE 16
38
Hamad Kadmany4f877942012-07-15 15:06:01 +030039/* Min recording chunk upon which event is generated */
40#define DMX_REC_BUFF_CHUNK_MIN_SIZE (100*188)
41
Gilad Broner526e57e2012-12-03 15:57:44 +020042/* Decoder buffers are usually large ~1MB, 10 should suffice */
43#define DMX_MAX_DECODER_BUFFER_NUM (10)
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045typedef enum
46{
47 DMX_OUT_DECODER, /* Streaming directly to decoder. */
48 DMX_OUT_TAP, /* Output going to a memory buffer */
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -080049 /* (to be retrieved via the read command).*/
Peter Hartleyb01cd932008-04-22 14:45:36 -030050 DMX_OUT_TS_TAP, /* Output multiplexed into a new TS */
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -080051 /* (to be retrieved by reading from the */
52 /* logical DVR device). */
Peter Hartleyb01cd932008-04-22 14:45:36 -030053 DMX_OUT_TSDEMUX_TAP /* Like TS_TAP but retrieved from the DMX device */
Linus Torvalds1da177e2005-04-16 15:20:36 -070054} dmx_output_t;
55
56
57typedef enum
58{
59 DMX_IN_FRONTEND, /* Input from a front-end device. */
60 DMX_IN_DVR /* Input from the logical DVR device. */
61} dmx_input_t;
62
63
64typedef enum
65{
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -080066 DMX_PES_AUDIO0,
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 DMX_PES_VIDEO0,
68 DMX_PES_TELETEXT0,
69 DMX_PES_SUBTITLE0,
70 DMX_PES_PCR0,
71
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -080072 DMX_PES_AUDIO1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 DMX_PES_VIDEO1,
74 DMX_PES_TELETEXT1,
75 DMX_PES_SUBTITLE1,
76 DMX_PES_PCR1,
77
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -080078 DMX_PES_AUDIO2,
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 DMX_PES_VIDEO2,
80 DMX_PES_TELETEXT2,
81 DMX_PES_SUBTITLE2,
82 DMX_PES_PCR2,
83
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -080084 DMX_PES_AUDIO3,
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 DMX_PES_VIDEO3,
86 DMX_PES_TELETEXT3,
87 DMX_PES_SUBTITLE3,
88 DMX_PES_PCR3,
89
90 DMX_PES_OTHER
91} dmx_pes_type_t;
92
93#define DMX_PES_AUDIO DMX_PES_AUDIO0
94#define DMX_PES_VIDEO DMX_PES_VIDEO0
95#define DMX_PES_TELETEXT DMX_PES_TELETEXT0
96#define DMX_PES_SUBTITLE DMX_PES_SUBTITLE0
97#define DMX_PES_PCR DMX_PES_PCR0
98
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100typedef struct dmx_filter
101{
102 __u8 filter[DMX_FILTER_SIZE];
103 __u8 mask[DMX_FILTER_SIZE];
104 __u8 mode[DMX_FILTER_SIZE];
105} dmx_filter_t;
106
107
Liron Kuchd4cc3b02012-05-17 16:31:58 +0300108/* Filter flags */
109#define DMX_CHECK_CRC 0x01
110#define DMX_ONESHOT 0x02
111#define DMX_IMMEDIATE_START 0x04
112#define DMX_ENABLE_INDEXING 0x08
113#define DMX_KERNEL_CLIENT 0x8000
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115struct dmx_sct_filter_params
116{
117 __u16 pid;
118 dmx_filter_t filter;
119 __u32 timeout;
120 __u32 flags;
Liron Kuchd4cc3b02012-05-17 16:31:58 +0300121};
122
123
124/* Indexing: supported video standards */
125enum dmx_indexing_video_standard {
126 DMX_INDEXING_MPEG2,
127 DMX_INDEXING_H264,
128 DMX_INDEXING_VC1
129};
130
131/* Indexing: Supported video profiles */
132enum dmx_indexing_video_profile {
133 DMX_INDEXING_MPEG2_ANY,
134 DMX_INDEXING_H264_ANY,
135 DMX_INDEXING_VC1_ANY
136};
137
138/* Indexing: video configuration parameters */
139struct dmx_indexing_video_params {
140 enum dmx_indexing_video_standard standard;
141 enum dmx_indexing_video_profile profile;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142};
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144struct dmx_pes_filter_params
145{
146 __u16 pid;
147 dmx_input_t input;
148 dmx_output_t output;
149 dmx_pes_type_t pes_type;
150 __u32 flags;
Liron Kuchd4cc3b02012-05-17 16:31:58 +0300151
Hamad Kadmany4f877942012-07-15 15:06:01 +0300152 /*
153 * The following configures when the event
154 * DMX_EVENT_NEW_REC_CHUNK will be triggered.
155 * When new recorded data is received with size
156 * equal or larger than this value a new event
157 * will be triggered. This is relevent when
158 * output is DMX_OUT_TS_TAP or DMX_OUT_TSDEMUX_TAP,
159 * size must be at least DMX_REC_BUFF_CHUNK_MIN_SIZE
160 * and smaller than buffer size.
161 */
162 __u32 rec_chunk_size;
163
Liron Kuchd4cc3b02012-05-17 16:31:58 +0300164 struct dmx_indexing_video_params video_params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165};
166
Hamad Kadmany32cb9822012-05-10 08:47:44 +0300167struct dmx_buffer_status {
168 /* size of buffer in bytes */
169 unsigned int size;
170
171 /* fullness of buffer in bytes */
172 unsigned int fullness;
173
174 /*
175 * How many bytes are free
176 * It's the same as: size-fullness-1
177 */
178 unsigned int free_bytes;
179
180 /* read pointer offset in bytes */
181 unsigned int read_offset;
182
183 /* write pointer offset in bytes */
184 unsigned int write_offset;
185
186 /* non-zero if data error occured */
187 int error;
188};
189
Hamad Kadmany4f877942012-07-15 15:06:01 +0300190/* Events associated with each demux filter */
191enum dmx_event {
192 /* New PES packet is ready to be consumed */
193 DMX_EVENT_NEW_PES,
194
195 /* New section is ready to be consumed */
196 DMX_EVENT_NEW_SECTION,
197
198 /* New recording chunk is ready to be consumed */
199 DMX_EVENT_NEW_REC_CHUNK,
200
201 /* New PCR value is ready */
202 DMX_EVENT_NEW_PCR,
203
204 /* Overflow */
205 DMX_EVENT_BUFFER_OVERFLOW,
206
207 /* Section was dropped due to CRC error */
208 DMX_EVENT_SECTION_CRC_ERROR,
209
210 /* End-of-stream, no more data from this filter */
Liron Kuch41543b72012-11-26 13:27:22 +0200211 DMX_EVENT_EOS,
212
213 /* New Elementary Stream data is ready */
214 DMX_EVENT_NEW_ES_DATA
Hamad Kadmany4f877942012-07-15 15:06:01 +0300215};
216
217/* Flags passed in filter events */
218
219/* Continuity counter error was detected */
220#define DMX_FILTER_CC_ERROR 0x01
221
222/* Discontinuity indicator was set */
Liron Kuch41543b72012-11-26 13:27:22 +0200223#define DMX_FILTER_DISCONTINUITY_INDICATOR 0x02
Hamad Kadmany4f877942012-07-15 15:06:01 +0300224
225/* PES legnth in PES header is not correct */
226#define DMX_FILTER_PES_LENGTH_ERROR 0x04
227
228
229/* PES info associated with DMX_EVENT_NEW_PES event */
230struct dmx_pes_event_info {
231 /* Offset at which PES information starts */
232 __u32 base_offset;
233
234 /*
235 * Start offset at which PES data
236 * from the stream starts.
237 * Equal to base_offset if PES data
238 * starts from the beginning.
239 */
240 __u32 start_offset;
241
242 /* Total length holding the PES information */
243 __u32 total_length;
244
245 /* Actual length holding the PES data */
246 __u32 actual_length;
247
248 /* Local receiver timestamp in 27MHz */
249 __u64 stc;
250
251 /* Flags passed in filter events */
252 __u32 flags;
Hamad Kadmanyd432f712013-01-17 17:36:17 +0200253
254 /*
255 * Number of TS packets with Transport Error Indicator (TEI)
256 * found while constructing the PES.
257 */
258 __u32 transport_error_indicator_counter;
259
260 /* Number of continuity errors found while constructing the PES */
261 __u32 continuity_error_counter;
262
263 /* Total number of TS packets holding the PES */
264 __u32 ts_packets_num;
Hamad Kadmany4f877942012-07-15 15:06:01 +0300265};
266
267/* Section info associated with DMX_EVENT_NEW_SECTION event */
268struct dmx_section_event_info {
269 /* Offset at which section information starts */
270 __u32 base_offset;
271
272 /*
273 * Start offset at which section data
274 * from the stream starts.
275 * Equal to base_offset if section data
276 * starts from the beginning.
277 */
278 __u32 start_offset;
279
280 /* Total length holding the section information */
281 __u32 total_length;
282
283 /* Actual length holding the section data */
284 __u32 actual_length;
285
286 /* Flags passed in filter events */
287 __u32 flags;
288};
289
290/* Recording info associated with DMX_EVENT_NEW_REC_CHUNK event */
291struct dmx_rec_chunk_event_info {
292 /* Offset at which recording chunk starts */
293 __u32 offset;
294
295 /* Size of recording chunk in bytes */
296 __u32 size;
297};
298
299/* PCR info associated with DMX_EVENT_NEW_PCR event */
300struct dmx_pcr_event_info {
301 /* Local timestamp in 27MHz
302 * when PCR packet was received
303 */
304 __u64 stc;
305
306 /* PCR value in 27MHz */
307 __u64 pcr;
308
309 /* Flags passed in filter events */
310 __u32 flags;
311};
312
313/*
Liron Kuch41543b72012-11-26 13:27:22 +0200314 * Elementary stream data information associated
315 * with DMX_EVENT_NEW_ES_DATA event
316 */
317struct dmx_es_data_event_info {
318 /* Buffer user-space handle */
319 int buf_handle;
320
321 /*
322 * Cookie to provide when releasing the buffer
323 * using the DMX_RELEASE_DECODER_BUFFER ioctl command
324 */
325 int cookie;
326
327 /* Offset of data from the beginning of the buffer */
328 __u32 offset;
329
330 /* Length of data in buffer (in bytes) */
331 __u32 data_len;
332
333 /* Indication whether PTS value is valid */
334 int pts_valid;
335
336 /* PTS value associated with the buffer */
337 __u64 pts;
338
339 /* Indication whether DTS value is valid */
340 int dts_valid;
341
342 /* DTS value associated with the buffer */
343 __u64 dts;
344
345 /*
346 * Number of TS packets with Transport Error Indicator (TEI) set
347 * in the TS packet header since last reported event
348 */
349 __u32 transport_error_indicator_counter;
350
351 /* Number of continuity errors since last reported event */
352 __u32 continuity_error_counter;
353
354 /* Total number of TS packets processed since last reported event */
355 __u32 ts_packets_num;
356
357 /*
358 * Number of dropped bytes due to insufficient buffer space,
359 * since last reported event
360 */
361 __u32 ts_dropped_bytes;
362};
363
364/*
Hamad Kadmany4f877942012-07-15 15:06:01 +0300365 * Filter's event returned through DMX_GET_EVENT.
366 * poll with POLLPRI would block until events are available.
367 */
368struct dmx_filter_event {
369 enum dmx_event type;
370
371 union {
372 struct dmx_pes_event_info pes;
373 struct dmx_section_event_info section;
374 struct dmx_rec_chunk_event_info recording_chunk;
375 struct dmx_pcr_event_info pcr;
Liron Kuch41543b72012-11-26 13:27:22 +0200376 struct dmx_es_data_event_info es_data;
Hamad Kadmany4f877942012-07-15 15:06:01 +0300377 } params;
378};
379
Hamad Kadmanyec6202d2012-09-20 07:58:57 +0300380/* Filter's buffer requirement returned in dmx_caps */
381struct dmx_buffer_requirement {
382 /* Buffer size alignment, 0 means no special requirement */
383 __u32 size_alignment;
384
385 /* Maximum buffer size allowed */
386 __u32 max_size;
Gilad Broner526e57e2012-12-03 15:57:44 +0200387
388 /* Maximum number of linear buffers handled by demux */
389 __u32 max_buffer_num;
390
391 /* Feature support bitmap as detailed below */
Hamad Kadmanyec6202d2012-09-20 07:58:57 +0300392 __u32 flags;
393
Gilad Broner526e57e2012-12-03 15:57:44 +0200394/* Buffer must be allocated as physically contiguous memory */
395#define DMX_BUFFER_CONTIGUOUS_MEM 0x1
Hamad Kadmanyec6202d2012-09-20 07:58:57 +0300396
397/* If the filter's data is decrypted, the buffer should be secured one */
398#define DMX_BUFFER_SECURED_IF_DECRYPTED 0x2
Gilad Broner526e57e2012-12-03 15:57:44 +0200399
400/* Buffer can be allocated externally */
401#define DMX_BUFFER_EXTERNAL_SUPPORT 0x4
402
403/* Buffer can be allocated internally */
404#define DMX_BUFFER_INTERNAL_SUPPORT 0x8
405
406/* Filter output can be output to a linear buffer group */
407#define DMX_BUFFER_LINEAR_GROUP_SUPPORT 0x10
Hamad Kadmanyec6202d2012-09-20 07:58:57 +0300408};
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410typedef struct dmx_caps {
411 __u32 caps;
Hamad Kadmanyd2c325e2012-05-28 13:52:49 +0300412
413/* Indicates whether demux support playback from memory in pull mode */
414#define DMX_CAP_PULL_MODE 0x01
415
416/* Indicates whether demux support indexing of recorded video stream */
417#define DMX_CAP_VIDEO_INDEXING 0x02
418
419/* Indicates whether demux support sending data directly to video decoder */
420#define DMX_CAP_VIDEO_DECODER_DATA 0x04
421
422/* Indicates whether demux support sending data directly to audio decoder */
423#define DMX_CAP_AUDIO_DECODER_DATA 0x08
424
425/* Indicates whether demux support sending data directly to subtitle decoder */
426#define DMX_CAP_SUBTITLE_DECODER_DATA 0x10
427
428 /* Number of decoders demux can output data to */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 int num_decoders;
Hamad Kadmanyd2c325e2012-05-28 13:52:49 +0300430
431 /* Number of demux devices */
432 int num_demux_devices;
433
434 /* Max number of PID filters */
435 int num_pid_filters;
436
437 /* Max number of section filters */
438 int num_section_filters;
439
440 /*
441 * Max number of section filters using same PID,
442 * 0 if not supported
443 */
444 int num_section_filters_per_pid;
445
446 /*
447 * Length of section filter, not including section
448 * length field (2 bytes).
449 */
450 int section_filter_length;
451
452 /* Max number of demod based input */
453 int num_demod_inputs;
454
455 /* Max number of memory based input */
456 int num_memory_inputs;
457
458 /* Overall bitrate from all inputs concurrently. Mbit/sec */
459 int max_bitrate;
460
461 /* Max bitrate from single demod input. Mbit/sec */
462 int demod_input_max_bitrate;
463
464 /* Max bitrate from single memory input. Mbit/sec */
465 int memory_input_max_bitrate;
Hamad Kadmanyec6202d2012-09-20 07:58:57 +0300466
467 struct dmx_buffer_requirement section;
468
469 /* For PES not sent to decoder */
470 struct dmx_buffer_requirement pes;
471
Gilad Broner526e57e2012-12-03 15:57:44 +0200472 /* For PES sent to decoder */
473 struct dmx_buffer_requirement decoder;
474
Hamad Kadmanyec6202d2012-09-20 07:58:57 +0300475 /* Recording buffer for recording of 188 bytes packets */
476 struct dmx_buffer_requirement recording_188_tsp;
477
478 /* Recording buffer for recording of 192 bytes packets */
479 struct dmx_buffer_requirement recording_192_tsp;
480
481 /* DVR input buffer for playback of 188 bytes packets */
482 struct dmx_buffer_requirement playback_188_tsp;
483
484 /* DVR input buffer for playback of 192 bytes packets */
485 struct dmx_buffer_requirement playback_192_tsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486} dmx_caps_t;
487
488typedef enum {
489 DMX_SOURCE_FRONT0 = 0,
490 DMX_SOURCE_FRONT1,
491 DMX_SOURCE_FRONT2,
492 DMX_SOURCE_FRONT3,
493 DMX_SOURCE_DVR0 = 16,
494 DMX_SOURCE_DVR1,
495 DMX_SOURCE_DVR2,
496 DMX_SOURCE_DVR3
497} dmx_source_t;
498
Hamad Kadmany32cb9822012-05-10 08:47:44 +0300499enum dmx_tsp_format_t {
500 DMX_TSP_FORMAT_188 = 0,
501 DMX_TSP_FORMAT_192_TAIL,
502 DMX_TSP_FORMAT_192_HEAD,
503 DMX_TSP_FORMAT_204,
504};
505
506enum dmx_playback_mode_t {
507 /*
508 * In push mode, if one of output buffers
509 * is full, the buffer would overflow
510 * and demux continue processing incoming stream.
511 * This is the default mode. When playing from frontend,
512 * this is the only mode that is allowed.
513 */
514 DMX_PB_MODE_PUSH = 0,
515
516 /*
517 * In pull mode, if one of output buffers
518 * is full, demux stalls waiting for free space,
519 * this would cause DVR input buffer fullness
520 * to accumulate.
521 * This mode is possible only when playing
522 * from DVR.
523 */
524 DMX_PB_MODE_PULL,
525};
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527struct dmx_stc {
Gilad Broner526e57e2012-12-03 15:57:44 +0200528 unsigned int num; /* input : which STC? 0..N */
529 unsigned int base; /* output: divisor for stc to get 90 kHz clock */
530 __u64 stc; /* output: stc in 'base'*90 kHz units */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531};
532
Hamad Kadmanyec6202d2012-09-20 07:58:57 +0300533enum dmx_buffer_mode {
534 /*
535 * demux buffers are allocated internally
536 * by the demux driver. This is the default mode.
537 * DMX_SET_BUFFER_SIZE can be used to set the size of
538 * this buffer.
539 */
540 DMX_BUFFER_MODE_INTERNAL,
541
542 /*
543 * demux buffers are allocated externally and provided
544 * to demux through DMX_SET_BUFFER.
545 * When this mode is used DMX_SET_BUFFER_SIZE and
546 * mmap are prohibited.
547 */
548 DMX_BUFFER_MODE_EXTERNAL,
549};
550
551struct dmx_buffer {
552 unsigned int size;
553 int handle;
554};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Gilad Broner526e57e2012-12-03 15:57:44 +0200556
557struct dmx_decoder_buffers {
558 /*
559 * Specify if linear buffer support is requested. If set, buffers_num
560 * must be greater than 1
561 */
562 int is_linear;
563
564 /*
565 * Specify number of external buffers allocated by user.
566 * If set to 0 means internal buffer allocation is requested
567 */
568 __u32 buffers_num;
569
570 /* Specify buffer size, either external or internal */
571 __u32 buffers_size;
572
573 /* Array of externally allocated buffer handles */
574 int handles[DMX_MAX_DECODER_BUFFER_NUM];
575};
576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577#define DMX_START _IO('o', 41)
578#define DMX_STOP _IO('o', 42)
579#define DMX_SET_FILTER _IOW('o', 43, struct dmx_sct_filter_params)
580#define DMX_SET_PES_FILTER _IOW('o', 44, struct dmx_pes_filter_params)
581#define DMX_SET_BUFFER_SIZE _IO('o', 45)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582#define DMX_GET_PES_PIDS _IOR('o', 47, __u16[5])
583#define DMX_GET_CAPS _IOR('o', 48, dmx_caps_t)
584#define DMX_SET_SOURCE _IOW('o', 49, dmx_source_t)
585#define DMX_GET_STC _IOWR('o', 50, struct dmx_stc)
Andreas Oberritter1cb662a2009-07-14 20:28:50 -0300586#define DMX_ADD_PID _IOW('o', 51, __u16)
587#define DMX_REMOVE_PID _IOW('o', 52, __u16)
Hamad Kadmany32cb9822012-05-10 08:47:44 +0300588#define DMX_SET_TS_PACKET_FORMAT _IOW('o', 53, enum dmx_tsp_format_t)
589#define DMX_SET_TS_OUT_FORMAT _IOW('o', 54, enum dmx_tsp_format_t)
590#define DMX_SET_DECODER_BUFFER_SIZE _IO('o', 55)
591#define DMX_GET_BUFFER_STATUS _IOR('o', 56, struct dmx_buffer_status)
592#define DMX_RELEASE_DATA _IO('o', 57)
593#define DMX_FEED_DATA _IO('o', 58)
594#define DMX_SET_PLAYBACK_MODE _IOW('o', 59, enum dmx_playback_mode_t)
Liron Kuch41543b72012-11-26 13:27:22 +0200595#define DMX_GET_EVENT _IOR('o', 60, struct dmx_filter_event)
596#define DMX_SET_BUFFER_MODE _IOW('o', 61, enum dmx_buffer_mode)
597#define DMX_SET_BUFFER _IOW('o', 62, struct dmx_buffer)
Gilad Broner526e57e2012-12-03 15:57:44 +0200598#define DMX_SET_DECODER_BUFFER _IOW('o', 63, struct dmx_decoder_buffers)
Liron Kuch41543b72012-11-26 13:27:22 +0200599#define DMX_REUSE_DECODER_BUFFER _IO('o', 64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601#endif /*_DVBDMX_H_*/