HomeSort by relevance Sort by last modified time
    Searched full:mute (Results 1 - 25 of 372) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/kernel/common/sound/
tlv.h 31 #define TLV_DB_SCALE_ITEM(min, step, mute) SNDRV_CTL_TLVT_DB_SCALE, 2 * sizeof(unsigned int), (min), ((step) & TLV_DB_SCALE_MASK) | ((mute) ? TLV_DB_SCALE_MUTE : 0)
32 #define DECLARE_TLV_DB_SCALE(name, min, step, mute) unsigned int name[] = { TLV_DB_SCALE_ITEM(min, step, mute) }
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
tlv.h 39 #define TLV_DB_SCALE_ITEM(min, step, mute) \
41 (min), ((step) & 0xffff) | ((mute) ? 0x10000 : 0)
42 #define DECLARE_TLV_DB_SCALE(name, min, step, mute) \
43 unsigned int name[] = { TLV_DB_SCALE_ITEM(min, step, mute) }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
tlv.h 39 #define TLV_DB_SCALE_ITEM(min, step, mute) \
41 (min), ((step) & 0xffff) | ((mute) ? 0x10000 : 0)
42 #define DECLARE_TLV_DB_SCALE(name, min, step, mute) \
43 unsigned int name[] = { TLV_DB_SCALE_ITEM(min, step, mute) }
  /external/kernel-headers/original/sound/
tlv.h 39 #define SNDRV_CTL_TLVT_DB_MINMAX_MUTE 5 /* dB scale with min/max with mute */
43 #define TLV_DB_SCALE_ITEM(min, step, mute) \
45 (min), ((step) & TLV_DB_SCALE_MASK) | ((mute) ? TLV_DB_SCALE_MUTE : 0)
46 #define DECLARE_TLV_DB_SCALE(name, min, step, mute) \
47 unsigned int name[] = { TLV_DB_SCALE_ITEM(min, step, mute) }
  /frameworks/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 79 static SLresult IVolume_SetMute(SLVolumeItf self, SLboolean mute)
84 mute = SL_BOOLEAN_FALSE != mute; // normalize
87 if (oldMute != mute) {
88 thiz->mMute = (SLuint8) mute;
108 SLboolean mute = thiz->mMute; local
110 *pMute = mute;
IMIDIMuteSolo.c 23 SLboolean mute)
33 if (mute)
126 static SLresult IMIDIMuteSolo_SetTrackMute(SLMIDIMuteSoloItf self, SLuint16 track, SLboolean mute)
137 if (mute)
  /external/webkit/Source/WebCore/manual-tests/
media-controls.html 82 description: '<p>Should have "Rewind", "Play", "Mute" buttons, timeline with time current and remaining shown.</p>' +
90 description: '<p>Should have "Rewind", "Play", "Mute" buttons, timeline with time current and remaining shown.</p>' +
98 description: '<p>When hovering over the "Mute" button, a volume control should appear, showing its own "Mute" button and a volume slider.</p>' +
99 '<p>You should be able to control the volume with the slider and mute/unmute using the "Mute" button</p>' +
105 description: '<p>When hovering over the "Mute" button, a volume control should appear, showing its own "Mute" button and a volume slider.</p>' +
106 '<p>You should be able to control the volume with the slider and mute/unmute using the "Mute" button</p>'
    [all...]
media-muted.html 17 // Mute first
  /external/chromium/chrome/browser/chromeos/
audio_mixer.h 48 // Call may block. Gets the mute state of the default device (true == mute).
53 virtual void SetMute(bool mute) = 0;
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...]
audio_mixer_alsa.h 36 virtual void SetMute(bool mute);
39 // Registers volume and mute in preferences
79 // In ALSA, the mixer element's 'switch' is turned off to mute.
82 void SetElementMuted_Locked(_snd_mixer_elem* elem, bool mute);
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/mediacontrol/mutebutton/
mute_button.edc 37 description { state: "mute" 0.0;
50 signal: "mute";
51 action: STATE_SET "mute" 0.0;
  /frameworks/wilhelm/src/
attr.h 21 #define ATTR_INDEX_GAIN 0 // volume: volume, stereo position, mute
22 // mute solo: channel mute, channel solo
  /frameworks/av/include/media/stagefright/
AudioSource.h 63 // After the initial mute, we raise the volume linearly
67 // This is the initial mute duration to suppress
93 // This is used to raise the volume from mute to the
  /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
  /frameworks/av/include/media/
AudioSystem.h 45 // mute/unmute microphone
53 // mute/unmute audio outputs
54 static status_t setMasterMute(bool mute);
55 static status_t getMasterMute(bool* mute);
63 // mute/unmute stream
64 static status_t setStreamMute(audio_stream_type_t stream, bool mute);
65 static status_t getStreamMute(audio_stream_type_t stream, bool* mute);
  /external/sonivox/jet_tools/JetCreator/
JetPreview.py 64 def SetMuteFlag(self, trackNum, mute):
65 """ Sets a mute flag """
69 self.jet.SetMuteFlag(trackNum, mute, sync)
70 logging.info("SetMuteFlag() Track:%d Mute:%d Sync:%d" % (trackNum, mute, sync))
JetCreatorhlp.dat 8 track mutes = Displays the track mute assignments associated with the segment. This is pulled in from the segment attributes.
22 un-mute =
51 track mutes = Checking a mute box will mute the associated track. You should mute a track if you intent to add a trigger event for that track.
102 tracklist = The tracks in the segment currently playing segment display here. Tracks which are muted are checked. Click on a track to toggle its mute status.
  /frameworks/av/media/libmedia/
IAudioTrack.cpp 36 MUTE,
91 virtual void mute(bool e) function in class:android::BpAudioTrack
96 remote()->transact(MUTE, data, &reply);
195 case MUTE: {
197 mute( data.readInt32() );
  /hardware/ti/wpan/tools/FM/service/src/jni/
JFmRxNative.h 51 #define FM_RF_DEPENDENT_MUTE_CTL_NAME "RF Dependent Mute"
110 #define FM_RX_CMD_SET_MUTE_MODE ((FmRxCmdType)6) /* Set Mute mode command */
111 #define FM_RX_CMD_GET_MUTE_MODE ((FmRxCmdType)7) /* Get Mute mode command */
112 #define FM_RX_CMD_SET_RF_DEPENDENT_MUTE_MODE ((FmRxCmdType)8) /* Set RF-Dependent Mute Mode command */
113 #define FM_RX_CMD_GET_RF_DEPENDENT_MUTE_MODE ((FmRxCmdType)9) /* Get RF-Dependent Mute Mode command */
  /external/webkit/Source/WebCore/css/
mediaControls.css 57 audio::-webkit-media-controls-mute-button, video::-webkit-media-controls-mute-button {
58 -webkit-appearance: media-mute-button;
169 audio::-webkit-media-controls-volume-slider-mute-button, video::-webkit-media-controls-volume-slider-mute-button {
170 -webkit-appearance: media-volume-slider-mute-button;
mediaControlsEfl.css 51 audio::-webkit-media-controls-mute-button, video::-webkit-media-controls-mute-button {
52 -webkit-appearance: media-mute-button;
168 audio::-webkit-media-controls-volume-slider-mute-button, video::-webkit-media-controls-volume-slider-mute-button {
169 -webkit-appearance: media-volume-slider-mute-button;
  /frameworks/base/core/jni/
android_media_AudioSystem.cpp 232 android_media_AudioSystem_setMasterMute(JNIEnv *env, jobject thiz, jboolean mute)
234 return check_AudioSystem_Command(AudioSystem::setMasterMute(mute));
240 bool mute; local
241 if (AudioSystem::getMasterMute(&mute) != NO_ERROR) {
242 mute = false;
244 return mute;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
VolumeController.java 65 public void onChanged(ToggleSlider view, boolean tracking, boolean mute, int level) {
67 if (mute) {

Completed in 4773 milliseconds

1 2 3 4 5 6 7 8 91011>>