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

1 2 3 4 5 6 7 8 91011>>

  /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;
IMIDIMuteSolo.c 23 SLboolean mute)
33 if (mute)
126 static SLresult IMIDIMuteSolo_SetTrackMute(SLMIDIMuteSoloItf self, SLuint16 track, SLboolean mute)
137 if (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;
  /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;
  /system/media/wilhelm/src/
attr.h 21 #define ATTR_INDEX_GAIN 0 // volume: volume, stereo position, mute
22 // mute solo: channel mute, channel solo
  /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() );
  /frameworks/base/include/media/stagefright/
AudioSource.h 62 // After the initial mute, we raise the volume linearly
66 // This is the initial mute duration to suppress
92 // 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/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
VolumeController.java 54 public void onChanged(ToggleSlider view, boolean tracking, boolean mute, int level) {
56 if (mute) {
  /system/media/wilhelm/src/android/
AudioTrackProxy.h 45 void mute(bool muted) function in class:android::AudioTrackProxy
46 { mRaw->mute(muted); }
  /frameworks/base/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);
61 // mute/unmute stream
62 static status_t setStreamMute(int stream, bool mute);
63 static status_t getStreamMute(int 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.
  /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;
fullscreenQuickTime.css 59 video:-webkit-full-screen::-webkit-media-controls-mute-button {
71 video:-webkit-full-screen::-webkit-media-controls-volume-slider-mute-button {
76 -webkit-appearance: media-mute-button;
96 -webkit-appearance: media-mute-button;
  /frameworks/base/media/java/android/media/
JetPlayer.java 42 * a mask (to change the mute state of multiple tracks at once)</li>
277 * track including trigger clips and mute flags.
306 * track including trigger clips and mute flags.
321 * Modifies the mute flags.
324 * @param sync if false, the new mute flags will be applied as soon as possible by the JET
325 * render and playback engine. If true, the mute flags will be updated at the start of the
328 * @return true if the mute flags were successfully updated, false otherwise.
336 * Modifies the mute flags for the current active segment.
340 * @param sync if false, the new mute flags will be applied as soon as possible by the JET
341 * render and playback engine. If true, the mute flags will be updated at the start of th
    [all...]
  /packages/apps/Phone/res/drawable/
btn_compound_mute.xml 17 <!-- Layers used to render the in-call "Mute" compound button. -->
  /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...]

Completed in 485 milliseconds

1 2 3 4 5 6 7 8 91011>>