About AudioSystem Mute
2012-02-10 10:33 shaobin0604 阅读(435) 评论(0) 收藏 举报Mute MIC(INPUT)
Java层
android.media.AudioManager void setMicrophoneMute(boolean on) Sets the microphone mute on or off.
C++层
AudioSystem.h
// mute/unmute microphone
static status_t muteMicrophone(bool state);
Mute Stream(OUTPUT)
Java层
android.media.AudioManager public void setStreamMute(int streamType, boolean state);
C++层
AudioSystem.h
// mute/unmute stream
static status_t setStreamMute(int stream, bool mute);
stream 的定义位于 $ANDROID/system/core/include/system/audio.h
浙公网安备 33010602011771号