aboutsummaryrefslogtreecommitdiffstats
path: root/include/uapi/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/uapi/linux')
-rw-r--r--include/uapi/linux/dvb/dmx.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/uapi/linux/dvb/dmx.h b/include/uapi/linux/dvb/dmx.h
index ece3661a3cac..427e4899ed69 100644
--- a/include/uapi/linux/dvb/dmx.h
+++ b/include/uapi/linux/dvb/dmx.h
@@ -32,7 +32,7 @@
32 32
33#define DMX_FILTER_SIZE 16 33#define DMX_FILTER_SIZE 16
34 34
35typedef enum dmx_output 35enum dmx_output
36{ 36{
37 DMX_OUT_DECODER, /* Streaming directly to decoder. */ 37 DMX_OUT_DECODER, /* Streaming directly to decoder. */
38 DMX_OUT_TAP, /* Output going to a memory buffer */ 38 DMX_OUT_TAP, /* Output going to a memory buffer */
@@ -41,8 +41,9 @@ typedef enum dmx_output
41 /* (to be retrieved by reading from the */ 41 /* (to be retrieved by reading from the */
42 /* logical DVR device). */ 42 /* logical DVR device). */
43 DMX_OUT_TSDEMUX_TAP /* Like TS_TAP but retrieved from the DMX device */ 43 DMX_OUT_TSDEMUX_TAP /* Like TS_TAP but retrieved from the DMX device */
44} dmx_output_t; 44};
45 45
46typedef enum dmx_output dmx_output_t;
46 47
47typedef enum dmx_input 48typedef enum dmx_input
48{ 49{
@@ -139,7 +140,6 @@ struct dmx_stc {
139 __u64 stc; /* output: stc in 'base'*90 kHz units */ 140 __u64 stc; /* output: stc in 'base'*90 kHz units */
140}; 141};
141 142
142
143#define DMX_START _IO('o', 41) 143#define DMX_START _IO('o', 41)
144#define DMX_STOP _IO('o', 42) 144#define DMX_STOP _IO('o', 42)
145#define DMX_SET_FILTER _IOW('o', 43, struct dmx_sct_filter_params) 145#define DMX_SET_FILTER _IOW('o', 43, struct dmx_sct_filter_params)