HomeSort by relevance Sort by last modified time
    Searched refs:muted (Results 1 - 25 of 56) 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 99 virtual status_t setMasterMute(bool muted) = 0;
109 virtual status_t setStreamMute(audio_stream_type_t stream, bool muted) = 0;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhone.java 345 public void setMute(boolean muted) {
347 mForegroundCall.setMute(muted);
591 void setMute(boolean muted) {
592 if (SC_DBG) log("setMute: muted=" + muted);
594 ((SipConnection) c).setMute(muted);
880 void setMute(boolean muted) {
881 if ((mSipAudioCall != null) && (muted != mSipAudioCall.isMuted())) {
882 if (SCN_DBG) log("setState: prev muted=" + !muted + " new muted=" + muted)
    [all...]
  /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);
125 muted ? SEEKBAR_MUTED_RES_ID[i] : SEEKBAR_UNMUTED_RES_ID[i]);
131 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
  /frameworks/av/services/audioflinger/
Threads.h 376 void setMasterMute(bool muted);
379 void setStreamMute(audio_stream_type_t stream, bool muted);
450 // PlaybackThread needs to find out if master-muted, it checks it's local
453 void setMasterMute_l(bool muted) { mMasterMute = muted; }
    [all...]
  /hardware/qcom/audio/hal/
audio_hw.h 181 bool muted; member in struct:stream_out
  /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)
  /external/webkit/Source/WebCore/platform/graphics/gstreamer/
MediaPlayerPrivateGStreamer.cpp     [all...]

Completed in 672 milliseconds

1 2 3