/* * Copyright (c) 2018-2020, Andreas Kling * Copyright (c) 2021, kleines Filmröllchen * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include "AK/TypedTransfer.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace Audio { using namespace AK::Exponentials; // A buffer of audio samples. class Buffer : public RefCounted { public: static ErrorOr> from_pcm_data(ReadonlyBytes data, int num_channels, PcmSampleFormat sample_format); static ErrorOr> from_pcm_stream(InputMemoryStream& stream, int num_channels, PcmSampleFormat sample_format, int num_samples); template ArrayT> static ErrorOr> create_with_samples(ArrayT&& samples) { return adopt_nonnull_ref_or_enomem(new (nothrow) Buffer(move(samples))); } static ErrorOr> create_with_anonymous_buffer(Core::AnonymousBuffer buffer, i32 buffer_id, int sample_count) { return adopt_nonnull_ref_or_enomem(new (nothrow) Buffer(move(buffer), buffer_id, sample_count)); } static NonnullRefPtr create_empty() { // If we can't allocate an empty buffer, things are in a very bad state. return MUST(adopt_nonnull_ref_or_enomem(new (nothrow) Buffer)); } Sample const* samples() const { return (const Sample*)data(); } ErrorOr> to_sample_array() const { FixedArray samples = TRY(FixedArray::try_create(m_sample_count)); AK::TypedTransfer::copy(samples.data(), this->samples(), m_sample_count); return samples; } int sample_count() const { return m_sample_count; } void const* data() const { return m_buffer.data(); } int size_in_bytes() const { return m_sample_count * (int)sizeof(Sample); } int id() const { return m_id; } Core::AnonymousBuffer const& anonymous_buffer() const { return m_buffer; } private: template ArrayT> explicit Buffer(ArrayT&& samples) : m_buffer(Core::AnonymousBuffer::create_with_size(samples.size() * sizeof(Sample)).release_value()) , m_id(allocate_id()) , m_sample_count(samples.size()) { memcpy(m_buffer.data(), samples.data(), samples.size() * sizeof(Sample)); } explicit Buffer(Core::AnonymousBuffer buffer, i32 buffer_id, int sample_count) : m_buffer(move(buffer)) , m_id(buffer_id) , m_sample_count(sample_count) { } // Empty Buffer representation, to avoid tiny anonymous buffers in EOF states Buffer() = default; static i32 allocate_id(); Core::AnonymousBuffer m_buffer; const i32 m_id { -1 }; const int m_sample_count { 0 }; }; // This only works for double resamplers, and therefore cannot be part of the class ErrorOr> resample_buffer(ResampleHelper& resampler, Buffer const& to_resample); }