📄 mmp_types.h
字号:
/******************************************************************************
* Filename : Mmp_types.h
* Start : 2004. 11. 15
* By : Taejin Kwon
* Contact : eric.kwon@samsung.com
* Description :
******************************************************************************
*/
#ifndef _MMP_TYPES_H_
#define _MMP_TYPES_H_
#ifdef __cplusplus
extern "C" {
#endif
/******************************************************************************
* DEFINES
*****************************************************************************/
/******************************************************************************
* DATA TYPES
*****************************************************************************/
typedef enum {
MMP_SYS_MSG_NULL,
MMP_SYS_MSG_EOD,
MMP_SYS_MSG_EOD_JD,
MMP_SYS_MSG_EOF,
MMP_SYS_MSG_HD_READY,
MMP_SYS_MSG_HD_READY_JD,
MMP_SYS_MSG_STOP,
MMP_SYS_MSG_ERROR_PLAY,
MMP_SYS_MSG_ERROR_VIDEO,
MMP_SYS_MSG_ERROR_PLAY_JD,
MMP_SYS_MSG_MARKER,
MMP_SYS_MSG_INTRO_END,
MMP_SYS_MSG_DETACHED,
#if _APP_CAP_FUNC_MMP_MPG_TRICK_PLAY
MMP_MPEG_IPIC_END,
#endif
#if !_APP_CAP_FUNC_MMP_PARSE_ERROR_SKIP
MMP_SYS_MSG_ERROR_PARSING,
#endif
#if _COP_CAPTURE_LOGO_USED //azureming@060612
MMP_SYS_MSG_ENCODE_ERROR,
MMP_SYS_MSG_ENCODE_END,
#endif
/*limeng 060511:for the case that some text ex_subtitle file is larger than 150k */
#if !_APP_CAP_MMP_SUPPORT_EXT_SUBTITLE_FAST_SEARCH
MMP_SYS_MSG_SCRT_NEXTREAD,
MMP_SYS_MSG_SCRT_PREVREAD,
MMP_SYS_MSG_SCRT_ZEROREAD
#else
MMP_SYS_MSG_SCRT_SEARCHREAD
#endif
/*limeng 060511:for the case that some text ex_subtitle file is larger than 150k */
} MmpSysMsgId_et;
typedef struct {
MmpSysMsgId_et eId;
FS_File_t fId;
UINT pId;
} MmpSysMsg_st;
#ifdef __cplusplus
}
#endif
#endif /* _MMP_TYPES_H_ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -