Commit cc1139c7cdc1455fdf460c33fe63a36524753834

Authored by Mauro Carvalho Chehab
1 parent 770060385a

V4L/DVB(10738a): remove include/linux/video_encoder.h

include/linux/video_encoder.h is not used anymore by a v4l driver.
Let's remove it and its occurences.

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>

Showing 3 changed files with 0 additions and 25 deletions Side-by-side Diff

Documentation/ioctl/ioctl-number.txt
... ... @@ -125,7 +125,6 @@
125 125 'd' 00-DF linux/video_decoder.h conflict!
126 126 'd' F0-FF linux/digi1.h
127 127 'e' all linux/digi1.h conflict!
128   -'e' 00-1F linux/video_encoder.h conflict!
129 128 'e' 00-1F net/irda/irtty.h conflict!
130 129 'f' 00-1F linux/ext2_fs.h
131 130 'h' 00-7F Charon filesystem
include/linux/Kbuild
... ... @@ -159,7 +159,6 @@
159 159 header-y += utime.h
160 160 header-y += veth.h
161 161 header-y += video_decoder.h
162   -header-y += video_encoder.h
163 162 header-y += videotext.h
164 163 header-y += x25.h
165 164  
include/linux/video_encoder.h
1   -#ifndef _LINUX_VIDEO_ENCODER_H
2   -#define _LINUX_VIDEO_ENCODER_H
3   -
4   -#include <linux/types.h>
5   -
6   -struct video_encoder_capability { /* this name is too long */
7   - __u32 flags;
8   -#define VIDEO_ENCODER_PAL 1 /* can encode PAL signal */
9   -#define VIDEO_ENCODER_NTSC 2 /* can encode NTSC */
10   -#define VIDEO_ENCODER_SECAM 4 /* can encode SECAM */
11   -#define VIDEO_ENCODER_CCIR 16 /* CCIR-601 pixel rate (720 pixels per line) instead of square pixel rate */
12   - int inputs; /* number of inputs */
13   - int outputs; /* number of outputs */
14   -};
15   -
16   -#define ENCODER_GET_CAPABILITIES _IOR('e', 1, struct video_encoder_capability)
17   -#define ENCODER_SET_NORM _IOW('e', 2, int)
18   -#define ENCODER_SET_INPUT _IOW('e', 3, int) /* 0 <= input < #inputs */
19   -#define ENCODER_SET_OUTPUT _IOW('e', 4, int) /* 0 <= output < #outputs */
20   -#define ENCODER_ENABLE_OUTPUT _IOW('e', 5, int) /* boolean output enable control */
21   -
22   -
23   -#endif