Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 /*
0003     saa7127.h - definition for saa7126/7/8/9 inputs/outputs
0004 
0005     Copyright (C) 2006 Hans Verkuil (hverkuil@xs4all.nl)
0006 
0007 */
0008 
0009 #ifndef _SAA7127_H_
0010 #define _SAA7127_H_
0011 
0012 /* Enumeration for the supported input types */
0013 enum saa7127_input_type {
0014     SAA7127_INPUT_TYPE_NORMAL,
0015     SAA7127_INPUT_TYPE_TEST_IMAGE
0016 };
0017 
0018 /* Enumeration for the supported output signal types */
0019 enum saa7127_output_type {
0020     SAA7127_OUTPUT_TYPE_BOTH,
0021     SAA7127_OUTPUT_TYPE_COMPOSITE,
0022     SAA7127_OUTPUT_TYPE_SVIDEO,
0023     SAA7127_OUTPUT_TYPE_RGB,
0024     SAA7127_OUTPUT_TYPE_YUV_C,
0025     SAA7127_OUTPUT_TYPE_YUV_V
0026 };
0027 
0028 #endif