Get Support
Home
Components
Examples
Namespaces
Classes
Files
File List
File Members
SDKs
EdgeVisDecoderSDK
RGBFormats.h
Go to the documentation of this file.
1
// Copyright (c) 2016 Digital Barriers
4
8
#pragma once
9
10
#ifdef __cplusplus
11
namespace
EdgeVisDecoderSDK
12
{
13
extern
"C"
{
14
#endif
15
22
typedef
enum
RGBFormat
23
{
24
// 4 bytes per pixel
25
RGB_Format_ARGB
,
26
RGB_Format_BGRA
,
27
RGB_Format_ABGR
,
28
RGB_Format_RGBA
,
29
// 3 bytes per pixel
30
RGB_Format_BGR24
,
31
RGB_Format_RGB24
,
32
// 2 bytes per pixel
33
RGB_Format_RGB565
,
34
RGB_Format_ARGB1555
,
35
RGB_Format_ARGB4444
,
36
// Unknown
37
RGB_Format_Unknown
38
}
RGBFormat
;
39
40
#ifdef __cplusplus
41
}
42
}
43
#endif
RGB_Format_ARGB1555
ARGB1555 2 bytes per pixel.
Definition:
RGBFormats.h:34
RGB_Format_BGRA
BGRA 4 bytes per pixel.
Definition:
RGBFormats.h:26
RGB_Format_ARGB4444
ARGB4444 2 bytes per pixel.
Definition:
RGBFormats.h:35
RGB_Format_Unknown
Unknown RGB format.
Definition:
RGBFormats.h:37
RGBFormat
RGBFormat
RGB formats supported by the RGBFrame Convert method.
Definition:
RGBFormats.h:22
RGB_Format_BGR24
BGR24 3 bytes per pixel.
Definition:
RGBFormats.h:30
RGB_Format_ABGR
ABGR 4 bytes per pixel.
Definition:
RGBFormats.h:27
RGB_Format_ARGB
ARGB 4 bytes per pixel.
Definition:
RGBFormats.h:25
RGB_Format_RGB565
RGBA565 2 bytes per pixel.
Definition:
RGBFormats.h:33
RGB_Format_RGBA
RGBA 4 bytes per pixel.
Definition:
RGBFormats.h:28
EdgeVisDecoderSDK
The EdgeVis Decoder SDK namespace.
RGB_Format_RGB24
RGB24 3 bytes per pixel.
Definition:
RGBFormats.h:31