OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:max_volume
(Results
1 - 7
of
7
) sorted by null
/external/webrtc/webrtc/modules/audio_device/android/
audio_track_jni.h
81
int MaxSpeakerVolume(uint32_t&
max_volume
) const;
audio_device_unittest.cc
633
uint32_t
max_volume
;
634
EXPECT_EQ(0, audio_device()->MaxSpeakerVolume(&
max_volume
));
635
EXPECT_EQ(0, audio_device()->SetSpeakerVolume(
max_volume
));
674
uint32_t
max_volume
(0);
675
EXPECT_EQ(0, audio_device()->MaxSpeakerVolume(&
max_volume
));
676
return
max_volume
;
818
const int
max_volume
= GetMaxSpeakerVolume();
local
819
EXPECT_EQ(0, audio_device()->SetSpeakerVolume(
max_volume
));
821
EXPECT_EQ(new_volume,
max_volume
);
[
all
...]
audio_track_jni.cc
176
int AudioTrackJni::MaxSpeakerVolume(uint32_t&
max_volume
) const {
179
max_volume
= j_audio_track_->GetStreamMaxVolume();
/external/webrtc/webrtc/voice_engine/
voe_base_impl.cc
708
uint32_t
max_volume
= 0;
local
714
if (shared_->audio_device()->MaxMicrophoneVolume(&
max_volume
) == 0) {
715
if (
max_volume
) {
717
(volume * kMaxVolumeLevel + static_cast<int>(
max_volume
/ 2)) /
718
max_volume
);
728
max_volume
= volume;
758
return static_cast<int>((new_voe_mic_level *
max_volume
+
/external/webrtc/talk/app/webrtc/test/
fakeaudiocapturemodule.h
136
int32_t MaxSpeakerVolume(uint32_t*
max_volume
) const override;
143
int32_t MaxMicrophoneVolume(uint32_t*
max_volume
) const override;
fakeaudiocapturemodule.cc
347
uint32_t* /*
max_volume
*/) const {
383
uint32_t*
max_volume
) const {
384
*
max_volume
= kMaxVolume;
/external/autotest/server/brillo/feedback/
closed_loop_audio_client.py
470
max_volume
= _max_volume(sample_width)
471
peak_min =
max_volume
* peak_percent_min / 100
472
peak_max =
max_volume
* peak_percent_max / 100
Completed in 102 milliseconds