Enum VLAVILogger.TVLColorBits
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: VideoLabBasicPkg
Unit: VLAVILogger
Contents |
Syntax
Delphi:
type TVLColorBits = (cbAuto, cb8, cb16_555, cb16_565, cb24, cb32);
C++ Builder:
enum TVLColorBits {cbAuto, cb8, cb16_555, cb16_565, cb24, cb32};
Visual C++ (MFC):
enum CTVLColorBits {cbAuto, cb8, cb16_555, cb16_565, cb24, cb32};
Summary
Enumerated type for the AVILogger video color bits.
Description
Defines enumerated type for the AVILogger video color bits.
Values
cbAuto | Auto select the color mode for logging video frames. |
cb8 | 8 bit color mode for logging video frames. |
cb16_555 | 16 bit 5 red 5 green 5 blue color mode for logging video frames. |
cb16_565 | 16 bit 5 red 6 green 5 blue color mode for logging video frames. |
cb24 | 24 bit color mode for logging video frames. |
cb32 | 32 bit color mode for logging video frames. |