-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathconfig.h
37 lines (28 loc) · 887 Bytes
/
config.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
///*****************************************
// Copyright (C) 2009-2014
// ITE Tech. Inc. All Rights Reserved
// Proprietary and Confidential
///*****************************************
// @file <config.h>
// @author [email protected]
// @date 2011/01/13
// @fileversion: HDMIRX_SAMPLE_2.09
//******************************************/
#ifndef _CONFIG_H_
#define _CONFIG_H_
#define SUPPORT_INPUTRGB
#define SUPPORT_INPUTYUV444
#define SUPPORT_INPUTYUV422
#if defined(SUPPORT_INPUTYUV444)|| defined(SUPPORT_INPUTYUV422)
#define SUPPORT_INPUTYUV
#endif
#define SUPPORT_OUTPUTYUV
#define SUPPORT_OUTPUTYUV444
#define SUPPORT_OUTPUTYUV422
#if (defined(SUPPORT_OUTPUTYUV444))||(defined(SUPPORT_OUTPUTYUV422))
#define SUPPORT_OUTPUTYUV
#endif
#define SUPPORT_OUTPUTRGB
// 2010/01/26 added a option to disable HDCP.
// #define _COPY_EDID_
#endif // _CONFIG_H_