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

1 2 3

  /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/webkit/Source/WebCore/platform/graphics/mac/
MediaPlayerProxy.h 101 - (void)_setMuted:(BOOL)muted;
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
FullscreenVideoControllerEfl.h 63 bool muted() const;
FullscreenVideoControllerEfl.cpp 123 bool FullscreenVideoController::muted() const function in class:FullscreenVideoController
  /packages/apps/VideoEditor/src/com/android/videoeditor/service/
MovieAudioTrack.java 235 * @param muted true to mute the audio track
237 void setMute(boolean muted) {
238 mMuted = muted;
242 * @return true if the audio track is muted
249 * @param muted true to mute the audio track
251 public void setAppMute(boolean muted) {
252 mAppMuted = muted;
256 * @return true if the audio track is muted
MovieMediaItem.java 261 * @param muted true to mute the media item
263 void setMute(boolean muted) {
264 mMuted = muted;
268 * @return true if the media item is muted
275 * @param muted true to mute the media item
277 public void setAppMute(boolean muted) {
278 mAppMuted = muted;
282 * @return true if the media item is muted
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
FullscreenVideoController.h 65 bool muted() const;
FullscreenVideoController.cpp 407 bool FullscreenVideoController::muted() const function in class:FullscreenVideoController
409 return m_mediaElement ? m_mediaElement->muted() : false;
433 gtk_scale_button_set_value(GTK_SCALE_BUTTON(m_volumeButton), muted() ? 0 : volume());
  /frameworks/base/media/java/android/media/videoeditor/
AudioTrack.java 110 * @param muted true if the audio track is muted
125 int volume, boolean muted,boolean duckingEnabled,
191 mMuted = muted;
302 * @param muted true to mute the audio track. SetMute(true) will make
305 public void setMute(boolean muted) {
310 mMuted = muted;
314 * Check if the audio track is muted
316 * @return true if the audio track is muted
MediaVideoItem.java 102 * @param muted true if the audio is muted
108 int renderingMode, long beginMs, long endMs, int volumePercent, boolean muted,
186 mMuted = muted;
660 * @param muted true to mute the media item
662 public void setMute(boolean muted) {
664 mMuted = muted;
674 * @return true if the media item is muted
  /external/webkit/Source/WebCore/html/
HTMLMediaElement.idl 77 attribute boolean muted;
HTMLMediaElement.h 144 bool muted() const;
HTMLMediaElement.cpp 1577 bool HTMLMediaElement::muted() const function in class:WebCore::HTMLMediaElement
    [all...]
  /frameworks/av/include/media/
IAudioFlinger.h 101 virtual status_t setMasterMute(bool muted) = 0;
111 virtual status_t setStreamMute(audio_stream_type_t stream, bool muted) = 0;
AudioTrack.h 276 * While muted, the callback, if set, is still called.
279 bool muted() const;
  /external/webkit/Source/WebCore/platform/graphics/
MediaPlayer.cpp 531 bool MediaPlayer::muted() const function in class:WebCore::MediaPlayer
536 void MediaPlayer::setMuted(bool muted)
538 m_muted = muted;
541 m_private->setMuted(muted);
543 m_private->setVolume(muted ? 0 : m_volume);
MediaPlayer.h 236 bool muted() const;
  /external/webkit/Source/WebCore/platform/graphics/qt/
MediaPlayerPrivateQt.cpp 249 m_mediaPlayer->setMuted(element->muted());
401 void MediaPlayerPrivateQt::setMuted(bool muted)
403 m_mediaPlayer->setMuted(muted);
475 void MediaPlayerPrivateQt::mutedChanged(bool muted)
477 m_webCorePlayer->muteChanged(muted);
MediaPlayerPrivatePhonon.cpp 345 void MediaPlayerPrivatePhonon::setMuted(bool muted)
348 m_audioOutput->setMuted(muted);
  /packages/apps/Settings/src/com/android/settings/
RingerVolumePreference.java 115 boolean muted = mAudioManager.isStreamMute(streamType);
124 muted ? SEEKBAR_MUTED_RES_ID[i] : SEEKBAR_UNMUTED_RES_ID[i]);
130 if (streamType != mAudioManager.getMasterStreamType() && muted) {
  /external/chromium/third_party/libjingle/source/talk/session/phone/
call.h 72 bool muted() const { return muted_; } function in class:cricket::Call
  /hardware/libhardware/modules/audio/
audio_hw.c 295 static int adev_set_master_mute(struct audio_hw_device *dev, bool muted)
300 static int adev_get_master_mute(struct audio_hw_device *dev, bool *muted)
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhone.java 307 public void setMute(boolean muted) {
309 foregroundCall.setMute(muted);
496 void setMute(boolean muted) {
498 ((SipConnection) c).setMute(muted);
764 void setMute(boolean muted) {
765 if ((mSipAudioCall != null) && (muted != mSipAudioCall.isMuted())) {
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gstreamer/
MediaPlayerPrivateGStreamer.cpp     [all...]
  /frameworks/av/services/audioflinger/
AudioFlinger.h 122 virtual status_t setMasterMute(bool muted);
129 virtual status_t setStreamMute(audio_stream_type_t stream, bool muted);
    [all...]

Completed in 1348 milliseconds

1 2 3