OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MaxVolume
(Results
1 - 5
of
5
) sorted by null
/external/qemu/distrib/sdl-1.2.15/src/audio/symbian/
streamplayer.cpp
93
TInt CStreamPlayer::
MaxVolume
() const
101
const TInt maxi =
MaxVolume
();
173
const TReal newMax =
MaxVolume
();
174
const TInt maxVol = iStream->
MaxVolume
();
streamplayer.h
40
TInt
MaxVolume
() const;
/external/chromium_org/content/renderer/media/
webrtc_audio_capturer.h
95
int
MaxVolume
() const;
webrtc_audio_capturer.cc
397
DCHECK_LE(volume,
MaxVolume
());
398
double normalized_volume = static_cast<double>(volume) /
MaxVolume
();
409
int WebRtcAudioCapturer::
MaxVolume
() const {
443
volume_ = static_cast<int>((volume *
MaxVolume
()) + 0.5);
webrtc_audio_capturer_unittest.cc
137
//
MaxVolume
() in WebRtcAudioCapturer is hard-coded to return 255, we add 0.5
139
int expected_volume_value = volume * capturer_->
MaxVolume
() + 0.5;
Completed in 2214 milliseconds