/*1* Video Capture Driver ( Video for Linux 1/2 )2* for the Matrox Marvel G200,G400 and Rainbow Runner-G series3*4* This module is an interface to the KS0127 video decoder chip.5*6* Copyright (C) 1999 Ryan Drake <[email protected]>7*8* This program is free software; you can redistribute it and/or9* modify it under the terms of the GNU General Public License10* as published by the Free Software Foundation; either version 211* of the License, or (at your option) any later version.12*13* This program is distributed in the hope that it will be useful,14* but WITHOUT ANY WARRANTY; without even the implied warranty of15* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the16* GNU General Public License for more details.17*18* You should have received a copy of the GNU General Public License19* along with this program; if not, write to the Free Software20* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.21*/2223#ifndef KS0127_H24#define KS0127_H2526/* input channels */27#define KS_INPUT_COMPOSITE_1 028#define KS_INPUT_COMPOSITE_2 129#define KS_INPUT_COMPOSITE_3 230#define KS_INPUT_COMPOSITE_4 431#define KS_INPUT_COMPOSITE_5 532#define KS_INPUT_COMPOSITE_6 63334#define KS_INPUT_SVIDEO_1 835#define KS_INPUT_SVIDEO_2 936#define KS_INPUT_SVIDEO_3 103738#define KS_INPUT_YUV656 1539#define KS_INPUT_COUNT 104041/* output channels */42#define KS_OUTPUT_YUV656E 043#define KS_OUTPUT_EXV 14445/* video standards */46#define KS_STD_NTSC_N 112 /* 50 Hz NTSC */47#define KS_STD_PAL_M 113 /* 60 Hz PAL */4849#endif /* KS0127_H */50515253