diff options
author | Hans Verkuil <devnull@localhost> | 2006-02-03 00:26:19 +0200 |
---|---|---|
committer | Hans Verkuil <devnull@localhost> | 2006-02-03 00:26:19 +0200 |
commit | 783aafc588bfaa8e57bef44e71c2074ba09941dd (patch) | |
tree | fa5820b0cf7d766938408e933d06f6c552b2df0c /linux/include | |
parent | 15974cd7463d76e1b8501564fb21cfdf6b131e0d (diff) | |
download | mediapointer-dvb-s2-783aafc588bfaa8e57bef44e71c2074ba09941dd.tar.gz mediapointer-dvb-s2-783aafc588bfaa8e57bef44e71c2074ba09941dd.tar.bz2 |
Add V4L2_STD_NTSC_M_KR TV standard for South Korean NTSC-M using A2 audio.
From: Hans Verkuil
South Korea uses NTSC-M but with A2 audio instead of BTSC. Several audio
chips need this information in order to set the correct audio processing
registers.
Acked-by: Mauro Carvalho Chehab <mauro_chehab@yahoo.com.br>
Signed-off-by: Hans Verkuil
Diffstat (limited to 'linux/include')
-rw-r--r-- | linux/include/linux/videodev2.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/linux/include/linux/videodev2.h b/linux/include/linux/videodev2.h index e2e28e450..f7db94457 100644 --- a/linux/include/linux/videodev2.h +++ b/linux/include/linux/videodev2.h @@ -664,6 +664,7 @@ typedef __u64 v4l2_std_id; #define V4L2_STD_NTSC_M ((v4l2_std_id)0x00001000) #define V4L2_STD_NTSC_M_JP ((v4l2_std_id)0x00002000) #define V4L2_STD_NTSC_443 ((v4l2_std_id)0x00004000) +#define V4L2_STD_NTSC_M_KR ((v4l2_std_id)0x00008000) #define V4L2_STD_SECAM_B ((v4l2_std_id)0x00010000) #define V4L2_STD_SECAM_D ((v4l2_std_id)0x00020000) @@ -696,7 +697,8 @@ typedef __u64 v4l2_std_id; V4L2_STD_PAL_H |\ V4L2_STD_PAL_I) #define V4L2_STD_NTSC (V4L2_STD_NTSC_M |\ - V4L2_STD_NTSC_M_JP) + V4L2_STD_NTSC_M_JP |\ + V4L2_STD_NTSC_M_KR) #define V4L2_STD_SECAM_DK (V4L2_STD_SECAM_D |\ V4L2_STD_SECAM_K |\ V4L2_STD_SECAM_K1) |