StormByte C++ Library: Multimedia module 0.0.9999
StormByte-Multimedia is a StormByte library module for parsing configuration files
Loading...
Searching...
No Matches
vmaf.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
41#include <StormByte/logger/log.hxx>
46
47#include <cstdint>
48#include <deque>
49#include <map>
50#include <memory>
51#include <optional>
52#include <string>
53
54struct VmafContext;
55struct VmafModel;
56
130 public:
144 VMAF(std::shared_ptr<StormByte::Logger::Log> log, std::string model,
145 std::optional<unsigned short> threads = {}) noexcept;
146
150 VMAF(const VMAF& other) = delete;
151
155 VMAF(VMAF&& other) noexcept = delete;
156
160 ~VMAF() noexcept override;
161
165 VMAF& operator=(const VMAF& other) = delete;
166
170 VMAF& operator=(VMAF&& other) noexcept = delete;
171
176 enum StormByte::Multimedia::Type Media() const noexcept override;
177
185 std::size_t InputCeiling() const noexcept override {
186 return Ceiling;
187 }
188
197 class Filter::Report Report() const noexcept override;
198
199 protected:
203 void Clean() noexcept override;
204
208 void Setup() noexcept override;
209
217 void Process(const Pipeline::Frame& frame) noexcept override;
218
222 void Eof() noexcept override;
223
224 private:
228 struct Lane {
229 VmafContext* vmaf = nullptr;
230 VmafModel* model = nullptr;
231 std::deque<StormByte::Multimedia::FFmpeg::AVFrame> ref;
232 std::deque<StormByte::Multimedia::FFmpeg::AVFrame> dist;
233 int width = 0;
234 int height = 0;
235 unsigned index = 0;
236 unsigned scored = 0;
237 std::size_t peakRef = 0;
238 std::size_t peakDist = 0;
239 std::optional<double> mean;
240 std::optional<double> min;
241 bool failed = false;
242 };
243
257 bool Fill(const StormByte::Multimedia::FFmpeg::AVFrame& raw,
258 int tw, int th, void* out) noexcept;
259
265 bool OpenLane(Lane& lane) noexcept;
266
277 void Score(Lane& lane,
280 unsigned index) noexcept;
281
286 void Drain(Lane& lane) noexcept;
287
292 unsigned Threads() const noexcept;
293
298 void DropParked(Lane& lane) noexcept;
299
303 void DropAll() noexcept;
304
305 static constexpr std::size_t Ceiling = 512;
306 std::string m_modelName;
307 std::optional<unsigned short> m_threads;
308 std::map<int, Lane> m_lanes;
309 };
310}
RAII owner of a libav AVFrame.
Definition AVFrame.hxx:96
Measures units.
Definition ffmpeg.hxx:803
Mutates decoded frames.
Definition ffmpeg.hxx:676
Optional measurement produced by a filter.
Definition report.hxx:60
Full-reference VMAF.
Definition vmaf.hxx:129
VMAF(std::shared_ptr< StormByte::Logger::Log > log, std::string model, std::optional< unsigned short > threads={}) noexcept
VMAF with a built-in libvmaf model version.
void Clean() noexcept override
Drops parked looks and closes libvmaf.
VMAF(const VMAF &other)=delete
Copy is not allowed.
VMAF(VMAF &&other) noexcept=delete
Move is not allowed.
One decoded access unit.
Definition frame.hxx:76
Video leaves (Process and Analytics).
Type
Kind of media stream or codec.
Definition type.hxx:55
#define STORMBYTE_MULTIMEDIA_PUBLIC
Imported symbol.
Definition visibility.h:47