HomeSort by relevance Sort by last modified time
    Searched defs:mute (Results 1 - 19 of 19) sorted by null

  /external/qemu/audio/
mixeng.h 29 struct mixeng_volume { int mute; mixeng_real r; mixeng_real l; }; member in struct:mixeng_volume
32 struct mixeng_volume { int mute; int64_t r; int64_t l; }; member in struct:mixeng_volume
  /external/webkit/Source/WebCore/inspector/
InspectorState.cpp 55 void InspectorState::mute() function in class:WebCore::InspectorState
  /system/media/wilhelm/src/itf/
IMuteSolo.c 22 static SLresult IMuteSolo_SetChannelMute(SLMuteSoloItf self, SLuint8 chan, SLboolean mute)
43 if (mute) {
71 SLboolean mute; local
75 mute = SL_BOOLEAN_FALSE;
78 mute = SL_BOOLEAN_FALSE;
82 mute = (SLboolean) ((mask >> chan) & 1);
86 *pMute = mute;
IVolume.c 78 static SLresult IVolume_SetMute(SLVolumeItf self, SLboolean mute)
83 mute = SL_BOOLEAN_FALSE != mute; // normalize
86 if (oldMute != mute) {
87 thiz->mMute = (SLuint8) mute;
106 SLboolean mute = thiz->mMute; local
108 *pMute = mute;
I3DSource.c 97 static SLresult I3DSource_SetRolloffMaxDistanceMute(SL3DSourceItf self, SLboolean mute)
103 thiz->mRolloffMaxDistanceMute = SL_BOOLEAN_FALSE != mute; // normalize
120 SLboolean mute = thiz->mRolloffMaxDistanceMute; local
122 *pMute = mute;
IOutputMixExt.c 426 /** \brief Called when a gain-related field (mute, solo, volume, stereo position, etc.) updated */
430 SLboolean mute = audioPlayer->mVolume.mMute; local
440 if (mute || !(~muteMask & 3)) {
  /system/media/wilhelm/src/android/
AudioTrackProxy.h 45 void mute(bool muted) function in class:android::AudioTrackProxy
46 { mRaw->mute(muted); }
  /frameworks/base/media/libmedia/
IAudioTrack.cpp 36 MUTE,
76 virtual void mute(bool e) function in class:android::BpAudioTrack
81 remote()->transact(MUTE, data, &reply);
146 case MUTE: {
148 mute( data.readInt32() );
AudioTrack.cpp 460 void AudioTrack::mute(bool e) function in class:android::AudioTrack
462 mAudioTrack->mute(e);
932 audioBuffer->flags = mMuted ? Buffer::MUTE : 0;
    [all...]
  /external/chromium/chrome/browser/chromeos/
audio_mixer_alsa.cc 163 void AudioMixerAlsa::SetMute(bool mute) {
168 // Set volume to minimum on mute, since switching the element off does not
169 // always mute as it should.
172 // switching the element off can be guaranteed to mute it. Currently mute
177 if (old_value != mute) {
178 if (mute) {
186 SetElementMuted_Locked(elem_master_, mute);
187 prefs_->SetInteger(prefs::kAudioMute, mute ? kPrefMuteOn : kPrefMuteOff);
369 // If volume or mute are invalid, set them now to the current actual values
372 bool mute = false; local
378 VLOG(1) << "Setting volume to " << pref_volume << " and mute to " << mute; local
393 int mute = prefs_->GetInteger(prefs::kAudioMute); local
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/
introspect.h 164 * It is also possible to mute a sink or source:
218 int mute; /**< Mute switch of the sink \since 0.8 */ member in struct:pa_sink_info
247 int mute; /**< Mute switch of the sink \since 0.8 */ member in struct:pa_source_info
334 int mute; /**< Stream muted \since 0.9.7 */ member in struct:pa_sink_input_info
376 /** Set the mute switch of a sink device specified by its index \since 0.8 */
377 pa_operation* pa_context_set_sink_mute_by_index(pa_context *c, uint32_t idx, int mute, pa_context_success_cb_t cb, void *userdata);
379 /** Set the mute switch of a sink device specified by its name \since 0.8 */
380 pa_operation* pa_context_set_sink_mute_by_name(pa_context *c, const char *name, int mute, pa_context_success_cb_t cb, void *userdata)
    [all...]
  /external/chromium/chrome/browser/tab_contents/
render_view_context_menu.cc 1266 bool mute = !(params_.media_flags & WebContextMenuData::MediaMuted); local
    [all...]
  /frameworks/base/media/libeffects/lvm/wrapper/Bundle/
EffectBundle.cpp 2352 uint32_t mute; local
    [all...]
  /hardware/msm7k/libaudio-qsd8k/
AudioHardware.cpp 340 uint32_t mute = _mute; local
347 LOGD("Setting mic mute to %d\n", mute);
348 if (ioctl(fd, AUDIO_SET_MUTE, &mute)) {
349 LOGE("Cannot set mic mute on current device\n");
    [all...]
AudioHardware.h 142 uint32_t mute; member in struct:android::msm_mute_info
180 // mic mute
  /external/webkit/Source/WebCore/platform/graphics/gstreamer/
MediaPlayerPrivateGStreamer.cpp 109 // This is called when playbin receives the notify::mute signal.
625 bool mute = false; local
629 // Mute the sound if the playback rate is too extreme.
631 mute = (bool) (rate < 0.8 || rate > 2);
636 mute = true;
646 LOG_VERBOSE(Media, "Need to mute audio: %d", (int) mute);
653 g_object_set(m_playBin, "mute", mute, NULL);
    [all...]
  /frameworks/base/services/audioflinger/
AudioFlinger.h 598 void mute(bool);
761 mute(false),
766 bool mute; member in struct:android::AudioFlinger::PlaybackThread::stream_type_t
    [all...]
AudioFlinger.cpp 698 mStreamTypes[stream].mute = muted;
732 return mStreamTypes[stream].mute;
3641 void AudioFlinger::PlaybackThread::Track::mute(bool muted) function in class:android::AudioFlinger::PlaybackThread::Track
4093 void AudioFlinger::TrackHandle::mute(bool e) { function in class:android::AudioFlinger::TrackHandle
    [all...]
  /frameworks/base/media/java/android/media/
AudioService.java 356 // Call setRingerModeInt() to apply correct mute
664 mStreamStates[stream].mute(cb, state); method
671 mStreamStates[streamType].mute(cb, state); method
675 /** get stream mute state. */
718 // Mute stream if not previously muted by ringer mode and ringer mode
734 mStreamStates[streamType].mute(null, false); method
740 mStreamStates[streamType].mute(null, true); method
1936 public void mute(IBinder cb, boolean state) { method in class:AudioService.VolumeStreamState
1963 public void mute(boolean state) { method in class:AudioService.VolumeStreamState.VolumeDeathHandler
    [all...]

Completed in 727 milliseconds