📄 mapp_audio.h
字号:
#ifndef MAPP_AUDIO_H
#define MAPP_AUDIO_H
///////////////////////////////////////////////////////////////////////////////
//
// File name: MApp_Audio.h
// Version: 1.0
// Date: 2005/7/20
//
// Author: Leo
// Company: MStarSemi Inc.
//
// Description: Audio function
//
///////////////////////////////////////////////////////////////////////////////
#include "DataType.h"
#ifdef MAPP_AUDIO_C
#define INTERFACE
#else
#define INTERFACE extern
#endif
#define MAX_NUM_OF_VOL_LEVEL 100
// calvin 070125 for check scramble(ac3 not exist.)
INTERFACE BOOLEAN bEnableAC3Check;
INTERFACE U32 u32AC3CheckTimer;
INTERFACE U8 u8AC3CheckTimes;
INTERFACE void MApp_Aud_MonitorAc3(void);
// ~calvin 070125, solved scramble->ATV no audio bug.
INTERFACE U8 u8PollingStereo;
INTERFACE void MApp_Aud_Init(void);
INTERFACE void MApp_Aud_DisplayMuteWin(void);
INTERFACE void MApp_Aud_DeleteMuteWin(void);
INTERFACE void MApp_Aud_DisplayVolumeBar(void);
INTERFACE void MApp_Aud_DeleteVolumeBar(void);
INTERFACE BOOLEAN MApp_Aud_IncreaseVolume(void);
INTERFACE BOOLEAN MApp_Aud_DecreaseVolume(void);
INTERFACE BOOLEAN MApp_Aud_GetMuteStatus(void);
INTERFACE void MApp_Aud_EnableMute(BOOLEAN bEnableMute);
INTERFACE void MApp_Aud_MonitorMts(void);
INTERFACE void MApp_Aud_EnablePollingStereo(void);
INTERFACE BOOLEAN MApp_Aud_GetNextAvailableMtsMode(void); // Grace_061220_2 : audio re-setting opt
INTERFACE BOOLEAN MApp_Aud_SetMtsMode(void);
#define ENABLE_MADMONITOR 0
#if ENABLE_MADMONITOR
INTERFACE void MApp_Aud_ReInit(void);
INTERFACE void MAD_Monitor (void);
#endif
#undef INTERFACE
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -