avcpp
2.0
Wrapper for the FFmpeg that simplify usage from C++ projects.
|
Go to the documentation of this file.
16 #include <libavfilter/avfilter.h>
17 #include <libavcodec/avcodec.h>
21 #define USE_CODECPAR ((LIBAVCODEC_VERSION_MAJOR) >= 59) // FFmpeg 5.0
24 #define API_NEW_CHANNEL_LAYOUT ((LIBAVUTIL_VERSION_MAJOR > 57) || (LIBAVUTIL_VERSION_MAJOR == 57 && (LIBAVUTIL_VERSION_MINOR >= 24)))
26 #define API_FRAME_NUM ((LIBAVCODEC_VERSION_MAJOR > 60) || (LIBAVCODEC_VERSION_MAJOR == 60 && LIBAVCODEC_VERSION_MINOR >= 2))
28 #define API_AVFORMAT_URL ((LIBAVFORMAT_VERSION_MAJOR > 58) || (LIBAVFORMAT_VERSION_MAJOR == 58 && LIBAVFORMAT_VERSION_MINOR >= 7))
30 #define API_FRAME_KEY ((LIBAVUTIL_VERSION_MAJOR > 58) || (LIBAVUTIL_VERSION_MAJOR == 58 && LIBAVUTIL_VERSION_MINOR >= 29))
32 #define API_AVCODEC_CLOSE (LIBAVCODEC_VERSION_MAJOR < 61)
34 #if defined(__ICL) || defined (__INTEL_COMPILER)
35 # define FF_DISABLE_DEPRECATION_WARNINGS __pragma(warning(push)) __pragma(warning(disable:1478))
36 # define FF_ENABLE_DEPRECATION_WARNINGS __pragma(warning(pop))
37 #elif defined(_MSC_VER)
38 # define FF_DISABLE_DEPRECATION_WARNINGS __pragma(warning(push)) __pragma(warning(disable:4996))
39 # define FF_ENABLE_DEPRECATION_WARNINGS __pragma(warning(pop))
40 #elif defined(__GNUC__) || defined(__clang__)
41 # define FF_DISABLE_DEPRECATION_WARNINGS _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
42 # define FF_ENABLE_DEPRECATION_WARNINGS _Pragma("GCC diagnostic warning \"-Wdeprecated-declarations\"")
44 # define FF_DISABLE_DEPRECATION_WARNINGS
45 # define FF_ENABLE_DEPRECATION_WARNINGS
49 #define API_AVCODEC_NEW_INIT_PACKET (LIBAVCODEC_VERSION_MAJOR >= 58)
51 #define API_AVCODEC_GET_SUPPORTED_CONFIG (LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(61, 13, 100))
53 #define API_AVFORMAT_AV_STREAM_GET_CODEC_TIMEBASE (LIBAVFORMAT_VERSION_INT < AV_VERSION_INT(61, 5, 101))
56 #if __has_include(<compare>)
58 # if defined(__cpp_lib_three_way_comparison) && __cpp_lib_three_way_comparison >= 201907
59 # define AVCPP_USE_SPACESHIP_OPERATOR 1
69 constexpr
auto NoPts =
static_cast<int64_t
>(AV_NOPTS_VALUE);
70 constexpr
auto TimeBase =
static_cast<int>(AV_TIME_BASE);
71 constexpr
auto TimeBaseQ = AVRational{1, AV_TIME_BASE};
74 template<
typename R,
typename T>
114 #define setFFmpegLoggingLevel set_logging_level
156 bool operator() (
struct SwsContext* &swsContext);
157 bool operator() (
struct AVCodecContext* &codecContext);
158 bool operator() (
struct AVOutputFormat* &format);
159 bool operator() (
struct AVFormatContext* &formatContext);
162 bool operator() (
struct AVDictionary* &dictionary);
163 bool operator ()(
struct AVFilterInOut* &filterInOut);
167 inline namespace v2 {
178 std::unique_ptr<T, void(*)(
void*)>
malloc(
size_t size)
180 return {
static_cast<T*
>(av_malloc(size)), av_free};
184 std::unique_ptr<T, void(*)(
void*)>
mallocz(
size_t size)
186 return {
static_cast<T*
>(av_mallocz(size)), av_free};
190 std::unique_ptr<T, void(*)(
void*)>
memdup(
const void *p,
size_t size)
192 return {
static_cast<T*
>(av_memdup(p, size)), av_free};
201 AVFilterInOut * operator()(AVFilterInOut * x)
const
225 template<
typename T,
typename V = T>
294 template<
typename Proc>
299 template<
typename Proc>
301 : m_proc(
std::forward<Proc>(proc))
311 std::function<void()> m_proc;
326 if (this->value ==
value)
350 template<
typename T,
typename L,
typename C>
351 T
guessValue(
const T& value,
const L * list, C endListComparator)
357 std::deque<T> values;
358 for (
const L * ptr = list; !endListComparator(*ptr); ++ptr)
365 std::sort(values.begin(), values.end());
369 int end = values.size() - 1;
370 while ((end - begin) > 1)
372 int mid = begin + (end - begin) / 2;
374 if (value <= values[mid])
385 if (value <= values[begin] || (value - values[begin]) < (values[end] - value))
387 return values[begin];
394 template<
typename T,
typename Container>
397 if (!array || nelements == 0)
399 std::copy_n(array, array + nelements, std::back_inserter(container));
402 template<
typename T,
typename Container,
typename Callable>
403 void array_to_container(
const T* array, std::size_t nelements, Container &container, Callable convert)
405 if (!array || nelements == 0)
409 for (
auto i = 0u; i < nelements; ++i) {
410 container.push_back(convert(array[i]));
414 template<
typename T,
typename Container,
typename Compare>
420 while (!isEnd(value = *array++))
421 container.push_back(value);
424 template<
typename T,
typename Container,
typename Compare,
typename Callable>
430 while (!isEnd(value = *array++))
431 container.push_back(convert(value));
bool operator()(struct SwsContext *&swsContext)
Definition: avutils.cpp:203
string error2string(int error)
C++ verstion of the av_err2str()
Definition: avutils.cpp:195
void operator()(void *)
Definition: avutils.h:145
std::unique_ptr< T, void(*)(void *)> malloc(size_t size)
Definition: avutils.h:178
EqualComparator(const T &value)
Definition: avutils.h:320
bool operator()(T *ptr)
Definition: avutils.h:171
void set_logging_level(int32_t level)
This method can be used to turn up or down FFmpeg's logging level.
Definition: avutils.cpp:19
Definition: avutils.h:143
std::unique_ptr< T, void(*)(void *)> memdup(const void *p, size_t size)
Definition: avutils.h:190
constexpr auto TimeBaseQ
Definition: avutils.h:71
constexpr auto NoPts
Definition: avutils.h:69
Definition: avutils.h:168
The ScopeOutAction class - guard-type class that allows points callback that will be called at the sc...
Definition: avutils.h:291
ScopedValue(T &var, const V &inValue, const V &outValue)
Ctor.
Definition: avutils.h:246
Definition: avutils.h:318
const T & value
Definition: avutils.h:332
ScopeOutAction(const Proc &proc)
Definition: avutils.h:295
Definition: avutils.h:154
std::unique_ptr< T, void(*)(void *)> mallocz(size_t size)
Definition: avutils.h:184
void operator=(const noncopyable &)=delete
void array_to_container(const T *array, std::size_t nelements, Container &container)
Definition: avutils.h:395
constexpr auto TimeBase
Definition: avutils.h:70
R lexical_cast(const T &v)
Definition: avutils.h:75
Definition: audioresampler.cpp:8
Definition: averror.h:228
void dumpBinaryBuffer(uint8_t *buffer, int buffer_size, int width)
dump_binary_buffer Dump binary buffer to std out in HEX view
Definition: avutils.cpp:70
bool operator()(const T &value) const
Definition: avutils.h:324
Functor to take next element in list/array.
Definition: avutils.h:226
~ScopedValue()
Definition: avutils.h:253
T guessValue(const T &value, const L *list, C endListComparator)
Select more approptiate value from given value list.
Definition: avutils.h:351
~ScopeOutAction()
Definition: avutils.h:304
ScopeOutAction(Proc &&proc)
Definition: avutils.h:300
ScopedValue(T &var, const V &outValue)
Ctor.
Definition: avutils.h:234