Searched refs:volume (Results 26 - 50 of 161) sorted by relevance

1234567

/external/webrtc/talk/app/webrtc/
H A Drtpreceiver.cc61 void AudioRtpReceiver::OnSetVolume(double volume) { argument
62 // When the track is disabled, the volume of the source, which is the
64 // setting the volume to the source when the track is disabled.
66 provider_->SetAudioPlayoutVolume(ssrc_, volume);
H A Dmediastreamprovider.h69 // Sets the audio playout volume of a remote audio track with |ssrc|.
70 // |volume| is in the range of [0, 10].
71 virtual void SetAudioPlayoutVolume(uint32_t ssrc, double volume) = 0;
H A Dremoteaudiosource.cc114 void RemoteAudioSource::SetVolume(double volume) { argument
115 RTC_DCHECK(volume >= 0 && volume <= 10);
117 observer->OnSetVolume(volume);
/external/webrtc/webrtc/modules/audio_device/android/
H A Dopensles_player.h77 int SetSpeakerVolume(uint32_t volume);
78 int SpeakerVolume(uint32_t& volume) const;
114 // Also creates the volume object.
183 // supports volume control.
195 // This interface exposes controls for manipulating the object’s audio volume
H A Daudio_track_jni.cc58 bool AudioTrackJni::JavaAudioTrack::SetStreamVolume(int volume) { argument
59 return audio_track_->CallBooleanMethod(set_stream_volume_, volume);
170 int AudioTrackJni::SetSpeakerVolume(uint32_t volume) { argument
171 ALOGD("SetSpeakerVolume(%d)%s", volume, GetThreadInfo().c_str());
173 return j_audio_track_->SetStreamVolume(volume) ? 0 : -1;
190 int AudioTrackJni::SpeakerVolume(uint32_t& volume) const {
193 volume = j_audio_track_->GetStreamVolume();
/external/webrtc/webrtc/voice_engine/
H A Ddtmf_inband.h54 int16_t volume,
65 int16_t volume,
/external/webrtc/webrtc/modules/audio_device/linux/
H A Daudio_mixer_manager_pulse_linux.cc238 uint32_t volume)
242 "AudioMixerManagerLinuxPulse::SetSpeakerVolume(volume=%u)",
243 volume);
257 // We can only really set the volume if we have a connected stream
270 // Set the same volume for all channels
272 LATE(pa_cvolume_set)(&cVolumes, spec->channels, volume);
290 // Save the volume to be set at connection
291 _paSpeakerVolume = volume;
297 " could not set speaker volume, error%d",
307 AudioMixerManagerLinuxPulse::SpeakerVolume(uint32_t& volume) cons
237 SetSpeakerVolume( uint32_t volume) argument
780 SetMicrophoneVolume(uint32_t volume) argument
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DMovieHeaderBox.java41 private float volume = 1.0f; field in class:MovieHeaderBox
80 return volume;
117 volume = IsoTypeReader.readFixedPoint88(content);
150 result.append("volume=").append(getVolume());
177 IsoTypeWriter.writeFixedPont88(byteBuffer, volume);
219 public void setVolume(float volume) { argument
220 this.volume = volume;
H A DTrackHeaderBox.java45 private float volume; field in class:TrackHeaderBox
81 return volume;
127 volume = IsoTypeReader.readFixedPoint88(content);
156 IsoTypeWriter.writeFixedPont88(byteBuffer, volume);
180 result.append("volume=").append(getVolume());
217 public void setVolume(float volume) { argument
218 this.volume = volume;
/external/webrtc/talk/media/webrtc/
H A Dwebrtcvoe.h103 webrtc::VoEVolumeControl* volume)
111 volume_(volume) {
121 webrtc::VoEVolumeControl* volume() const { return volume_.get(); } function in class:cricket::VoEWrapper
97 VoEWrapper(webrtc::VoEAudioProcessing* processing, webrtc::VoEBase* base, webrtc::VoECodec* codec, webrtc::VoEHardware* hw, webrtc::VoENetwork* network, webrtc::VoERTP_RTCP* rtp, webrtc::VoEVolumeControl* volume) argument
/external/autotest/client/cros/multimedia/
H A Daudio_facade_native.py72 def set_chrome_active_volume(self, volume):
73 """Sets the active audio output volume using chrome.audio API.
75 @param volume: Volume to set (0~100).
78 self._extension_handler.set_active_volume(volume)
91 """Gets the volume state of active audio output using chrome.audio API.
93 @param returns: A tuple (volume, mute), where volume is 0~100, and mute
212 def set_selected_output_volume(self, volume):
213 """Sets the selected output volume.
215 @param volume
[all...]
/external/kernel-headers/original/uapi/linux/caif/
H A Dcaif_socket.h129 * @u.rfm.volume: Volume to mount.
156 char volume[16]; member in struct:sockaddr_caif::__anon7757::__anon7761
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_data.h77 EAS_U8 volume; member in struct:s_eas_stream_tag
81 /* default master volume is -10dB */
H A Deas_pcm.h52 EAS_I16 volume; member in struct:s_pcm_open_params_tag
169 * Update the pitch and volume parameters using MIDI controls
202 * Update the volume parameters for a PCM stream
221 EAS_RESULT EAS_PEUpdateVolume (EAS_DATA_HANDLE pEASData, EAS_PCM_HANDLE pState, EAS_I16 volume);
/external/webrtc/webrtc/modules/audio_device/dummy/
H A Daudio_device_dummy.cc106 int32_t AudioDeviceDummy::SetSpeakerVolume(uint32_t volume) { return -1; } argument
108 int32_t AudioDeviceDummy::SpeakerVolume(uint32_t& volume) const { return -1; }
126 int32_t AudioDeviceDummy::SetMicrophoneVolume(uint32_t volume) { return -1; } argument
128 int32_t AudioDeviceDummy::MicrophoneVolume(uint32_t& volume) const {
H A Daudio_device_dummy.h83 // Speaker volume controls
85 int32_t SetSpeakerVolume(uint32_t volume) override;
86 int32_t SpeakerVolume(uint32_t& volume) const override;
91 // Microphone volume controls
93 int32_t SetMicrophoneVolume(uint32_t volume) override;
94 int32_t MicrophoneVolume(uint32_t& volume) const override;
/external/webrtc/webrtc/modules/audio_device/win/
H A Daudio_mixer_manager_win.h56 int32_t SetSpeakerVolume(uint32_t volume);
57 int32_t SpeakerVolume(uint32_t& volume) const;
72 int32_t SetMicrophoneVolume(uint32_t volume);
73 int32_t MicrophoneVolume(uint32_t& volume) const;
/external/webrtc/webrtc/modules/audio_device/ios/
H A Daudio_device_not_implemented_ios.mm60 int32_t AudioDeviceIOS::SetSpeakerVolume(uint32_t volume) {
65 int32_t AudioDeviceIOS::SpeakerVolume(uint32_t& volume) const {
220 int32_t AudioDeviceIOS::SetMicrophoneVolume(uint32_t volume) {
225 int32_t AudioDeviceIOS::MicrophoneVolume(uint32_t& volume) const {
/external/autotest/client/cros/audio/
H A Dcras_utils.py131 def set_system_volume(volume):
132 """Set the system volume.
134 @param volume: the system output vlume to be set(0 - 100).
137 get_cras_control_interface().SetOutputVolume(volume)
140 def set_node_volume(node_id, volume):
141 """Set the volume of the given output node.
143 @param node_id: the id of the output node to be set the volume.
144 @param volume: the volume to be set(0-100).
147 get_cras_control_interface().SetOutputNodeVolume(node_id, volume)
[all...]
/external/lzma/CPP/7zip/Archive/7z/
H A D7zExtract.cpp69 const CVolume &volume = _volumes.Front();
70 const CDbEx &_db = volume.Database;
71 IInStream *_inStream = volume.Stream;
88 const CVolume &volume = _volumes[volumeIndex]; local
89 const CDbEx &db = volume.Database;
175 const CVolume &volume = _volumes[efi.VolumeIndex]; local
176 const CDbEx &db = volume.Database;
189 volume.StartRef2Index,
220 volume.Stream,
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
H A DTerminalManager.java219 float volume =
230 mediaPlayer.setVolume(volume, volume);
278 float volume =
281 mediaPlayer.setVolume(volume, volume);
/external/sonic/
H A DSonic.java23 private float volume; field in class:Sonic
79 float volume)
81 int fixedPointVolume = (int)(volume*4096.0f);
166 return volume;
171 float volume)
173 this.volume = volume;
206 volume = 1.0f;
628 // Overlap two sound segments, ramp the volume of one down, while ramping the
653 // Overlap two sound segments, ramp the volume o
75 scaleSamples( short samples[], int position, int numSamples, float volume) argument
170 setVolume( float volume) argument
946 changeFloatSpeed( float samples[], int numSamples, float speed, float pitch, float rate, float volume, boolean useChordPitch, int sampleRate, int numChannels) argument
972 sonicChangeShortSpeed( short samples[], int numSamples, float speed, float pitch, float rate, float volume, boolean useChordPitch, int sampleRate, int numChannels) argument
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/pyami/installers/ubuntu/
H A Debs.py23 Automated installer to attach, format and mount an EBS volume.
24 This installer assumes that you want the volume formatted as
38 volume_id = <the id of the EBS volume, should look like vol-xxxxxxxx>
39 logical_volume_name = <the name of the logical volume that contaings
40 a reference to the physical volume to be mounted. If this parameter
42 device = <the linux device the EBS volume should be mounted on>
47 from boto.manage.volume import Volume
54 # Backup EBS volume
82 from boto.manage.volume import Volume
115 # if a logical volume wa
[all...]
/external/autotest/server/site_tests/audio_AudioNodeSwitch/
H A Daudio_AudioNodeSwitch.py47 """Sets Chrome volume to the specified volume of node.
56 """Checks the active node type and checks if its volume is as expected.
60 @raises: TestFail if node volume is not as expected.
65 # Checks if active volume is the node volume.
66 volume, mute = self.audio_facade.get_chrome_active_volume_mute()
68 if volume != expected_volume:
70 'Node %s volume %d != %d' % (node, volume, expected_volum
[all...]
/external/libweave/examples/daemon/speaker/
H A Dspeaker.cc35 "volume": {
40 "volume": {
54 "volume": {
77 CHECK(device->AddComponent(kComponent, {"onOff", "volume"}, nullptr));
83 device->AddCommandHandler(kComponent, "volume.setConfig",
96 // Handle volume parameter
98 if (params.GetInteger("volume", &volume_value)) {
100 LOG(INFO) << cmd->GetName() << " volume: " << volume_value;
153 state.SetBoolean("volume.isMuted", isMuted_status_);
154 state.SetInteger("volume
[all...]

Completed in 739 milliseconds

1234567