Searched defs:muted (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/chrome/browser/extensions/api/audio/
H A Daudio_service.cc22 bool muted,
49 bool muted,
48 SetDeviceProperties(const std::string& device_id, bool muted, int volume, int gain) argument
H A Daudio_service_chromeos.cc38 bool muted,
138 bool muted,
150 cras_audio_handler_->SetMuteForDevice(device.id, muted);
137 SetDeviceProperties(const std::string& device_id, bool muted, int volume, int gain) argument
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dfakemediaprocessor.h60 virtual void OnVoiceMute(uint32 ssrc, bool muted) {} argument
61 virtual void OnVideoMute(uint32 ssrc, bool muted) {} argument
H A Dhybridvideoengine.cc131 bool HybridVideoMediaChannel::MuteStream(uint32 ssrc, bool muted) { argument
134 ret = channel1_->MuteStream(ssrc, muted);
137 ret = channel2_->MuteStream(ssrc, muted);
H A Dvideocapturer.cc50 // frames. Frontends should coordinate to update the video state of a muted
175 LOG(LS_WARNING) << "Camera cannot be unpaused while muted.";
201 bool VideoCapturer::MuteToBlackThenPause(bool muted) { argument
202 if (muted == IsMuted()) {
206 LOG(LS_INFO) << (muted ? "Muting" : "Unmuting") << " this video capturer.";
207 muted_ = muted; // Do this before calling Pause().
208 if (muted) {
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Dcall.h72 bool muted() const { return muted_; } function in class:cricket::Call
H A Dchannel.h144 bool muted() const { return muted_; } function in class:cricket::BaseChannel
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DMediaController.h79 virtual bool muted() const { return m_muted; } function in class:WebCore::MediaController
H A DHTMLMediaElement.cpp2388 bool HTMLMediaElement::muted() const function in class:WebCore::HTMLMediaElement
2393 void HTMLMediaElement::setMuted(bool muted) argument
2395 LOG(Media, "HTMLMediaElement::setMuted(%s)", boolString(muted));
2397 if (m_muted != muted) {
2398 m_muted = muted;
3326 shouldMute = m_mediaController->muted();
3362 // Set rate, muted before calling play in case they were set before the media engine was setup.
3363 // The media engine should just stash the rate and muted values since it isn't already playing.
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dcall.h104 bool muted() const { return muted_; } function in class:cricket::Call
H A Dchannelmanager.cc802 VideoCapturer* video_capturer, bool muted) {
807 Bind(&VideoCapturer::MuteToBlackThenPause, video_capturer, muted));
801 MuteToBlackThenPause( VideoCapturer* video_capturer, bool muted) argument
H A Dchannel_unittest.cc565 void OnMediaMuted(cricket::BaseChannel* channel, bool muted) { argument
567 mute_callback_value_ = muted;
/external/chromium_org/media/filters/
H A Daudio_renderer_impl_unittest.cc40 // Constants for distinguishing between muted audio and playing audio when using
237 // |muted| is optional and if passed will get set if the value of
238 // the consumed data is muted audio.
239 bool ConsumeBufferedData(uint32 requested_frames, bool* muted) { argument
244 if (muted)
245 *muted = frames_read < 1 || bus->channel(0)[0] == kMutedAudio;
453 bool muted = false; local
455 EXPECT_FALSE(ConsumeBufferedData(kDataSize, &muted));
456 EXPECT_TRUE(muted);
458 // Deliver data, we should get non-muted audi
490 bool muted = false; local
525 bool muted = false; local
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebMediaPlayerClientImpl.cpp440 void WebMediaPlayerClientImpl::setMuted(bool muted) argument
442 m_muted = muted;
444 m_webMediaPlayer->setVolume(muted ? 0 : m_volume);
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dhangoutpubsubclient.cc448 bool muted, std::string* task_id_out) {
449 audio_mute_state_client_->Publish(nick_, muted, task_id_out);
453 bool muted, std::string* task_id_out) {
454 video_mute_state_client_->Publish(nick_, muted, task_id_out);
498 // mute state, if our state changes to muted, we should mute ourselves.
447 PublishAudioMuteState( bool muted, std::string* task_id_out) argument
452 PublishVideoMuteState( bool muted, std::string* task_id_out) argument
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcvoiceengine.cc2652 bool WebRtcVoiceMediaChannel::MuteStream(uint32 ssrc, bool muted) { argument
2658 if (engine()->voe()->volume()->SetInputMute(channel, muted) == -1) {
2659 LOG_RTCERR2(SetInputMute, channel, muted);
H A Dwebrtcvideoengine.cc500 bool muted() {return muted_; } function in class:cricket::WebRtcVideoChannelSendInfo
2361 bool WebRtcVideoMediaChannel::MuteStream(uint32 ssrc, bool muted) { argument
2367 send_channel->set_muted(muted);
2690 const bool mute = (send_channel->muted() && !is_screencast);

Completed in 508 milliseconds