aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/videodev2.h
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2011-10-04 15:33:14 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2011-10-08 07:01:06 -0400
commit8d6c0b216fd9a7f4b34aca6bd822756b9ef5690b (patch)
treec763effd6255c51491ad23b41fd4cc8a774e864f /include/linux/videodev2.h
parenta5abdb6044f558bd5da24f122d7d622f887562c7 (diff)
[media] videodev2: Reorganize standard macros and add a few more macros
Reorganize the standards macro and add a few more, that will be used on msp3400 in order to allow it to detect the audio standard. Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include/linux/videodev2.h')
-rw-r--r--include/linux/videodev2.h79
1 files changed, 59 insertions, 20 deletions
diff --git a/include/linux/videodev2.h b/include/linux/videodev2.h
index 9d14523487d1..225560c1a10f 100644
--- a/include/linux/videodev2.h
+++ b/include/linux/videodev2.h
@@ -759,10 +759,10 @@ typedef __u64 v4l2_std_id;
759#define V4L2_STD_PAL_Nc ((v4l2_std_id)0x00000400) 759#define V4L2_STD_PAL_Nc ((v4l2_std_id)0x00000400)
760#define V4L2_STD_PAL_60 ((v4l2_std_id)0x00000800) 760#define V4L2_STD_PAL_60 ((v4l2_std_id)0x00000800)
761 761
762#define V4L2_STD_NTSC_M ((v4l2_std_id)0x00001000) 762#define V4L2_STD_NTSC_M ((v4l2_std_id)0x00001000) /* BTSC */
763#define V4L2_STD_NTSC_M_JP ((v4l2_std_id)0x00002000) 763#define V4L2_STD_NTSC_M_JP ((v4l2_std_id)0x00002000) /* EIA-J */
764#define V4L2_STD_NTSC_443 ((v4l2_std_id)0x00004000) 764#define V4L2_STD_NTSC_443 ((v4l2_std_id)0x00004000)
765#define V4L2_STD_NTSC_M_KR ((v4l2_std_id)0x00008000) 765#define V4L2_STD_NTSC_M_KR ((v4l2_std_id)0x00008000) /* FM A2 */
766 766
767#define V4L2_STD_SECAM_B ((v4l2_std_id)0x00010000) 767#define V4L2_STD_SECAM_B ((v4l2_std_id)0x00010000)
768#define V4L2_STD_SECAM_D ((v4l2_std_id)0x00020000) 768#define V4L2_STD_SECAM_D ((v4l2_std_id)0x00020000)
@@ -786,47 +786,86 @@ typedef __u64 v4l2_std_id;
786 v4l2-common.c should be fixed. 786 v4l2-common.c should be fixed.
787 */ 787 */
788 788
789/* some merged standards */ 789/*
790#define V4L2_STD_MN (V4L2_STD_PAL_M|V4L2_STD_PAL_N|V4L2_STD_PAL_Nc|V4L2_STD_NTSC) 790 * Some macros to merge video standards in order to make live easier for the
791#define V4L2_STD_B (V4L2_STD_PAL_B|V4L2_STD_PAL_B1|V4L2_STD_SECAM_B) 791 * drivers and V4L2 applications
792#define V4L2_STD_GH (V4L2_STD_PAL_G|V4L2_STD_PAL_H|V4L2_STD_SECAM_G|V4L2_STD_SECAM_H) 792 */
793#define V4L2_STD_DK (V4L2_STD_PAL_DK|V4L2_STD_SECAM_DK)
794 793
795/* some common needed stuff */ 794/*
796#define V4L2_STD_PAL_BG (V4L2_STD_PAL_B |\ 795 * "Common" NTSC/M - It should be noticed that V4L2_STD_NTSC_443 is
797 V4L2_STD_PAL_B1 |\ 796 * Missing here.
798 V4L2_STD_PAL_G) 797 */
799#define V4L2_STD_PAL_DK (V4L2_STD_PAL_D |\
800 V4L2_STD_PAL_D1 |\
801 V4L2_STD_PAL_K)
802#define V4L2_STD_PAL (V4L2_STD_PAL_BG |\
803 V4L2_STD_PAL_DK |\
804 V4L2_STD_PAL_H |\
805 V4L2_STD_PAL_I)
806#define V4L2_STD_NTSC (V4L2_STD_NTSC_M |\ 798#define V4L2_STD_NTSC (V4L2_STD_NTSC_M |\
807 V4L2_STD_NTSC_M_JP |\ 799 V4L2_STD_NTSC_M_JP |\
808 V4L2_STD_NTSC_M_KR) 800 V4L2_STD_NTSC_M_KR)
801/* Secam macros */
809#define V4L2_STD_SECAM_DK (V4L2_STD_SECAM_D |\ 802#define V4L2_STD_SECAM_DK (V4L2_STD_SECAM_D |\
810 V4L2_STD_SECAM_K |\ 803 V4L2_STD_SECAM_K |\
811 V4L2_STD_SECAM_K1) 804 V4L2_STD_SECAM_K1)
805/* All Secam Standards */
812#define V4L2_STD_SECAM (V4L2_STD_SECAM_B |\ 806#define V4L2_STD_SECAM (V4L2_STD_SECAM_B |\
813 V4L2_STD_SECAM_G |\ 807 V4L2_STD_SECAM_G |\
814 V4L2_STD_SECAM_H |\ 808 V4L2_STD_SECAM_H |\
815 V4L2_STD_SECAM_DK |\ 809 V4L2_STD_SECAM_DK |\
816 V4L2_STD_SECAM_L |\ 810 V4L2_STD_SECAM_L |\
817 V4L2_STD_SECAM_LC) 811 V4L2_STD_SECAM_LC)
812/* PAL macros */
813#define V4L2_STD_PAL_BG (V4L2_STD_PAL_B |\
814 V4L2_STD_PAL_B1 |\
815 V4L2_STD_PAL_G)
816#define V4L2_STD_PAL_DK (V4L2_STD_PAL_D |\
817 V4L2_STD_PAL_D1 |\
818 V4L2_STD_PAL_K)
819/*
820 * "Common" PAL - This macro is there to be compatible with the old
821 * V4L1 concept of "PAL": /BGDKHI.
822 * Several PAL standards are mising here: /M, /N and /Nc
823 */
824#define V4L2_STD_PAL (V4L2_STD_PAL_BG |\
825 V4L2_STD_PAL_DK |\
826 V4L2_STD_PAL_H |\
827 V4L2_STD_PAL_I)
828/* Chroma "agnostic" standards */
829#define V4L2_STD_B (V4L2_STD_PAL_B |\
830 V4L2_STD_PAL_B1 |\
831 V4L2_STD_SECAM_B)
832#define V4L2_STD_G (V4L2_STD_PAL_G |\
833 V4L2_STD_SECAM_G)
834#define V4L2_STD_H (V4L2_STD_PAL_H |\
835 V4L2_STD_SECAM_H)
836#define V4L2_STD_L (V4L2_STD_SECAM_L |\
837 V4L2_STD_SECAM_LC)
838#define V4L2_STD_GH (V4L2_STD_G |\
839 V4L2_STD_H)
840#define V4L2_STD_DK (V4L2_STD_PAL_DK |\
841 V4L2_STD_SECAM_DK)
842#define V4L2_STD_BG (V4L2_STD_B |\
843 V4L2_STD_G)
844#define V4L2_STD_MN (V4L2_STD_PAL_M |\
845 V4L2_STD_PAL_N |\
846 V4L2_STD_PAL_Nc |\
847 V4L2_STD_NTSC)
818 848
849/* Standards where MTS/BTSC stereo could be found */
850#define V4L2_STD_MTS (V4L2_STD_NTSC_M |\
851 V4L2_STD_PAL_M |\
852 V4L2_STD_PAL_N |\
853 V4L2_STD_PAL_Nc)
854
855/* Standards for Countries with 60Hz Line frequency */
819#define V4L2_STD_525_60 (V4L2_STD_PAL_M |\ 856#define V4L2_STD_525_60 (V4L2_STD_PAL_M |\
820 V4L2_STD_PAL_60 |\ 857 V4L2_STD_PAL_60 |\
821 V4L2_STD_NTSC |\ 858 V4L2_STD_NTSC |\
822 V4L2_STD_NTSC_443) 859 V4L2_STD_NTSC_443)
860/* Standards for Countries with 50Hz Line frequency */
823#define V4L2_STD_625_50 (V4L2_STD_PAL |\ 861#define V4L2_STD_625_50 (V4L2_STD_PAL |\
824 V4L2_STD_PAL_N |\ 862 V4L2_STD_PAL_N |\
825 V4L2_STD_PAL_Nc |\ 863 V4L2_STD_PAL_Nc |\
826 V4L2_STD_SECAM) 864 V4L2_STD_SECAM)
865
827#define V4L2_STD_ATSC (V4L2_STD_ATSC_8_VSB |\ 866#define V4L2_STD_ATSC (V4L2_STD_ATSC_8_VSB |\
828 V4L2_STD_ATSC_16_VSB) 867 V4L2_STD_ATSC_16_VSB)
829 868/* Macros with none and all analog standards */
830#define V4L2_STD_UNKNOWN 0 869#define V4L2_STD_UNKNOWN 0
831#define V4L2_STD_ALL (V4L2_STD_525_60 |\ 870#define V4L2_STD_ALL (V4L2_STD_525_60 |\
832 V4L2_STD_625_50) 871 V4L2_STD_625_50)