/*1saa7127.h - definition for saa7126/7/8/9 inputs/outputs23Copyright (C) 2006 Hans Verkuil ([email protected])45This program is free software; you can redistribute it and/or modify6it under the terms of the GNU General Public License as published by7the Free Software Foundation; either version 2 of the License, or8(at your option) any later version.910This program is distributed in the hope that it will be useful,11but WITHOUT ANY WARRANTY; without even the implied warranty of12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the13GNU General Public License for more details.1415You should have received a copy of the GNU General Public License16along with this program; if not, write to the Free Software17Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.18*/1920#ifndef _SAA7127_H_21#define _SAA7127_H_2223/* Enumeration for the supported input types */24enum saa7127_input_type {25SAA7127_INPUT_TYPE_NORMAL,26SAA7127_INPUT_TYPE_TEST_IMAGE27};2829/* Enumeration for the supported output signal types */30enum saa7127_output_type {31SAA7127_OUTPUT_TYPE_BOTH,32SAA7127_OUTPUT_TYPE_COMPOSITE,33SAA7127_OUTPUT_TYPE_SVIDEO,34SAA7127_OUTPUT_TYPE_RGB,35SAA7127_OUTPUT_TYPE_YUV_C,36SAA7127_OUTPUT_TYPE_YUV_V37};3839#endif40414243