forked from h4tr3d/avcpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchannellayout.cpp
220 lines (179 loc) · 4.7 KB
/
channellayout.cpp
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
#include <utility>
#include <cstring>
#include "channellayout.h"
#if API_NEW_CHANNEL_LAYOUT
namespace av {
static constexpr size_t BufferSize = 128;
std::string channel_name(AVChannel channel)
{
char buf[BufferSize]{};
av_channel_name(buf, sizeof(buf), channel);
return buf;
}
std::string channel_description(AVChannel channel)
{
char buf[BufferSize]{};
av_channel_description(buf, sizeof(buf), channel);
return buf;
}
AVChannel channel_from_string(const std::string &name)
{
return channel_from_string(name.c_str());
}
AVChannel channel_from_string(const char *name)
{
return av_channel_from_string(name);
}
ChannelLayoutView::ChannelLayoutView() noexcept
{
}
ChannelLayoutView::ChannelLayoutView(const AVChannelLayout &layout) noexcept
: m_layout(layout)
{
}
void ChannelLayoutView::dumpLayouts()
{
//std::string;
iterate([] (const ChannelLayoutView &ch) {
char buf[BufferSize]{};
av_channel_layout_describe(ch.raw(), buf, sizeof(buf));
std::string channels;
for (int i = 0; i < 63; i++) {
auto idx = ch.index(AVChannel(i));
if (idx >= 0) {
if (idx)
channels.push_back('+');
channels.append(channel_name(AVChannel(i)));
}
}
return false; // is not done
});
}
AVChannelLayout *ChannelLayoutView::raw()
{
return &m_layout;
}
const AVChannelLayout *ChannelLayoutView::raw() const
{
return &m_layout;
}
int ChannelLayoutView::channels() const noexcept
{
return m_layout.nb_channels;
}
uint64_t ChannelLayoutView::layout() const noexcept
{
return m_layout.order == AV_CHANNEL_ORDER_NATIVE ? m_layout.u.mask : 0;
}
uint64_t ChannelLayoutView::subset(uint64_t mask) const noexcept
{
return av_channel_layout_subset(&m_layout, mask);
}
bool ChannelLayoutView::isValid() const noexcept
{
return av_channel_layout_check(&m_layout);
}
std::string ChannelLayoutView::describe() const
{
char buf[BufferSize]{};
av_channel_layout_describe(&m_layout, buf, sizeof(buf));
return buf;
}
void ChannelLayoutView::describe(std::string &desc) const
{
// TBD
if (desc.capacity()) {
if (!desc.size())
desc.resize(desc.capacity());
av_channel_layout_describe(&m_layout, desc.data(), desc.size());
desc.resize(std::strlen(desc.data())); // hack?
} else {
desc = describe();
}
}
int ChannelLayoutView::index(AVChannel channel) const
{
return av_channel_layout_index_from_channel(&m_layout, channel);
}
int ChannelLayoutView::index(const char *name) const
{
return av_channel_layout_index_from_string(&m_layout, name);
}
AVChannel ChannelLayoutView::channel(unsigned int index) const
{
return av_channel_layout_channel_from_index(&m_layout, index);
}
AVChannel ChannelLayoutView::channel(const char *name) const
{
return av_channel_layout_channel_from_string(&m_layout, name);
}
bool ChannelLayoutView::operator==(const ChannelLayoutView &other) const noexcept
{
return av_channel_layout_compare(&m_layout, &other.m_layout) == 0;
}
ChannelLayout ChannelLayoutView::clone() const
{
return ChannelLayout{*this};
}
ChannelLayout::ChannelLayout(const ChannelLayout &other)
: ChannelLayout()
{
// TODO: error checking
av_channel_layout_copy(&m_layout, &other.m_layout);
}
//ChannelLayout::ChannelLayout(ChannelLayoutView &&view)
// : ChannelLayout()
//{
//
//}
ChannelLayout::ChannelLayout(const ChannelLayoutView &view)
: ChannelLayout()
{
av_channel_layout_copy(&m_layout, view.raw());
}
ChannelLayout &ChannelLayout::operator=(const ChannelLayout &other)
{
ChannelLayout(other).swap(*this);
return *this;
}
ChannelLayout::ChannelLayout(ChannelLayout &&other)
: ChannelLayout()
{
m_layout = std::move(other.m_layout);
memset(&other.m_layout, 0, sizeof(other.m_layout)); // avoid double memory clean up
}
ChannelLayout &ChannelLayout::operator=(ChannelLayout&& other)
{
ChannelLayout(std::move(other)).swap(*this);
return *this;
}
ChannelLayout::~ChannelLayout()
{
av_channel_layout_uninit(&m_layout);
}
ChannelLayout::ChannelLayout(std::bitset<64> mask)
{
// TODO: error checking
av_channel_layout_from_mask(&m_layout, mask.to_ullong());
}
ChannelLayout::ChannelLayout(const char *str)
{
// TODO: error checking
av_channel_layout_from_string(&m_layout, str);
}
ChannelLayout::ChannelLayout(int channels)
{
// TODO: error checking
av_channel_layout_default(&m_layout, channels);
}
void ChannelLayout::release()
{
memset(&m_layout, 0, sizeof(m_layout));
}
void ChannelLayout::swap(ChannelLayout &other)
{
//std::swap(*raw(), *other.raw());
std::swap(m_layout, other.m_layout);
}
} // namespace av
#endif