39 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2/*3 * Video Capture Driver ( Video for Linux 1/2 )4 * for the Matrox Marvel G200,G400 and Rainbow Runner-G series5 *6 * This module is an interface to the KS0127 video decoder chip.7 *8 * Copyright (C) 1999 Ryan Drake <stiletto@mediaone.net>9 */10 11#ifndef KS0127_H12#define KS0127_H13 14/* input channels */15#define KS_INPUT_COMPOSITE_1 016#define KS_INPUT_COMPOSITE_2 117#define KS_INPUT_COMPOSITE_3 218#define KS_INPUT_COMPOSITE_4 419#define KS_INPUT_COMPOSITE_5 520#define KS_INPUT_COMPOSITE_6 621 22#define KS_INPUT_SVIDEO_1 823#define KS_INPUT_SVIDEO_2 924#define KS_INPUT_SVIDEO_3 1025 26#define KS_INPUT_YUV656 1527#define KS_INPUT_COUNT 1028 29/* output channels */30#define KS_OUTPUT_YUV656E 031#define KS_OUTPUT_EXV 132 33/* video standards */34#define KS_STD_NTSC_N 112 /* 50 Hz NTSC */35#define KS_STD_PAL_M 113 /* 60 Hz PAL */36 37#endif /* KS0127_H */38 39