source: svn/zas_dstar/hal/platform/dstdddisp.h

Last change on this file was 76, checked in by megakiss, 10 years ago

1W 대기전력을 만족시키기 위하여 POWEROFF시 튜너를 Standby 상태로 함

File size: 1.8 KB
Line 
1#if !defined (_DDDISP_H_)
2#define _DDDISP_H_
3
4#if defined __cplusplus
5extern "C" {
6#endif
7
8//////////////////////////////////////////////////////////////////////////////////////
9// General Parameter Functions
10//////////////////////////////////////////////////////////////////////////////////////
11DHL_RESULT DD_DISP_ChangeVideoFormat(DHL_VIDEO_FORMAT UserVidFormat);
12
13#if !MUTE_DEBUG
14DHL_RESULT DD_DISP_VideoMute(DS_BOOL uMute);
15#else
16DHL_RESULT DD_DISP_VideoMute_Internal(DS_BOOL uMute, const char *fname, int line);
17#define DD_DISP_VideoMute(x)            DD_DISP_VideoMute_Internal((x),__FUNCTION__,__LINE__)
18#endif
19DHL_RESULT DD_DISP_SetVideoMuteColor(DS_U8 Red, DS_U8 Green, DS_U8 Blue);
20DHL_RESULT DD_DISP_VideoMutePIP(DS_BOOL uMute);
21DHL_RESULT DD_DISP_VideoMuteCVBS(DS_BOOL uMute);
22
23DHL_RESULT DD_DISP_InitAuxCC(void);
24DHL_RESULT DD_DISP_EnableAuxCC(int Enable);
25DHL_RESULT DD_DISP_EmbedCC(int nField, DS_U32 data0, DS_U32 data1);
26
27DHL_RESULT DD_DISP_GetPanelPowerStatus(void);
28DHL_RESULT DD_DISP_GetBacklightOnOffStatus(void);
29DHL_RESULT DD_DISP_GetDimmingDelay(DS_BOOL onoff,DS_S32 *Delay,DS_S32 *Delay2);
30
31DHL_RESULT DD_DISP_SetLCDBacklight(DS_U16 uiDeg);
32DHL_RESULT DD_DISP_SetPanelPower( DS_BOOL OnOff );
33
34void DD_DISP_SetLVDSClockFreq(int Offset);
35void DD_DISP_SetLVDSClockPhase(int Offset);
36int DD_DISP_GetLVDSClockFreq(void);
37int DD_DISP_GetLVDSClockPhase(void);
38
39DHL_RESULT DD_DISP_SetPIPStyle(DHL_PIPMode_t PipMode, DHL_PIP_t PipLocation);
40DHL_RESULT DD_DISP_SetPIPLocation(DHL_PIP_t PipLocation);
41DHL_RESULT DD_DISP_SetAspectRatio(int Aspect);
42
43DHL_RESULT DD_DISP_SetSideColorEnable(int En);
44DHL_RESULT DD_DISP_GetSideColorEnable(int *pEn);
45DHL_RESULT DD_DISP_SetSideColor(DS_U8 R, DS_U8 G, DS_U8 B);
46DHL_RESULT DD_DISP_GetSideColor(DS_U8 *pR, DS_U8 *pG, DS_U8 *pB);
47
48#if defined __cplusplus
49}
50#endif
51
52#endif
Note: See TracBrowser for help on using the repository browser.