media_app.h 637 B

1234567891011121314151617181920212223242526
  1. #ifndef _SYSTEM_APPLICATION_FILE_PLAYER_H_
  2. #define _SYSTEM_APPLICATION_FILE_PLAYER_H_
  3. #include <stdio.h>
  4. #include <string.h>
  5. #include <ctype.h>
  6. #include <types.h>
  7. #include "al_fw.h"
  8. #include "AL_Multimedia_Player_IF.h"
  9. typedef struct FilePlayerPrivateData_t_
  10. {
  11. UINT32 dUserData;
  12. }FilePlayerPrivateData_t;
  13. INT32 FILEApp_fw_callback(AFW_event_t event, void *param);
  14. bool SysApp_MM_AL_CallBackFuc(AL_PLAYER_Event_t Event);
  15. void SysApp_MM_VolumeKeyHandler(UINT32 dMessage, UINT8 IsCECKey);
  16. void SysApp_MM_BurninMode_Pause_MediaPlay(void);
  17. #ifdef CONFIG_SUPPORT_PVR
  18. UINT32 SysApp_MM_PVRRec_GetReminderTime2Show(void);
  19. #endif
  20. #endif