StormByte C++ Library: Multimedia module 0.0.9999
StormByte-Multimedia is a StormByte library module for parsing configuration files
Loading...
Searching...
No Matches
audio.hxx
Go to the documentation of this file.
1/*
2 * Copyright (C) 2024-2026 David C. Manuelda (StormBytePP)
3 *
4 * This file is part of StormByte-Multimedia.
5 *
6 * StormByte-Multimedia original source is dual-licensed:
7 *
8 * 1. GNU Lesser General Public License v3.0 (or later)
9 * You may redistribute and/or modify this file under the terms of the
10 * GNU Lesser General Public License as published by the Free Software
11 * Foundation, either version 3 of the License, or (at your option)
12 * any later version.
13 *
14 * 2. Commercial license
15 * Alternatively, this file may be used under the terms of a commercial
16 * license agreement with the copyright holder
17 * (David C. Manuelda <StormByte@gmail.com>).
18 *
19 * Both licenses apply only to original StormByte-Multimedia source in this
20 * file. Third-party components — including FFmpeg and embedded trained data —
21 * remain under their own licenses and are not covered by the commercial grant.
22 *
23 * Neither license grants any patent rights. Any patent licenses required
24 * to use this software or third-party components must be obtained separately
25 * from the patent holders.
26 *
27 * StormByte-Multimedia is distributed in the hope that it will be useful,
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30 * GNU Lesser General Public License for more details.
31 *
32 * You should have received a copy of the GNU Lesser General Public License
33 * version 3 along with StormByte-Multimedia. If not, see
34 * <https://www.gnu.org/licenses/lgpl-3.0.html>.
35 *
36 * SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-StormByte-Commercial
37 */
38
39#pragma once
40
44
45#include <cstdint>
46#include <map>
47#include <optional>
48#include <string>
49#include <utility>
50
63 public:
72 constexpr Audio() noexcept
73 : Base(StormByte::Multimedia::Type::Audio), m_codec(nullptr) {}
74
79 Audio(const Audio& other) noexcept = default;
80
85 Audio(Audio&& other) noexcept = default;
86
90 virtual ~Audio() noexcept override = default;
91
97 Audio& operator=(const Audio& other) noexcept = default;
98
104 Audio& operator=(Audio&& other) noexcept = default;
105
114 inline PointerType Clone() const override {
115 return MakePointer<Audio>(*this);
116 }
117
122 inline PointerType Move() override {
123 return MakePointer<Audio>(std::move(*this));
124 }
125
135 inline const StormByte::Multimedia::Codec* Codec() const noexcept {
136 return m_codec;
137 }
138
143 inline void Codec(const StormByte::Multimedia::Codec& codec) noexcept {
144 m_codec = &codec;
145 }
146
151 inline const std::optional<std::int64_t>& BitRate() const noexcept {
152 return m_bitRate;
153 }
154
159 inline void BitRate(std::int64_t bits_per_second) noexcept {
160 m_bitRate = bits_per_second;
161 }
162
167 inline const std::optional<std::int64_t>& MaxBitRate() const noexcept {
168 return m_maxBitRate;
169 }
170
175 inline void MaxBitRate(std::int64_t bits_per_second) noexcept {
176 m_maxBitRate = bits_per_second;
177 }
178
183 inline const std::optional<std::string>& Preset() const noexcept {
184 return m_preset;
185 }
186
191 void Preset(std::string name) noexcept;
192
197 inline const std::map<std::string, std::string>& FineTune() const noexcept {
198 return m_fineTune;
199 }
200
205 inline void FineTune(std::map<std::string, std::string> options) noexcept {
206 m_fineTune = std::move(options);
207 }
208
213 private:
214 const StormByte::Multimedia::Codec* m_codec;
215 std::optional<std::int64_t> m_bitRate;
216 std::optional<std::int64_t> m_maxBitRate;
217 std::optional<std::string> m_preset;
218 std::map<std::string, std::string> m_fineTune;
219 };
220}
Immutable codec identity owned by Registry.
Definition codec.hxx:58
PointerType Move() override
Move into a new pointer.
Definition audio.hxx:122
const StormByte::Multimedia::Codec * Codec() const noexcept
Destination codec.
Definition audio.hxx:135
const std::map< std::string, std::string > & FineTune() const noexcept
Vendor leftovers.
Definition audio.hxx:197
void BitRate(std::int64_t bits_per_second) noexcept
Sets target bitrate.
Definition audio.hxx:159
constexpr Audio() noexcept
Empty audio config (Remux until Codec is set).
Definition audio.hxx:72
const std::optional< std::string > & Preset() const noexcept
Encoder preset, if the implementation has one.
Definition audio.hxx:183
const std::optional< std::int64_t > & BitRate() const noexcept
Target bitrate.
Definition audio.hxx:151
void MaxBitRate(std::int64_t bits_per_second) noexcept
Sets maximum bitrate.
Definition audio.hxx:175
virtual ~Audio() noexcept override=default
Destructor.
const std::optional< std::int64_t > & MaxBitRate() const noexcept
Maximum bitrate.
Definition audio.hxx:167
Audio(const Audio &other) noexcept=default
Copy constructor.
Audio(Audio &&other) noexcept=default
Move constructor.
void FineTune(std::map< std::string, std::string > options) noexcept
Replaces the vendor dict.
Definition audio.hxx:205
void Codec(const StormByte::Multimedia::Codec &codec) noexcept
Sets the destination codec (Encode).
Definition audio.hxx:143
void Preset(std::string name) noexcept
Sets the preset.
Common destination-stream identity.
Definition base.hxx:90
Per-track intention stored by Plan.
Type
Kind of media stream or codec.
Definition type.hxx:55
#define STORMBYTE_MULTIMEDIA_PUBLIC
Imported symbol.
Definition visibility.h:47