Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 /*
0003  * Video Capture Driver ( Video for Linux 1/2 )
0004  * for the Matrox Marvel G200,G400 and Rainbow Runner-G series
0005  *
0006  * This module is an interface to the KS0127 video decoder chip.
0007  *
0008  * Copyright (C) 1999  Ryan Drake <stiletto@mediaone.net>
0009  */
0010 
0011 #ifndef KS0127_H
0012 #define KS0127_H
0013 
0014 /* input channels */
0015 #define KS_INPUT_COMPOSITE_1    0
0016 #define KS_INPUT_COMPOSITE_2    1
0017 #define KS_INPUT_COMPOSITE_3    2
0018 #define KS_INPUT_COMPOSITE_4    4
0019 #define KS_INPUT_COMPOSITE_5    5
0020 #define KS_INPUT_COMPOSITE_6    6
0021 
0022 #define KS_INPUT_SVIDEO_1       8
0023 #define KS_INPUT_SVIDEO_2       9
0024 #define KS_INPUT_SVIDEO_3       10
0025 
0026 #define KS_INPUT_YUV656     15
0027 #define KS_INPUT_COUNT          10
0028 
0029 /* output channels */
0030 #define KS_OUTPUT_YUV656E       0
0031 #define KS_OUTPUT_EXV           1
0032 
0033 /* video standards */
0034 #define KS_STD_NTSC_N           112       /* 50 Hz NTSC */
0035 #define KS_STD_PAL_M            113       /* 60 Hz PAL  */
0036 
0037 #endif /* KS0127_H */
0038