HomeSort by relevance Sort by last modified time
    Searched refs:muted (Results 26 - 50 of 95) sorted by null

12 3 4

  /external/chromium_org/media/audio/android/
opensles_output.cc 180 void OpenSLESOutputStream::SetMute(bool muted) {
181 DVLOG(2) << "OpenSLESOutputStream::SetMute(" << muted << ")";
183 muted_ = muted;
  /external/chromium_org/media/audio/mac/
audio_low_latency_input_mac.cc 468 UInt32 muted = 0; local
469 UInt32 size = sizeof(muted);
471 input_device_id_, &property_address, 0, NULL, &size, &muted);
473 return result == noErr && muted != 0;
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
hangoutpubsubclient.cc 222 bool muted, std::string* task_id_out) {
223 audio_mute_state_client_->Publish(nick_, muted, task_id_out);
227 bool muted, std::string* task_id_out) {
228 video_mute_state_client_->Publish(nick_, muted, task_id_out);
272 // mute state, if our state changes to muted, we should mute ourselves.
hangoutpubsubclient.h 91 bool muted, std::string* task_id_out = NULL);
93 bool muted, std::string* task_id_out = NULL);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhone.java 347 public void setMute(boolean muted) {
349 mForegroundCall.setMute(muted);
594 void setMute(boolean muted) {
595 if (SC_DBG) log("setMute: muted=" + muted);
597 ((SipConnection) c).setMute(muted);
883 void setMute(boolean muted) {
884 if ((mSipAudioCall != null) && (muted != mSipAudioCall.isMuted())) {
885 if (SCN_DBG) log("setState: prev muted=" + !muted + " new muted=" + muted)
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/
ProximitySensor.java 104 public void onMute(boolean muted) {
CallButtonPresenter.java 148 public void onMute(boolean muted) {
150 getUi().setMute(muted);
  /frameworks/av/include/media/
IAudioFlinger.h 111 virtual status_t setMasterMute(bool muted) = 0;
121 virtual status_t setStreamMute(audio_stream_type_t stream, bool muted) = 0;
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videocapturer.cc 51 // frames. Frontends should coordinate to update the video state of a muted
205 LOG(LS_WARNING) << "Camera cannot be unpaused while muted.";
231 bool VideoCapturer::MuteToBlackThenPause(bool muted) {
232 if (muted == IsMuted()) {
236 LOG(LS_INFO) << (muted ? "Muting" : "Unmuting") << " this video capturer.";
237 muted_ = muted; // Do this before calling Pause().
238 if (muted) {
412 // TODO(fbarchard): Avoid scale and convert if muted.
videocapturer.h 210 virtual bool MuteToBlackThenPause(bool muted);
  /external/chromium_org/third_party/webrtc/modules/audio_device/test/
func_test_manager.cc 228 bool muted(false);
229 EXPECT_EQ(0, _audioDevice->MicrophoneMute(&muted));
230 muted = !muted;
231 EXPECT_EQ(0, _audioDevice->SetMicrophoneMute(muted));
232 if (muted)
489 bool muted(false);
490 EXPECT_EQ(0, _audioDevice->SpeakerMute(&muted));
491 muted = !muted;
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
VolumePanel.java 748 private void updateSliderIcon(StreamControl sc, boolean muted) {
759 muted = ringerMode == AudioManager.RINGER_MODE_VIBRATE;
761 muted = false;
766 : muted ? sc.iconMuteRes
    [all...]
  /device/asus/fugu/libaudio/
audio_hal_thunks.cpp 593 static int adev_set_master_mute(struct audio_hw_device *dev, bool muted)
598 return adev->output->setMasterMute(muted);
602 bool *muted)
607 return adev->output->getMasterMute(muted);
  /external/chromium_org/content/test/data/media/
webrtc_test_audio.js 25 // Queries WebRTC stats on |peerConnection| to find out whether audio is muted
111 // If silent (like when muted), we should get very near zero audio level.
  /external/chromium_org/third_party/webrtc/modules/audio_processing/
audio_processing_impl.h 103 virtual void set_output_will_be_muted(bool muted) OVERRIDE;
  /hardware/libhardware_legacy/include/hardware_legacy/
AudioHardwareInterface.h 282 virtual status_t setMasterMute(bool muted) = 0;
  /hardware/qcom/audio/hal/
audio_hw.h 136 bool muted; member in struct:stream_out
  /hardware/libhardware/modules/audio/
audio_hw.c 296 static int adev_set_master_mute(struct audio_hw_device *dev, bool muted)
301 static int adev_get_master_mute(struct audio_hw_device *dev, bool *muted)
  /external/chromium_org/third_party/webrtc/modules/audio_device/
audio_device_impl.cc 897 bool muted(false);
899 if (_ptrAudioDevice->SpeakerMute(muted) == -1)
904 *enabled = muted;
949 bool muted(false);
951 if (_ptrAudioDevice->MicrophoneMute(muted) == -1)
956 *enabled = muted;
    [all...]
  /external/chromium_org/third_party/webrtc/voice_engine/test/cmd_test/
voe_cmd_test.cc 233 bool muted = false; local
616 res = volume->GetInputMute(chan, muted);
618 muted = !muted;
619 res = volume->SetInputMute(chan, muted);
621 if (muted)
  /external/chromium_org/third_party/webrtc/modules/audio_device/linux/
audio_device_alsa_linux.cc 473 bool muted(0);
475 if (_mixerManager.SpeakerMute(muted) == -1)
480 enabled = muted;
530 bool muted(0);
532 if (_mixerManager.MicrophoneMute(muted) == -1)
537 enabled = muted;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMediaControls.cpp 84 if (mediaElement->muted() || mediaElement->volume() <= 0)
282 if (!hasSource(mediaElement) || !mediaElement->hasAudio() || mediaElement->muted())
  /frameworks/opt/net/ims/src/java/com/android/ims/internal/
ImsCallSession.java 604 * @param muted true if the call is muted, false otherwise
606 public void setMute(boolean muted) {
612 miSession.setMute(muted);
    [all...]
  /device/htc/flounder/audio/hal/
audio_hw.h 281 bool muted; member in struct:stream_out
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
channelmanager.h 202 bool MuteToBlackThenPause(VideoCapturer* video_capturer, bool muted);

Completed in 3566 milliseconds

12 3 4