commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
29 lines
615 B
C
29 lines
615 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
saa7127.h - definition for saa7126/7/8/9 inputs/outputs
|
|
|
|
Copyright (C) 2006 Hans Verkuil (hverkuil@xs4all.nl)
|
|
|
|
*/
|
|
|
|
#ifndef _SAA7127_H_
|
|
#define _SAA7127_H_
|
|
|
|
/* Enumeration for the supported input types */
|
|
enum saa7127_input_type {
|
|
SAA7127_INPUT_TYPE_NORMAL,
|
|
SAA7127_INPUT_TYPE_TEST_IMAGE
|
|
};
|
|
|
|
/* Enumeration for the supported output signal types */
|
|
enum saa7127_output_type {
|
|
SAA7127_OUTPUT_TYPE_BOTH,
|
|
SAA7127_OUTPUT_TYPE_COMPOSITE,
|
|
SAA7127_OUTPUT_TYPE_SVIDEO,
|
|
SAA7127_OUTPUT_TYPE_RGB,
|
|
SAA7127_OUTPUT_TYPE_YUV_C,
|
|
SAA7127_OUTPUT_TYPE_YUV_V
|
|
};
|
|
|
|
#endif
|