forked from h4tr3d/avcpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathffmpeg.h
252 lines (211 loc) · 6.52 KB
/
ffmpeg.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
#pragma once
#include <iostream>
extern "C"
{
#include <libavutil/avutil.h>
#include <libavutil/parseutils.h>
#include <libavutil/mathematics.h>
#include <libavutil/opt.h>
#include <libavutil/pixdesc.h>
#include <libavdevice/avdevice.h>
#include <libswscale/swscale.h>
#include <libswresample/swresample.h>
#include <libavformat/version.h>
#include <libavcodec/version.h>
}
extern "C" {
#include <libavfilter/avfilter.h>
#if LIBAVFILTER_VERSION_INT < AV_VERSION_INT(7,0,0)
# include <libavfilter/avfiltergraph.h>
#endif
#include <libavfilter/buffersink.h>
#include <libavfilter/buffersrc.h>
#if LIBAVFILTER_VERSION_INT <= AV_VERSION_INT(2,77,100) // 0.11.1
# include <libavfilter/vsrc_buffer.h>
#endif
#if LIBAVFILTER_VERSION_INT < AV_VERSION_INT(6,31,100) // 3.0
#include <libavfilter/avcodec.h>
#endif
}
// Compat level
// avcodec
#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(54,59,100) // 1.0
inline void avcodec_free_frame(AVFrame **frame)
{
av_freep(frame);
}
#endif
// avfilter
#if LIBAVFILTER_VERSION_INT < AV_VERSION_INT(3,17,100) // 1.0
inline const char *avfilter_pad_get_name(AVFilterPad *pads, int pad_idx)
{
return pads[pad_idx].name;
}
inline AVMediaType avfilter_pad_get_type(AVFilterPad *pads, int pad_idx)
{
return pads[pad_idx].type;
}
#endif
// Wrapper around av_free_packet()/av_packet_unref()
#if LIBAVFORMAT_VERSION_INT < AV_VERSION_INT(6,31,100) // < 3.0
#define avpacket_unref(p) av_free_packet(p)
#else
#define avpacket_unref(p) av_packet_unref(p)
#endif
template<typename T>
struct FFWrapperPtr
{
FFWrapperPtr() = default;
explicit FFWrapperPtr(T *raw)
: m_raw(raw) {}
const T* raw() const { return m_raw; }
T* raw() { return m_raw; }
void reset(T *raw = nullptr) { m_raw = raw; }
bool isNull() const { return (m_raw == nullptr); }
void _log(int level, const char *fmt) const
{
av_log(m_raw, level, fmt);
}
template<typename... Args>
void _log(int level, const char* fmt, const Args&... args) const
{
av_log(m_raw, level, fmt, args...);
}
protected:
T *m_raw = nullptr;
};
#define RAW_GET(field, def) (m_raw ? m_raw->field : (def))
#define RAW_SET(field, val) if(m_raw) m_raw->field = (val)
#define RAW_GET2(cond, field, def) (m_raw && (cond) ? m_raw->field : def)
#define RAW_SET2(cond, field, val) if(m_raw && (cond)) m_raw->field = (val)
#define IF_GET(ptr, field, def) ((ptr) ? ptr->field : def)
#define IF_SET(ptr, field, val) (if(ptr) ptr->field = (val))
#define IF_GET2(cond, ptr, field, def) (ptr && (cond) ? ptr->field : def)
#define IF_SET2(cond, ptr, field, val) (if(ptr && (cond)) ptr->field = (val))
#if !DEPRECATED_INIT_PACKET
template<typename T>
struct FFWrapperRef
{
FFWrapperRef() = default;
explicit FFWrapperRef(const T &raw)
: m_raw(raw) {}
const T* raw() const { return &m_raw; }
T* raw() { return &m_raw; }
void reset(const T &raw = T()) { m_raw = raw; }
bool isNull() const {
static const T empty = T();
auto res = memcmp(&m_raw, &empty, sizeof(empty));
return (res != 0);
}
void _log(int level, const char *fmt) const
{
av_log(&m_raw, level, fmt);
}
template<typename... Args>
void _log(int level, const char* fmt, const Args&... args) const
{
av_log(&m_raw, level, fmt, args...);
}
protected:
T m_raw = T();
};
#endif
template<typename WrapperClass, typename T, T NoneValue = static_cast<T>(-1)>
struct PixSampleFmtWrapper
{
constexpr PixSampleFmtWrapper() = default;
constexpr PixSampleFmtWrapper(T fmt) noexcept : m_fmt(fmt) {}
// Access to the stored value
operator T() const noexcept
{
return m_fmt;
}
T get() const noexcept
{
return m_fmt;
}
operator T&() noexcept
{
return m_fmt;
}
WrapperClass& operator=(T fmt) noexcept
{
m_fmt = fmt;
return *this;
}
void set(T fmt) noexcept
{
m_fmt = fmt;
}
// IO Stream interface
friend std::ostream& operator<<(std::ostream& ost, WrapperClass fmt)
{
ost << fmt.name();
return ost;
}
protected:
T m_fmt = NoneValue;
};
#ifdef __cpp_lib_format
# include <format>
namespace av {
template <typename B>
concept has_name_method_with_ec = requires(const B& type, std::error_code ec) {
{ type.name(ec) } -> std::convertible_to<std::string_view>;
};
template <typename B>
concept has_name_method_without_ec = requires(const B& type) {
{ type.name() } -> std::convertible_to<std::string_view>;
};
template <typename B>
concept has_long_name_method_with_ec = requires(const B& type, std::error_code ec) {
{ type.longName(ec) } -> std::convertible_to<std::string_view>;
};
template <typename B>
concept has_long_name_method_without_ec = requires(const B& type) {
{ type.longName() } -> std::convertible_to<std::string_view>;
};
} // ::av
template <class T, class CharT>
requires av::has_name_method_with_ec<T> || av::has_name_method_without_ec<T>
struct std::formatter<T, CharT>
{
bool longName = false;
template<typename ParseContext>
constexpr ParseContext::iterator parse(ParseContext& ctx)
{
auto it = ctx.begin();
if constexpr (requires { requires av::has_long_name_method_with_ec<T> || av::has_long_name_method_without_ec<T>; }) {
if (it == ctx.end())
return it;
if (*it == 'l') {
longName = true;
++it;
}
if (it != ctx.end() && *it != '}')
throw std::format_error("Invalid format args");
}
return it;
}
template<typename ParseContext>
auto format(const T& value, ParseContext& ctx) const
{
if (longName) {
if constexpr (requires { requires av::has_long_name_method_with_ec<T>; }) {
std::error_code dummy;
return std::format_to(ctx.out(), "{}", value.longName(dummy));
} else if constexpr (requires { requires av::has_long_name_method_without_ec<T>; }) {
return std::format_to(ctx.out(), "{}", value.longName());
}
} else {
if constexpr (requires { requires av::has_name_method_with_ec<T>; }) {
std::error_code dummy;
return std::format_to(ctx.out(), "{}", value.name(dummy));
} else {
return std::format_to(ctx.out(), "{}", value.name());
}
}
return ctx.out();
}
};
#endif