📄 pm_main.h
字号:
/******************************************************************************
* Filename : PM_main.h
* Start : 2005.1.18
* By : Inseo Han
* Contact : ishan@samsung.com
* Description :
******************************************************************************
*/
#ifndef _PM_MAIN_H_
#define _PM_MAIN_H_
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
/* current play state */
PM_PlayState_et state;
/* flags */
BOOL need_audio_out;
BOOL need_step_dec;
BOOL trick_play;
/* number of field to display for each picture in trick play without audio */
UINT trick_repeat_num;
BOOL video_underflow;
} PM_Info_st;
typedef struct {
/* play parameter */
SH_PlayDirection_et dir;
SH_PlaySpeed_et speed;
SH_PlayFrameMode_et frame_mode;
} PM_PlayConfig_st;
extern SysSema_t gPM_sema_sync;
extern PM_PlayConfig_st gPM_play_config;
extern PM_Info_st gPM_play_info;
VOID pmTask(UNSIGNED argc, VOID *argv );
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -