122 lines
3.6 KiB
C++
122 lines
3.6 KiB
C++
/***
|
|
|
|
Olive - Non-Linear Video Editor
|
|
Copyright (C) 2020 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 <http://www.gnu.org/licenses/>.
|
|
|
|
***/
|
|
|
|
#ifndef SUMSAMPLES_H
|
|
#define SUMSAMPLES_H
|
|
|
|
#include <QPainter>
|
|
#include <QVector>
|
|
|
|
#include "codec/samplebuffer.h"
|
|
|
|
namespace olive {
|
|
|
|
/**
|
|
* @brief A buffer of data used to store a visual representation of audio
|
|
*
|
|
* This differs from a SampleBuffer as the data in an AudioVisualWaveform has been reduced
|
|
* significantly and optimized for visual display.
|
|
*/
|
|
class AudioVisualWaveform {
|
|
public:
|
|
AudioVisualWaveform();
|
|
|
|
struct SamplePerChannel {
|
|
float min;
|
|
float max;
|
|
};
|
|
|
|
using Sample = QVector<SamplePerChannel>;
|
|
|
|
int channel_count() const
|
|
{
|
|
return channels_;
|
|
}
|
|
|
|
void set_channel_count(int channels)
|
|
{
|
|
channels_ = channels;
|
|
}
|
|
|
|
/**
|
|
* @brief Writes samples into the visual waveform buffer
|
|
*
|
|
* Starting at `start`, writes samples over anything in the buffer, expanding it if necessary.
|
|
*/
|
|
void OverwriteSamples(SampleBufferPtr samples, int sample_rate, const rational& start = rational());
|
|
|
|
/**
|
|
* @brief Replaces sums at a certain range in this visual waveform
|
|
*
|
|
* @param sums
|
|
*
|
|
* The sums to write over our current ones with.
|
|
*
|
|
* @param dest
|
|
*
|
|
* Where in this visual waveform these sums should START being written to.
|
|
*
|
|
* @param offset
|
|
*
|
|
* Where in the `sums` parameter this should start reading from. Defaults to 0.
|
|
*
|
|
* @param length
|
|
*
|
|
* Maximum length of `sums` to overwrite with.
|
|
*/
|
|
void OverwriteSums(const AudioVisualWaveform& sums, const rational& dest, const rational& offset = rational(), const rational &length = rational());
|
|
|
|
void Shift(const rational& from, const rational& to);
|
|
|
|
static Sample SumSamples(const float* samples, int nb_samples, int nb_channels);
|
|
static Sample SumSamples(SampleBufferPtr samples, int start_index, int length);
|
|
|
|
static Sample ReSumSamples(const SamplePerChannel *samples, int nb_samples, int nb_channels);
|
|
|
|
static void DrawSample(QPainter* painter, const Sample &sample, int x, int y, int height, bool rectified);
|
|
|
|
static void DrawWaveform(QPainter* painter, const QRect &rect, const double &scale, const AudioVisualWaveform& samples, const rational &start_time);
|
|
|
|
private:
|
|
template <typename T>
|
|
static Sample SumSamplesInternal(const T* samples, int nb_samples, int nb_channels);
|
|
|
|
template <typename T>
|
|
static void ExpandMinMax(SamplePerChannel &sum, T value);
|
|
|
|
void OverwriteSamplesFromBuffer(SampleBufferPtr samples, int sample_rate, const rational& start, double target_rate, Sample &data, int &start_index, int &samples_length);
|
|
|
|
void OverwriteSamplesFromMipmap(const Sample& input, double input_sample_rate, int &input_start, int &input_length, const rational& start, double output_rate, Sample &output_data);
|
|
|
|
int time_to_samples(const rational& time, double sample_rate) const;
|
|
int time_to_samples(const double& time, double sample_rate) const;
|
|
|
|
int channels_;
|
|
|
|
std::map<rational, Sample> mipmapped_data_;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
Q_DECLARE_METATYPE(olive::AudioVisualWaveform)
|
|
|
|
#endif // SUMSAMPLES_H
|