/*** Olive - Non-Linear Video Editor Copyright (C) 2019 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 "audioparams.h" extern "C" { #include } OLIVE_NAMESPACE_ENTER AudioParams::AudioParams() : sample_rate_(0), channel_layout_(0) { } AudioParams::AudioParams(const int &sample_rate, const uint64_t &channel_layout) : sample_rate_(sample_rate), channel_layout_(channel_layout) { } const int &AudioParams::sample_rate() const { return sample_rate_; } const uint64_t &AudioParams::channel_layout() const { return channel_layout_; } rational AudioParams::time_base() const { return rational(1, sample_rate()); } AudioRenderingParams::AudioRenderingParams() : format_(SampleFormat::SAMPLE_FMT_INVALID) { } AudioRenderingParams::AudioRenderingParams(const int &sample_rate, const uint64_t &channel_layout, const SampleFormat::Format &format) : AudioParams(sample_rate, channel_layout), format_(format) { } AudioRenderingParams::AudioRenderingParams(const AudioParams ¶ms, const SampleFormat::Format &format) : AudioParams(params), format_(format) { } int AudioRenderingParams::time_to_bytes(const double &time) const { Q_ASSERT(is_valid()); return time_to_samples(time) * channel_count() * bytes_per_sample_per_channel(); } const SampleFormat::Format &AudioRenderingParams::format() const { return format_; } bool AudioRenderingParams::operator==(const AudioRenderingParams &other) const { return (format() == other.format() && sample_rate() == other.sample_rate() && channel_layout() == other.channel_layout()); } bool AudioRenderingParams::operator!=(const AudioRenderingParams &other) const { return (format() != other.format() || sample_rate() != other.sample_rate() || channel_layout() != other.channel_layout()); } int AudioRenderingParams::time_to_bytes(const rational &time) const { return time_to_bytes(time.toDouble()); } int AudioRenderingParams::time_to_samples(const double &time) const { Q_ASSERT(is_valid()); return qFloor(time * sample_rate()); } int AudioRenderingParams::time_to_samples(const rational &time) const { return time_to_samples(time.toDouble()); } int AudioRenderingParams::samples_to_bytes(const int &samples) const { Q_ASSERT(is_valid()); return samples * channel_count() * bytes_per_sample_per_channel(); } rational AudioRenderingParams::samples_to_time(const int &samples) const { return rational(samples, sample_rate()); } int AudioRenderingParams::bytes_to_samples(const int &bytes) const { Q_ASSERT(is_valid()); return bytes / (channel_count() * bytes_per_sample_per_channel()); } rational AudioRenderingParams::bytes_to_time(const int &bytes) const { Q_ASSERT(is_valid()); return samples_to_time(bytes_to_samples(bytes)); } int AudioRenderingParams::channel_count() const { return av_get_channel_layout_nb_channels(channel_layout()); } int AudioRenderingParams::bytes_per_sample_per_channel() const { switch (format_) { case SampleFormat::SAMPLE_FMT_U8: return 1; case SampleFormat::SAMPLE_FMT_S16: return 2; case SampleFormat::SAMPLE_FMT_S32: case SampleFormat::SAMPLE_FMT_FLT: return 4; case SampleFormat::SAMPLE_FMT_DBL: case SampleFormat::SAMPLE_FMT_S64: return 8; case SampleFormat::SAMPLE_FMT_INVALID: case SampleFormat::SAMPLE_FMT_COUNT: break; } return 0; } int AudioRenderingParams::bits_per_sample() const { return bytes_per_sample_per_channel() * 8; } bool AudioRenderingParams::is_valid() const { bool valid = (sample_rate() > 0 && channel_layout() > 0 && format_ != SampleFormat::SAMPLE_FMT_INVALID && format_ != SampleFormat::SAMPLE_FMT_COUNT); if (!valid) { qWarning() << "Invalid params found:" << sample_rate() << channel_layout() << format(); } return valid; } OLIVE_NAMESPACE_EXIT