/*** Olive - Non-Linear Video Editor Copyright (C) 2021 Olive Team This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . ***/ #include "audiowaveformview.h" #include #include #include #include "common/clamp.h" #include "config/config.h" #include "timeline/timelinecommon.h" namespace olive { #define super SeekableWidget AudioWaveformView::AudioWaveformView(QWidget *parent) : super(parent), playback_(nullptr) { setAutoFillBackground(true); setBackgroundRole(QPalette::Base); } AudioVisualWaveform GenerateWaveform(QIODevice* device, AudioParams params, TimeRange range) { device->open(QFile::ReadOnly); device->seek(params.time_to_bytes(range.in())); SampleBufferPtr samples = SampleBuffer::CreateFromPackedData(params, device->read(params.time_to_bytes(range.length()))); AudioVisualWaveform waveform; waveform.set_channel_count(params.channel_count()); waveform.OverwriteSamples(samples, params.sample_rate()); device->close(); delete device; return waveform; } void AudioWaveformView::SetViewer(AudioPlaybackCache *playback) { if (playback_) { pool_.clear(); pool_.waitForDone(); disconnect(playback_, &AudioPlaybackCache::Validated, this, &AudioWaveformView::RenderRange); //disconnect(playback_, &AudioPlaybackCache::ParametersChanged, this, &AudioWaveformView::RenderRange); SetTimebase(0); } playback_ = playback; if (playback_) { connect(playback_, &AudioPlaybackCache::Validated, this, &AudioWaveformView::RenderRange); //connect(playback_, &AudioPlaybackCache::ParametersChanged, this, &AudioWaveformView::RenderRange); SetTimebase(playback_->GetParameters().sample_rate_as_time_base()); waveform_.set_channel_count(playback_->GetParameters().channel_count()); RenderRange(TimeRange(0, playback_->GetLength())); } } void AudioWaveformView::paintEvent(QPaintEvent *event) { super::paintEvent(event); if (!playback_) { return; } const AudioParams& params = playback_->GetParameters(); if (!params.is_valid()) { return; } QPainter p(this); // Draw in/out points DrawTimelinePoints(&p); // Draw waveform p.setPen(QColor(64, 255, 160)); // FIXME: Hardcoded color AudioVisualWaveform::DrawWaveform(&p, rect(), GetScale(), waveform_, SceneToTime(GetScroll())); // Draw playhead p.setPen(PLAYHEAD_COLOR); int playhead_x = UnitToScreen(GetTime()); p.drawLine(playhead_x, 0, playhead_x, height()); } void AudioWaveformView::RenderRange(TimeRange range) { // Limit range to length range = TimeRange(qMax(rational(0), range.in()), qMin(playback_->GetLength(), range.out())); // Floor to second increments int64_t start = qFloor(range.in().toDouble()); int64_t end = qCeil(range.out().toDouble()); for (; start!=end; start++) { TimeRange this_range(start, start+1); QFutureWatcher* watcher = new QFutureWatcher(); connect(watcher, &QFutureWatcher::finished, this, &AudioWaveformView::BackgroundFinished); jobs_.insert(this_range, watcher); watcher->setFuture(QtConcurrent::run(&pool_, GenerateWaveform, playback_->CreatePlaybackDevice(), playback_->GetParameters(), this_range)); } } void AudioWaveformView::BackgroundFinished() { QFutureWatcher* watcher = static_cast*>(sender()); for (auto it=jobs_.begin(); it!=jobs_.end(); it++) { if (it.value() == watcher) { AudioVisualWaveform rendered = watcher->result(); waveform_.OverwriteSums(rendered, it.key().in()); jobs_.erase(it); update(); break; } } delete watcher; } }