StormByte C++ Library: Multimedia module 0.0.9999
StormByte-Multimedia is a StormByte library module for parsing configuration files
Loading...
Searching...
No Matches
video.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 Video() noexcept
73 : Base(StormByte::Multimedia::Type::Video), m_codec(nullptr) {}
74
79 Video(const Video& other) noexcept = default;
80
85 Video(Video&& other) noexcept = default;
86
90 virtual ~Video() noexcept override = default;
91
97 Video& operator=(const Video& other) noexcept = default;
98
104 Video& operator=(Video&& other) noexcept = default;
105
114 inline PointerType Clone() const override {
115 return MakePointer<Video>(*this);
116 }
117
122 inline PointerType Move() override {
123 return MakePointer<Video>(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<int>& CRF() const noexcept {
152 return m_crf;
153 }
154
159 void CRF(int value) noexcept;
160
165 inline const std::optional<std::int64_t>& BitRate() const noexcept {
166 return m_bitRate;
167 }
168
173 void BitRate(std::int64_t bits_per_second) noexcept;
174
179 inline const std::optional<std::int64_t>& MaxBitRate() const noexcept {
180 return m_maxBitRate;
181 }
182
187 inline void MaxBitRate(std::int64_t bits_per_second) noexcept {
188 m_maxBitRate = bits_per_second;
189 }
190
195 inline const std::optional<std::string>& Preset() const noexcept {
196 return m_preset;
197 }
198
203 void Preset(std::string name) noexcept;
204
209 inline const std::optional<std::string>& Tune() const noexcept {
210 return m_tune;
211 }
212
217 void Tune(std::string name) noexcept;
218
223 inline const std::map<std::string, std::string>& FineTune() const noexcept {
224 return m_fineTune;
225 }
226
231 inline void FineTune(std::map<std::string, std::string> options) noexcept {
232 m_fineTune = std::move(options);
233 }
234
239 private:
240 const StormByte::Multimedia::Codec* m_codec;
241 std::optional<int> m_crf;
242 std::optional<std::int64_t> m_bitRate;
243 std::optional<std::int64_t> m_maxBitRate;
244 std::optional<std::string> m_preset;
245 std::optional<std::string> m_tune;
246 std::map<std::string, std::string> m_fineTune;
247 };
248}
Immutable codec identity owned by Registry.
Definition codec.hxx:58
Common destination-stream identity.
Definition base.hxx:90
void FineTune(std::map< std::string, std::string > options) noexcept
Replaces the vendor dict.
Definition video.hxx:231
const std::map< std::string, std::string > & FineTune() const noexcept
Vendor leftovers.
Definition video.hxx:223
void Codec(const StormByte::Multimedia::Codec &codec) noexcept
Sets the destination codec (Encode).
Definition video.hxx:143
constexpr Video() noexcept
Empty video config (Remux until Codec is set).
Definition video.hxx:72
virtual ~Video() noexcept override=default
Destructor.
Video(const Video &other) noexcept=default
Copy constructor.
void CRF(int value) noexcept
Sets CRF/CQ and clears BitRate.
const std::optional< std::int64_t > & MaxBitRate() const noexcept
VBV ceiling.
Definition video.hxx:179
const std::optional< std::int64_t > & BitRate() const noexcept
Target bitrate.
Definition video.hxx:165
void Preset(std::string name) noexcept
Sets the preset.
PointerType Move() override
Move into a new pointer.
Definition video.hxx:122
const std::optional< std::string > & Preset() const noexcept
Encoder preset.
Definition video.hxx:195
void BitRate(std::int64_t bits_per_second) noexcept
Sets target bitrate and clears CRF.
const std::optional< int > & CRF() const noexcept
CRF/CQ.
Definition video.hxx:151
void MaxBitRate(std::int64_t bits_per_second) noexcept
Sets VBV ceiling.
Definition video.hxx:187
Video(Video &&other) noexcept=default
Move constructor.
const std::optional< std::string > & Tune() const noexcept
Content tune.
Definition video.hxx:209
void Tune(std::string name) noexcept
Sets the tune.
const StormByte::Multimedia::Codec * Codec() const noexcept
Destination codec.
Definition video.hxx:135
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