forked from h4tr3d/avcpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpixelformat.h
52 lines (37 loc) · 1.25 KB
/
pixelformat.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
#pragma once
#include <string>
#include <iostream>
#include "averror.h"
#include "ffmpeg.h"
extern "C" {
#include <libavutil/pixfmt.h>
#include <libavutil/pixdesc.h>
}
// We need not to be back compatible:
#ifdef PixelFormat
#undef PixelFormat
#endif
namespace av {
/**
* @brief The PixelFormat class is a simple wrapper for AVPixelFormat that allow to acces it it properties
*
* It has size same to the AVPixelFormat, but wrap pixel description function too.
*/
class PixelFormat : public PixSampleFmtWrapper<PixelFormat, AVPixelFormat>
{
public:
using Parent = PixSampleFmtWrapper<PixelFormat, AVPixelFormat>;
using Parent::Parent;
PixelFormat() = default;
explicit PixelFormat(const char* name) noexcept;
explicit PixelFormat(const std::string& name) noexcept;
// Info functions
const char* name(OptionalErrorCode ec = throws()) const;
const AVPixFmtDescriptor* descriptor(OptionalErrorCode ec = throws()) const;
int bitsPerPixel(OptionalErrorCode ec = throws()) const;
size_t planesCount(OptionalErrorCode ec = throws()) const;
PixelFormat swapEndianness() const noexcept;
// See FF_LOSS_xxx flags
size_t convertionLoss(PixelFormat dstFmt, bool srcHasAlpha = false) const noexcept;
};
} // namespace av