pm_main.h
来自「SAMSUNG 5009的源代码」· C头文件 代码 · 共 53 行
H
53 行
/******************************************************************************
* 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 + =
减小字号Ctrl + -
显示快捷键?