service.h
上传用户:fy98168
上传日期:2015-06-26
资源大小:13771k
文件大小:1k
源码类别:

DVD

开发平台:

C/C++

  1. /*****************************************************************************
  2. File Name  : service.h
  3. Description: service type information (DVB/DSS PAL/NTSC etc.)
  4. Copyright (C) 2004 STMicroelectronics
  5. *****************************************************************************/
  6. /* Define to prevent recursive inclusion */
  7. #ifndef __SERVICE_H
  8. #define __SERVICE_H
  9. /* Includes --------------------------------------------------------------- */
  10. #include "stddefs.h"    /* STAPI includes */
  11. #include "staud.h" //TMTM
  12. #include "sttuner.h"
  13. /* Exported Types ------------------------------------------------------ */
  14. typedef enum _KB_ServiceMode
  15. {
  16.     SERVICE_MODE_NONE,
  17.     SERVICE_MODE_DVB
  18. } KB_ServiceMode;
  19. typedef enum _KB_ServiceDisplay
  20. {
  21.     SERVICE_DISPLAY_NONE,
  22.     SERVICE_DISPLAY_PAL,
  23.     SERVICE_DISPLAY_NTSC,
  24.     SERVICE_DISPLAY_SECAM
  25. } KB_ServiceDisplay;
  26. ST_ErrorCode_t KB_ServiceAUDInitPara  (KB_ServiceMode SERVICE_Mode,
  27.                                         STAUD_InitParams_t *STAUD_InitParams_p,
  28.                                         STAUD_BroadcastProfile_t *STAUD_BroadcastProfile_p );
  29. #endif /* __SERVICE_H */
  30. /* EOF --------------------------------------------------------------------- */