Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/include/media/i2c/saa7127.h
26283 views
1
/* SPDX-License-Identifier: GPL-2.0-or-later */
2
/*
3
saa7127.h - definition for saa7126/7/8/9 inputs/outputs
4
5
Copyright (C) 2006 Hans Verkuil ([email protected])
6
7
*/
8
9
#ifndef _SAA7127_H_
10
#define _SAA7127_H_
11
12
/* Enumeration for the supported input types */
13
enum saa7127_input_type {
14
SAA7127_INPUT_TYPE_NORMAL,
15
SAA7127_INPUT_TYPE_TEST_IMAGE
16
};
17
18
/* Enumeration for the supported output signal types */
19
enum saa7127_output_type {
20
SAA7127_OUTPUT_TYPE_BOTH,
21
SAA7127_OUTPUT_TYPE_COMPOSITE,
22
SAA7127_OUTPUT_TYPE_SVIDEO,
23
SAA7127_OUTPUT_TYPE_RGB,
24
SAA7127_OUTPUT_TYPE_YUV_C,
25
SAA7127_OUTPUT_TYPE_YUV_V
26
};
27
28
#endif
29
30