/**************************************************************************** * Copyright (c) 2004 DST Technologies Inc. All Rights Reserved. * * Module: dsthhalvideo.h * * Description: DST HAL TEST Interface function definition * PSI,FE * * * notes: jfet0525 * ***************************************************************************/ #if !defined (_DSTHALTEST_H_) #define _DSTHALTEST_H_ #include "ati_defs.h" #include "dsthalerror.h" #if defined __cplusplus extern "C" { #endif typedef void (DST_FE_CALLBACK)(DS_U32 feHandle, DS_U32 eventSource, DS_U32 userContext); /* ** PUBLIC FUNCTIONs for DST TEST (psi,fe) ----------- */ /* PSI public function*/ DHL_RESULT DHL_PSI_Initialize(void); DHL_RESULT DHL_PSI_Start(void); DHL_RESULT DHL_PSI_Stop(void); /* FE public function */ DHL_RESULT DHL_FE_Initialize(DST_FE_CALLBACK *pCallBackFn); DHL_RESULT DHL_FE_Start2(void); DHL_RESULT DHL_FE_Stop2(void); DHL_RESULT DHL_FE_Tune(DS_U32 uChNo); #if defined __cplusplus } #endif #endif /* _DSTHALTEST_H_ */