HomeSort by relevance Sort by last modified time
    Searched refs:muted (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /external/chromium_org/third_party/libjingle/source/talk/media/base/
fakemediaprocessor.h 60 virtual void OnVoiceMute(uint32 ssrc, bool muted) {}
61 virtual void OnVideoMute(uint32 ssrc, bool muted) {}
hybridvideoengine.cc 131 bool HybridVideoMediaChannel::MuteStream(uint32 ssrc, bool muted) {
134 ret = channel1_->MuteStream(ssrc, muted);
137 ret = channel2_->MuteStream(ssrc, muted);
  /external/chromium_org/chrome/browser/extensions/api/audio/
audio_service.cc 22 bool muted,
49 bool muted,
audio_service.h 50 // Set the muted and volume/gain properties of a device.
52 bool muted,
audio_service_linux.cc 33 bool muted,
76 bool muted,
audio_service_chromeos.cc 35 bool muted,
157 bool muted,
169 cras_audio_handler_->SetMuteForDevice(device.id, muted);
  /packages/apps/InCallUI/src/com/android/incallui/
AudioModeProvider.java 64 public void onAudioModeChange(int newMode, boolean muted) {
72 if (mMuted != muted) {
73 mMuted = muted;
117 void onMute(boolean muted);
ProximitySensor.java 104 public void onMute(boolean muted) {
  /development/ndk/platforms/android-9/samples/native-audio/src/com/example/nativeaudio/
NativeAudio.java 158 boolean muted = false;
160 muted = !muted;
161 setChannelMuteUriAudioPlayer(0, muted);
166 boolean muted = false;
168 muted = !muted;
169 setChannelMuteUriAudioPlayer(1, muted);
190 boolean muted = false;
192 muted = !muted
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaController.idl 51 attribute boolean muted;
HTMLMediaElement.idl 81 attribute boolean muted;
82 [Reflect=muted] attribute boolean defaultMuted;
MediaController.h 75 bool muted() const { return m_muted; } function in class:WebCore::FINAL
  /external/chromium_org/media/audio/android/
audio_manager_android.h 59 void SetMute(JNIEnv* env, jobject obj, jboolean muted);
80 void DoSetMuteOnAudioThread(bool muted);
opensles_output.h 46 void SetMute(bool muted);
audio_manager_android.cc 258 void AudioManagerAndroid::SetMute(JNIEnv* env, jobject obj, jboolean muted) {
264 muted));
378 void AudioManagerAndroid::DoSetMuteOnAudioThread(bool muted) {
382 (*it)->SetMute(muted);
opensles_output.cc 180 void OpenSLESOutputStream::SetMute(bool muted) {
181 DVLOG(2) << "OpenSLESOutputStream::SetMute(" << muted << ")";
183 muted_ = muted;
  /external/chromium_org/media/filters/
audio_renderer_impl_unittest.cc 46 // Constants for distinguishing between muted audio and playing audio when using
324 // |muted| is optional and if passed will get set if the value of
325 // the consumed data is muted audio.
326 bool ConsumeBufferedData(int requested_frames, bool* muted) {
331 if (muted)
332 *muted = true;
336 if (muted)
337 *muted = frames_read < 1 || bus->channel(0)[0] == kMutedAudio;
589 bool muted = false; local
591 EXPECT_FALSE(ConsumeBufferedData(kDataSize, &muted));
677 bool muted = false; local
713 bool muted = false; local
    [all...]
  /frameworks/base/telephony/java/com/android/ims/internal/
IImsCallSession.aidl 91 * @param muted true if the call is muted, false otherwise
93 void setMute(boolean muted);
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Conversation.java 111 * @see UIProvider.ConversationColumns#MUTED
113 public final boolean muted; field in class:Conversation
194 dest.writeInt(muted ? 1 : 0);
220 muted = in.readInt() != 0;
298 muted = cursor.getInt(UIProvider.CONVERSATION_MUTED_COLUMN) != 0;
337 muted = other.muted;
354 boolean spam, boolean phishing, boolean muted, Uri accountUri,
376 this.muted = muted;
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_device/mac/
audio_mixer_manager_mac.cc 592 UInt32 muted = 0; local
602 size = sizeof(muted);
604 &propertyAddress, 0, NULL, &size, &muted));
606 // 1 means muted
607 enabled = static_cast<bool> (muted);
610 // Otherwise check if all channels are muted.
613 muted = 0;
623 muted = (muted && channelMuted);
636 // 1 means muted
792 UInt32 muted = 0; local
    [all...]
  /device/asus/fugu/libaudio/
AudioHardwareOutput.cpp 193 status_t AudioHardwareOutput::setMasterMute(bool muted)
198 mSettings.masterMute = muted;
207 status_t AudioHardwareOutput::getMasterMute(bool* muted) {
208 if (NULL == muted)
214 *muted = mSettings.masterMute;
  /external/chromium_org/third_party/webrtc/voice_engine/test/cmd_test/
voe_cmd_test.cc 233 bool muted = false; local
614 res = volume->GetInputMute(chan, muted);
616 muted = !muted;
617 res = volume->SetInputMute(chan, muted);
619 if (muted)
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/media/
player_testapi.js 106 * Respond with a boolean, true if the volume is muted.
113 * Mute the volume. No-op if already muted.
121 * Unmute the volume. No-op if not muted.
  /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.
  /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...]

Completed in 857 milliseconds

1 2 3 4