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
29  // 3 bytes per pixel
32  // 2 bytes per pixel
36  // Unknown
38  } RGBFormat;
39 
40 #ifdef __cplusplus
41  }
42 }
43 #endif
ARGB1555 2 bytes per pixel.
Definition: RGBFormats.h:34
BGRA 4 bytes per pixel.
Definition: RGBFormats.h:26
ARGB4444 2 bytes per pixel.
Definition: RGBFormats.h:35
Unknown RGB format.
Definition: RGBFormats.h:37
RGBFormat
RGB formats supported by the RGBFrame Convert method.
Definition: RGBFormats.h:22
BGR24 3 bytes per pixel.
Definition: RGBFormats.h:30
ABGR 4 bytes per pixel.
Definition: RGBFormats.h:27
ARGB 4 bytes per pixel.
Definition: RGBFormats.h:25
RGBA565 2 bytes per pixel.
Definition: RGBFormats.h:33
RGBA 4 bytes per pixel.
Definition: RGBFormats.h:28
The EdgeVis Decoder SDK namespace.
RGB24 3 bytes per pixel.
Definition: RGBFormats.h:31