forked from h4tr3d/avcpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformat.h
111 lines (83 loc) · 2.87 KB
/
format.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
#pragma once
#include <memory>
#include <string>
#include "ffmpeg.h"
namespace av {
// AVFormat 59 will introduce `const` for all muxer/demuxer description operations
template<typename T>
using avcpp_format_const = typename std::conditional<
std::is_const<
typename std::remove_pointer<
decltype(AVFormatContext::iformat)
>::type
>::value, const T, T>::type;
using FmtCodec = class Codec;
namespace internal {
bool codec_supported(const AVCodecTag *const *codecTag, const FmtCodec &codec);
bool codec_supported(const AVCodecTag *const *codecTag, AVCodecID codec_id);
} // ::internal
template<typename T>
struct Format : public FFWrapperPtr<T>
{
using FFWrapperPtr<T>::FFWrapperPtr;
const char* name() const noexcept {
return RAW_GET(name, nullptr);
}
const char* longName() const noexcept {
return RAW_GET(long_name, nullptr);
}
int32_t flags() const noexcept {
return RAW_GET(flags, 0);
}
bool isFlags(int32_t flags) const noexcept {
if (m_raw) {
return (m_raw->flags & flags);
}
return false;
}
void setFormat(T* format) noexcept {
FFWrapperPtr<T>::reset(format);
}
bool codecSupported(const class Codec &codec) const noexcept
{
if (!m_raw)
return false;
return internal::codec_supported(m_raw->codec_tag, codec);
}
bool codecSupported(AVCodecID codec_id) const noexcept
{
if (!m_raw)
return false;
return internal::codec_supported(m_raw->codec_tag, codec_id);
}
protected:
using FFWrapperPtr<T>::m_raw;
};
class InputFormat : public Format<avcpp_format_const<AVInputFormat>>
{
public:
using Format<avcpp_format_const<AVInputFormat>>::Format;
using Format<avcpp_format_const<AVInputFormat>>::setFormat;
InputFormat() = default;
InputFormat(const std::string& name) noexcept;
bool setFormat(const std::string& name) noexcept;
};
class OutputFormat : public Format<avcpp_format_const<AVOutputFormat>>
{
public:
using Format<avcpp_format_const<AVOutputFormat>>::Format;
using Format<avcpp_format_const<AVOutputFormat>>::setFormat;
OutputFormat() = default;
OutputFormat(const std::string& name,
const std::string& url = std::string(),
const std::string& mime = std::string()) noexcept;
bool setFormat(const std::string& name,
const std::string& url = std::string(),
const std::string& mime = std::string()) noexcept;
AVCodecID defaultVideoCodecId() const noexcept;
AVCodecID defaultAudioCodecId() const noexcept;
};
OutputFormat guessOutputFormat(const std::string& name,
const std::string& url = std::string(),
const std::string& mime = std::string());
} // namespace av