Implement Recording.setPlayerVolume()

This commit is contained in:
David Rowe 2019-09-24 12:52:51 +12:00
parent 97ef2c030e
commit b174e002a9
5 changed files with 25 additions and 5 deletions

View file

@ -433,7 +433,7 @@ void Agent::executeScript() {
using namespace recording;
static const FrameType AUDIO_FRAME_TYPE = Frame::registerFrameType(AudioConstants::getAudioFrameName());
Frame::registerFrameHandler(AUDIO_FRAME_TYPE, [this, &scriptedAvatar](Frame::ConstPointer frame) {
Frame::registerFrameHandler(AUDIO_FRAME_TYPE, [this, &player, &scriptedAvatar](Frame::ConstPointer frame) {
if (_shouldMuteRecordingAudio) {
return;
}
@ -442,10 +442,21 @@ void Agent::executeScript() {
QByteArray audio(frame->data);
if (_isNoiseGateEnabled) {
auto volume = player->getVolume();
if (volume != 1.0f || _isNoiseGateEnabled) {
int16_t* samples = reinterpret_cast<int16_t*>(audio.data());
int numSamples = AudioConstants::NETWORK_FRAME_SAMPLES_PER_CHANNEL;
_audioGate.render(samples, samples, numSamples);
if (volume != 1.0f) {
int32_t fract = (int32_t)(volume * 65536.0f); // Q16
for (int i = 0; i < numSamples; i++) { // #######: i++ instead of ++i?
samples[i] = (fract * (int32_t)samples[i]) >> 16;
}
}
if (_isNoiseGateEnabled) {
_audioGate.render(samples, samples, numSamples);
}
}
computeLoudness(&audio, scriptedAvatar);

View file

@ -103,6 +103,10 @@ float Deck::position() const {
return Frame::frameTimeToSeconds(currentPosition);
}
void Deck::setVolume(float volume) {
_volume = std::min(std::max(volume, 0.0f), 1.0f);
}
static const Frame::Time MIN_FRAME_WAIT_INTERVAL = Frame::secondsToFrameTime(0.001f);
static const Frame::Time MAX_FRAME_PROCESSING_TIME = Frame::secondsToFrameTime(0.004f);

View file

@ -57,6 +57,9 @@ public:
float position() const;
void seek(float position);
float getVolume() { return _volume; }
void setVolume(float volume);
signals:
void playbackStateChanged();
void looped();
@ -76,6 +79,7 @@ private:
bool _pause { true };
bool _loop { false };
float _length { 0 };
float _volume { 1.0f };
};
}

View file

@ -117,7 +117,7 @@ void RecordingScriptingInterface::startPlaying() {
}
void RecordingScriptingInterface::setPlayerVolume(float volume) {
// FIXME
_player->setVolume(std::min(std::max(volume, 0.0f), 1.0f));
}
void RecordingScriptingInterface::setPlayerAudioOffset(float audioOffset) {

View file

@ -95,8 +95,9 @@ public slots:
/**jsdoc
* Sets the playback audio volume.
* @function Recording.setPlayerVolume
* @param {number} volume
* @param {number} volume - The playback audio volume, range <code>0.0</code> &ndash; <code>1.0</code>.
*/
void setPlayerVolume(float volume);