Commit 4d0dddb1 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab Committed by Mauro Carvalho Chehab

V4L/DVB (3419): added some VBI macros and moved minor definitions to header file

- Moved some hardcoded minor numbers to videodev2.h
- Included more comments for sliced VBI standards
- Included some VBI macros to group similar standards
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent c835ac24
...@@ -279,23 +279,23 @@ int video_register_device(struct video_device *vfd, int type, int nr) ...@@ -279,23 +279,23 @@ int video_register_device(struct video_device *vfd, int type, int nr)
switch(type) switch(type)
{ {
case VFL_TYPE_GRABBER: case VFL_TYPE_GRABBER:
base=0; base=MINOR_VFL_TYPE_GRABBER_MIN;
end=64; end=MINOR_VFL_TYPE_GRABBER_MAX+1;
name_base = "video"; name_base = "video";
break; break;
case VFL_TYPE_VTX: case VFL_TYPE_VTX:
base=192; base=MINOR_VFL_TYPE_VTX_MIN;
end=224; end=MINOR_VFL_TYPE_VTX_MAX+1;
name_base = "vtx"; name_base = "vtx";
break; break;
case VFL_TYPE_VBI: case VFL_TYPE_VBI:
base=224; base=MINOR_VFL_TYPE_VBI_MIN;
end=256; end=MINOR_VFL_TYPE_VBI_MAX+1;
name_base = "vbi"; name_base = "vbi";
break; break;
case VFL_TYPE_RADIO: case VFL_TYPE_RADIO:
base=64; base=MINOR_VFL_TYPE_RADIO_MIN;
end=128; end=MINOR_VFL_TYPE_RADIO_MAX+1;
name_base = "radio"; name_base = "radio";
break; break;
default: default:
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#include <linux/compiler.h> /* need __user */ #include <linux/compiler.h> /* need __user */
#define OBSOLETE_OWNER 1 /* It will be removed for 2.6.15 */ #define OBSOLETE_OWNER 1 /* It will be removed for 2.6.17 */
#define HAVE_V4L2 1 #define HAVE_V4L2 1
/* /*
...@@ -48,6 +48,16 @@ ...@@ -48,6 +48,16 @@
#ifdef __KERNEL__ #ifdef __KERNEL__
/* Minor device allocation */
#define MINOR_VFL_TYPE_GRABBER_MIN 0
#define MINOR_VFL_TYPE_GRABBER_MAX 63
#define MINOR_VFL_TYPE_RADIO_MIN 64
#define MINOR_VFL_TYPE_RADIO_MAX 127
#define MINOR_VFL_TYPE_VTX_MIN 192
#define MINOR_VFL_TYPE_VTX_MAX 223
#define MINOR_VFL_TYPE_VBI_MIN 224
#define MINOR_VFL_TYPE_VBI_MAX 255
#define VFL_TYPE_GRABBER 0 #define VFL_TYPE_GRABBER 0
#define VFL_TYPE_VBI 1 #define VFL_TYPE_VBI 1
#define VFL_TYPE_RADIO 2 #define VFL_TYPE_RADIO 2
...@@ -949,13 +959,15 @@ struct v4l2_sliced_vbi_format ...@@ -949,13 +959,15 @@ struct v4l2_sliced_vbi_format
__u32 reserved[2]; /* must be zero */ __u32 reserved[2]; /* must be zero */
}; };
/* Teletext WST, defined on ITU-R BT.653-2 */ /* Teletext World System Teletext
(WST), defined on ITU-R BT.653-2 */
#define V4L2_SLICED_TELETEXT_PAL_B (0x000001) #define V4L2_SLICED_TELETEXT_PAL_B (0x000001)
#define V4L2_SLICED_TELETEXT_PAL_C (0x000002) #define V4L2_SLICED_TELETEXT_PAL_C (0x000002)
#define V4L2_SLICED_TELETEXT_NTSC_B (0x000010) #define V4L2_SLICED_TELETEXT_NTSC_B (0x000010)
#define V4L2_SLICED_TELETEXT_SECAM (0x000020) #define V4L2_SLICED_TELETEXT_SECAM (0x000020)
/* Teletext NABTS, defined on ITU-R BT.653-2 */ /* Teletext North American Broadcast Teletext Specification
(NABTS), defined on ITU-R BT.653-2 */
#define V4L2_SLICED_TELETEXT_NTSC_C (0x000040) #define V4L2_SLICED_TELETEXT_NTSC_C (0x000040)
#define V4L2_SLICED_TELETEXT_NTSC_D (0x000080) #define V4L2_SLICED_TELETEXT_NTSC_D (0x000080)
...@@ -976,8 +988,24 @@ struct v4l2_sliced_vbi_format ...@@ -976,8 +988,24 @@ struct v4l2_sliced_vbi_format
#define V4l2_SLICED_VITC_625 (0x010000) #define V4l2_SLICED_VITC_625 (0x010000)
#define V4l2_SLICED_VITC_525 (0x020000) #define V4l2_SLICED_VITC_525 (0x020000)
/* Compat macro - Should be removed for 2.6.18 */ #define V4L2_SLICED_TELETEXT_B (V4L2_SLICED_TELETEXT_PAL_B |\
#define V4L2_SLICED_TELETEXT_B V4L2_SLICED_TELETEXT_PAL_B V4L2_SLICED_TELETEXT_NTSC_B)
#define V4L2_SLICED_TELETEXT (V4L2_SLICED_TELETEXT_PAL_B |\
V4L2_SLICED_TELETEXT_PAL_C |\
V4L2_SLICED_TELETEXT_SECAM |\
V4L2_SLICED_TELETEXT_NTSC_B |\
V4L2_SLICED_TELETEXT_NTSC_C |\
V4L2_SLICED_TELETEXT_NTSC_D)
#define V4L2_SLICED_CAPTION (V4L2_SLICED_CAPTION_525 |\
V4L2_SLICED_CAPTION_625)
#define V4L2_SLICED_WSS (V4L2_SLICED_WSS_525 |\
V4L2_SLICED_WSS_625)
#define V4L2_SLICED_VITC (V4L2_SLICED_VITC_525 |\
V4L2_SLICED_VITC_625)
#define V4L2_SLICED_VBI_525 (V4L2_SLICED_TELETEXT_NTSC_B |\ #define V4L2_SLICED_VBI_525 (V4L2_SLICED_TELETEXT_NTSC_B |\
V4L2_SLICED_TELETEXT_NTSC_C |\ V4L2_SLICED_TELETEXT_NTSC_C |\
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment