Searched refs:muted (Results 1 - 25 of 30) sorted by relevance

12

/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.h50 // Set the muted and volume/gain properties of a device.
52 bool muted,
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) {
H A Dvideocapturer.h206 virtual bool MuteToBlackThenPause(bool muted);
H A Dhybridvideoengine.h67 virtual bool MuteStream(uint32 ssrc, bool 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/core/html/
H A DMediaController.idl48 attribute boolean muted;
H A DHTMLMediaElement.idl77 attribute boolean muted;
78 [Reflect=muted] attribute boolean defaultMuted;
H A DMediaControllerInterface.h62 virtual bool muted() const = 0;
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.
H A DHTMLMediaElement.h182 bool muted() const;
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DMediaControlElementTypes.cpp147 mediaController()->setMuted(!mediaController()->muted());
161 setDisplayType(mediaController()->muted() ? MediaUnMuteButton : MediaMuteButton);
H A DMediaControlsChromium.cpp197 if (m_mediaController->muted())
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dhangoutpubsubclient.h114 bool muted, std::string* task_id_out = NULL);
116 bool muted, std::string* task_id_out = NULL);
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/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/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/WebKit/Source/core/rendering/
H A DRenderMediaControlsChromium.cpp84 if (mediaElement->muted() || mediaElement->volume() <= 0)
284 if (!hasSource(mediaElement) || !mediaElement->hasAudio() || mediaElement->muted())
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dchannelmanager.h198 bool MuteToBlackThenPause(VideoCapturer* video_capturer, bool muted);
H A Dcall.h104 bool muted() const { return muted_; } function in class:cricket::Call

Completed in 352 milliseconds

12