Skip to content
Snippets Groups Projects
Commit 1c3f457e authored by Tristan Matthews's avatar Tristan Matthews
Browse files

* #29271: audio: gain should only ever be in range [-1, 1]

parent 0c721afd
No related branches found
No related tags found
No related merge requests found
...@@ -28,8 +28,8 @@ ...@@ -28,8 +28,8 @@
* as that of the covered work. * as that of the covered work.
*/ */
#include <iostream>
#include "audiobuffer.h" #include "audiobuffer.h"
#include "logger.h"
AudioBuffer::AudioBuffer(size_t sample_num, unsigned channel_num /* = 1 */, int sample_rate /* = 8000 */) AudioBuffer::AudioBuffer(size_t sample_num, unsigned channel_num /* = 1 */, int sample_rate /* = 8000 */)
: sampleRate_(sample_rate), : sampleRate_(sample_rate),
...@@ -102,19 +102,17 @@ std::vector<SFLAudioSample> * AudioBuffer::getChannel(unsigned chan /* = 0 */) ...@@ -102,19 +102,17 @@ std::vector<SFLAudioSample> * AudioBuffer::getChannel(unsigned chan /* = 0 */)
return NULL; return NULL;
} }
void AudioBuffer::applyGain(unsigned int gain)
{
if (gain != 100)
applyGain(gain * 0.01);
}
void AudioBuffer::applyGain(double gain) void AudioBuffer::applyGain(double gain)
{ {
if (gain == 1.0) return; if (gain == 1.0) return;
for (unsigned i = 0; i < samples_.size(); i++) const double g = std::max(std::min(1.0, gain), -1.0);
for (unsigned j = 0; j < samples_[0].size(); j++) if (g != gain)
samples_[i][j] *= gain; WARN("Normalizing %f to [-1.0, 1.0]", gain);
for (auto &channel : samples_)
for (auto &sample : channel)
sample *= g;
} }
size_t AudioBuffer::interleave(SFLAudioSample* out) const size_t AudioBuffer::interleave(SFLAudioSample* out) const
......
...@@ -153,13 +153,6 @@ class AudioBuffer { ...@@ -153,13 +153,6 @@ class AudioBuffer {
*/ */
void deinterleave(const SFLAudioSample* in, size_t sample_num, unsigned channel_num = 1); void deinterleave(const SFLAudioSample* in, size_t sample_num, unsigned channel_num = 1);
/**
* In-place gain transformation with integer parameter.
*
* @param gain: 0 -> 100 scale
*/
void applyGain(unsigned int gain);
/** /**
* In-place gain transformation. * In-place gain transformation.
* *
......
...@@ -36,8 +36,8 @@ ...@@ -36,8 +36,8 @@
#include "scoped_lock.h" #include "scoped_lock.h"
AudioLayer::AudioLayer() AudioLayer::AudioLayer()
: captureGain_(100) : captureGain_(1.0)
, playbackGain_(100) , playbackGain_(1.0)
, isStarted_(false) , isStarted_(false)
, playbackMode_(NONE) , playbackMode_(NONE)
, urgentRingBuffer_(SIZEBUF, MainBuffer::DEFAULT_ID) , urgentRingBuffer_(SIZEBUF, MainBuffer::DEFAULT_ID)
...@@ -96,7 +96,7 @@ void AudioLayer::notifyIncomingCall() ...@@ -96,7 +96,7 @@ void AudioLayer::notifyIncomingCall()
Tone tone("440/160", getSampleRate()); Tone tone("440/160", getSampleRate());
unsigned int nbSample = tone.getSize(); unsigned int nbSample = tone.getSize();
AudioBuffer buf(nbSample); AudioBuffer buf(nbSample);
tone.getNext(buf); tone.getNext(buf, 1.0);
/* Put the data in the urgent ring buffer */ /* Put the data in the urgent ring buffer */
flushUrgent(); flushUrgent();
......
...@@ -137,45 +137,33 @@ class AudioLayer { ...@@ -137,45 +137,33 @@ class AudioLayer {
*/ */
void flushUrgent(); void flushUrgent();
/**
* Convert audio amplitude value from linear value to dB
*/
static double amplitudeLinearToDB(double value) {
return 20.0 * log10(value);
}
/**
* Convert audio amplitude from dB to Linear value
*/
static double ampluitudeDBToLinear(double value) {
return pow(10.0, value / 20.0);
}
/** /**
* Set capture stream gain (microphone) * Set capture stream gain (microphone)
* Range should be [-1.0, 1.0]
*/ */
void setCaptureGain(unsigned int gain) { void setCaptureGain(double gain) {
captureGain_ = gain; captureGain_ = gain;
} }
/** /**
* Set capture stream gain (microphone) * Set capture stream gain (microphone)
*/ */
unsigned int getCaptureGain() const { double getCaptureGain() const {
return captureGain_; return captureGain_;
} }
/** /**
* Set playback stream gain (speaker) * Set playback stream gain (speaker)
* Range should be [-1.0, 1.0]
*/ */
void setPlaybackGain(unsigned int gain) { void setPlaybackGain(double gain) {
playbackGain_ = gain; playbackGain_ = gain;
} }
/** /**
* Get playback stream gain (speaker) * Get playback stream gain (speaker)
*/ */
unsigned int getPlaybackGain() const { double getPlaybackGain() const {
return playbackGain_; return playbackGain_;
} }
...@@ -200,12 +188,12 @@ class AudioLayer { ...@@ -200,12 +188,12 @@ class AudioLayer {
/** /**
* Gain applied to mic signal * Gain applied to mic signal
*/ */
unsigned int captureGain_; double captureGain_;
/** /**
* Gain applied to playback signal * Gain applied to playback signal
*/ */
unsigned int playbackGain_; double playbackGain_;
/** /**
* Whether or not the audio layer stream is started * Whether or not the audio layer stream is started
......
...@@ -62,7 +62,7 @@ AudioLoop::seek(double relative_position) ...@@ -62,7 +62,7 @@ AudioLoop::seek(double relative_position)
} }
void void
AudioLoop::getNext(AudioBuffer& output, unsigned int volume) AudioLoop::getNext(AudioBuffer& output, double gain)
{ {
if (!buffer_) { if (!buffer_) {
ERROR("buffer is NULL"); ERROR("buffer is NULL");
...@@ -93,7 +93,7 @@ AudioLoop::getNext(AudioBuffer& output, unsigned int volume) ...@@ -93,7 +93,7 @@ AudioLoop::getNext(AudioBuffer& output, unsigned int volume)
total_samples -= samples; total_samples -= samples;
} }
output.applyGain(volume); // apply volume output.applyGain(gain);
pos_ = pos; pos_ = pos;
......
...@@ -54,9 +54,9 @@ class AudioLoop { ...@@ -54,9 +54,9 @@ class AudioLoop {
* the function change the intern position, and will loop * the function change the intern position, and will loop
* @param output The data buffer * @param output The data buffer
* @param nb of int16 to send * @param nb of int16 to send
* @param volume The volume * @param gain The gain [-1.0, 1.0]
*/ */
void getNext(AudioBuffer& output, unsigned int volume=100); void getNext(AudioBuffer& output, double gain);
void seek(double relative_position); void seek(double relative_position);
......
...@@ -123,9 +123,9 @@ void CallManager::setVolume(const std::string& device, const double& value) ...@@ -123,9 +123,9 @@ void CallManager::setVolume(const std::string& device, const double& value)
DEBUG("DBUS set volume for %s: %f", device.c_str(), value); DEBUG("DBUS set volume for %s: %f", device.c_str(), value);
if (device == "speaker") { if (device == "speaker") {
audiolayer->setPlaybackGain((int)(value * 100.0)); audiolayer->setPlaybackGain(value);
} else if (device == "mic") { } else if (device == "mic") {
audiolayer->setCaptureGain((int)(value * 100.0)); audiolayer->setCaptureGain(value);
} }
volumeChanged(device, value); volumeChanged(device, value);
...@@ -142,9 +142,9 @@ CallManager::getVolume(const std::string& device) ...@@ -142,9 +142,9 @@ CallManager::getVolume(const std::string& device)
} }
if (device == "speaker") if (device == "speaker")
return audiolayer->getPlaybackGain() / 100.0; return audiolayer->getPlaybackGain();
else if (device == "mic") else if (device == "mic")
return audiolayer->getCaptureGain() / 100.0; return audiolayer->getCaptureGain();
return 0; return 0;
} }
......
...@@ -308,17 +308,17 @@ class AudioPreference : public Serializable { ...@@ -308,17 +308,17 @@ class AudioPreference : public Serializable {
alwaysRecording_ = rec; alwaysRecording_ = rec;
} }
int getVolumemic() const { double getVolumemic() const {
return volumemic_; return volumemic_;
} }
void setVolumemic(int m) { void setVolumemic(double m) {
volumemic_ = m; volumemic_ = m;
} }
int getVolumespkr() const { double getVolumespkr() const {
return volumespkr_; return volumespkr_;
} }
void setVolumespkr(int s) { void setVolumespkr(double s) {
volumespkr_ = s; volumespkr_ = s;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment