HomeSort by relevance Sort by last modified time
    Searched refs:volume (Results 426 - 450 of 978) sorted by null

<<11121314151617181920>>

  /external/sonivox/arm-wt-22k/lib_src/
eas_public.c 133 * This routine sets common parameters like transpose, volume, etc.
154 * This routine sets common parameters like transpose, volume, etc.
221 * This routine gets common parameters like transpose, volume, etc.
325 pStream->volume = DEFAULT_STREAM_VOLUME;
828 /* set volume */
830 result = EAS_SetVolume(pEASData, pStream, pStream->volume);
    [all...]
  /device/asus/fugu/libaudio/
audio_hal_thunks.cpp 373 static int adev_set_voice_volume(struct audio_hw_device *dev, float volume)
376 (void) volume;
576 static int adev_set_master_volume(struct audio_hw_device *dev, float volume)
581 return adev->output->setMasterVolume(volume);
585 float *volume)
590 return adev->output->getMasterVolume(volume);
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
drive_banners.js 135 * Invoked when the drive connection status is change in the volume manager.
219 var box = this.document_.querySelector('#volume-space-warning');
459 * @param {VolumeInfo} volumeInfo Volume info to be checked.
495 * @param {VolumeInfo} volume Type of volume, which we are interested in.
499 volume) {
502 switch (volume.volumeType) {
520 if (!volume.fileSystem)
524 volume.volumeId,
528 if (volume !== currentVolume)
    [all...]
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
MediaRouteProviderService.java 256 int controllerId, int volume) {
262 controller.onSetVolume(volume);
264 Log.d(TAG, client + ": Route volume changed"
265 + ", controllerId=" + controllerId + ", volume=" + volume);
283 Log.d(TAG, client + ": Route volume updated"
639 int volume = data.getInt(CLIENT_DATA_VOLUME, -1); local
640 if (volume >= 0) {
642 messenger, requestId, arg, volume);
  /external/chromium_org/content/browser/media/
media_internals.cc 80 virtual void OnSetVolume(int component_id, double volume) OVERRIDE;
145 void AudioLogImpl::OnSetVolume(int component_id, double volume) {
148 dict.SetDouble("volume", volume);
  /external/chromium_org/media/base/android/java/src/org/chromium/media/
MediaPlayerBridge.java 121 protected void setVolume(double volume) {
122 getLocalPlayer().setVolume((float) volume, (float) volume);
  /frameworks/base/tests/RemoteDisplayProvider/src/com/android/media/remotedisplay/test/
RemoteDisplayProviderService.java 48 private RemoteDisplay mTestDisplay1; // variable volume
49 private RemoteDisplay mTestDisplay2; // fixed volume
76 mTestDisplay1.setDescription("Variable volume");
86 mTestDisplay2.setDescription("Fixed volume");
259 public void onSetVolume(RemoteDisplay display, int volume) {
261 + ", volume=" + volume);
264 display.setVolume(Math.max(0, Math.min(display.getVolumeMax(), volume)));
  /hardware/libhardware/modules/audio/
audio_hw.c 281 static int adev_set_voice_volume(struct audio_hw_device *dev, float volume)
286 static int adev_set_master_volume(struct audio_hw_device *dev, float volume)
291 static int adev_get_master_volume(struct audio_hw_device *dev, float *volume)
  /cts/suite/audio_quality/lib/src/audio/
RemoteAudio.cpp 231 bool RemoteAudio::startPlayback(bool stereo, int samplingF, int mode, int volume,
252 handler->getParam().mVolume = volume;
276 bool RemoteAudio::startRecording(bool stereo, int samplingF, int mode, int volume,
290 handler->getParam().mVolume = volume;
  /external/chromium_org/chromeos/audio/
cras_audio_handler.h 38 // Called when output volume changed.
99 // Returns true if the output volume is below the default mute volume level.
102 // Returns volume level in 0-100% range at which the volume should be muted.
105 // Gets volume level in 0-100% range (0 being pure silence) for the current
109 // Gets volume level in 0-100% range (0 being pure silence) for a device.
116 // Gets volume level in 0-100% range (0 being pure silence) for a device.
134 // Sets volume level to |volume_percent|, whose range is from 0-100%.
140 // Adjusts volume up (positive percentage) or down (negative percentage)
    [all...]
  /external/chromium_org/content/browser/renderer_host/media/
audio_input_renderer_host.h 155 // Set the volume of the audio stream referenced by |stream_id|.
156 void OnSetVolume(int stream_id, double volume);
  /external/chromium_org/content/browser/speech/
speech_recognition_manager_impl.h 92 virtual void OnAudioLevelsChange(int session_id, float volume,
  /external/chromium_org/content/renderer/media/android/
renderer_media_player_manager.h 64 // Sets the player volume.
65 void SetVolume(int player_id, double volume);
  /external/chromium_org/content/renderer/media/
webmediaplayer_ms.cc 138 setVolume(GetClient()->volume());
235 void WebMediaPlayerMS::setVolume(double volume) {
239 DVLOG(1) << "WebMediaPlayerMS::setVolume(volume=" << volume << ")";
240 audio_renderer_->SetVolume(volume);
webmediaplayer_ms.h 74 virtual void setVolume(double volume);
  /external/chromium_org/media/audio/android/
audio_record_input.cc 57 // Passing zero as the volume parameter indicates there is no access to a
58 // hardware volume slider.
119 void AudioRecordInputStream::SetVolume(double volume) {
  /external/chromium_org/media/audio/
audio_parameters.h 16 double volume; member in struct:media::AudioInputBufferParameters
  /external/chromium_org/media/base/android/
media_player_bridge.h 66 virtual void SetVolume(double volume) OVERRIDE;
186 // Volume of playback.
  /external/chromium_org/media/filters/
audio_renderer_impl.h 83 virtual void SetVolume(float volume) OVERRIDE;
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
fakeaudiocapturemodule.cc 365 int32_t FakeAudioCaptureModule::SetSpeakerVolume(uint32_t /*volume*/) {
370 int32_t FakeAudioCaptureModule::SpeakerVolume(uint32_t* /*volume*/) const {
399 int32_t FakeAudioCaptureModule::SetMicrophoneVolume(uint32_t volume) {
401 current_mic_level_ = volume;
405 int32_t FakeAudioCaptureModule::MicrophoneVolume(uint32_t* volume) const {
407 *volume = current_mic_level_;
  /external/chromium_org/third_party/libjingle/source/talk/sound/
alsasoundsystem.cc 275 virtual bool GetVolume(int *volume) {
280 virtual bool SetVolume(int volume) {
408 virtual bool GetVolume(int *volume) {
413 virtual bool SetVolume(int volume) {
  /external/chromium_org/third_party/webrtc/examples/android/media_demo/src/org/webrtc/webrtcdemo/
VoiceEngine.java 73 public native int setSpeakerVolume(int volume);
  /external/chromium_org/third_party/webrtc/modules/audio_device/dummy/
file_audio_device.cc 381 int32_t FileAudioDevice::SetSpeakerVolume(uint32_t volume) { return -1; }
383 int32_t FileAudioDevice::SpeakerVolume(uint32_t& volume) const { return -1; }
401 int32_t FileAudioDevice::SetMicrophoneVolume(uint32_t volume) { return -1; }
403 int32_t FileAudioDevice::MicrophoneVolume(uint32_t& volume) const {
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_audio.h 253 * them, performing addition, volume adjustment, and overflow clipping.
254 * The volume ranges from 0 - 128, and should be set to SDL_MIX_MAXVOLUME
255 * for full audio volume. Note this does not change hardware volume.
258 extern DECLSPEC void SDLCALL SDL_MixAudio(Uint8 *dst, const Uint8 *src, Uint32 len, int volume);
  /external/sonivox/arm-fm-22k/host_src/
eas_types.h 244 EAS_U8 volume; /* CC7 */ member in struct:s_midi_controllers_tag

Completed in 1187 milliseconds

<<11121314151617181920>>