AUI Framework  master
Cross-platform base for C++ UI apps
Loading...
Searching...
No Matches
ASoundResampler.h
    1/*
    2 * AUI Framework - Declarative UI toolkit for modern C++20
    3 * Copyright (C) 2020-2025 Alex2772 and Contributors
    4 *
    5 * SPDX-License-Identifier: MPL-2.0
    6 *
    7 * This Source Code Form is subject to the terms of the Mozilla Public
    8 * License, v. 2.0. If a copy of the MPL was not distributed with this
    9 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
   10 */
   11
   12#pragma once
   13
   14#include <AUI/Audio/ISoundInputStream.h>
   15#include <AUI/Audio/ACompileTimeSoundResampler.h>
   16#include <AUI/Audio/VolumeLevel.h>
   17
   18class API_AUI_AUDIO IAudioPlayer;
   19
   20namespace aui::audio::impl {
   21    class ResamplerBase {
   22    public:
   23        virtual ~ResamplerBase() = default;
   24        virtual size_t resample(std::span<std::byte>, aui::audio::VolumeLevel volume) = 0;
   25    };
   26}
   27
   34class API_AUI_AUDIO ASoundResampler final : public ISoundInputStream {
   35public:
   36    using IInputStream::read;
   37
   38    explicit ASoundResampler(_<ISoundInputStream> sourceStream) noexcept;
   39
   40    size_t read(char* dst, size_t size) override;
   41
   42    AAudioFormat info() override;
   43
   44    void setVolume(aui::audio::VolumeLevel volume) noexcept;
   45
   46private:
   47    _<ISoundInputStream> mSourceStream;
   48    _unique<aui::audio::impl::ResamplerBase> mResampler;
   52    aui::audio::VolumeLevel mVolume = 256;
   53};
size_t read(char *dst, size_t size) override
Reads up to size bytes from stream. Blocking (waiting for new data) is allowed.
AAudioFormat info() override
Get general info about sound stream.
Interface for audio playback.
Definition IAudioPlayer.h:15
virtual size_t read(char *dst, size_t size)=0
Reads up to size bytes from stream. Blocking (waiting for new data) is allowed.
Base interface for representing sound input streams of different formats.
Definition ISoundInputStream.h:15
An std::weak_ptr with AUI extensions.
Definition SharedPtrTypes.h:179
Definition ASoundResampler.h:21
Audio format descriptor.
Definition AAudioFormat.h:13