Enum VLInternalStore.TVLVideoFormat
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: VLInternalStore
Contents |
Syntax
Delphi:
type TVLVideoFormat = (vfRGB24, vfRGBA32, vfYUY2, vfUYVY, vfYV12, vfIYUV, vfRGB565, vfRGB555, vfGrayScale, vfGray16);
C++ Builder:
enum TVLVideoFormat {vfRGB24, vfRGBA32, vfYUY2, vfUYVY, vfYV12, vfIYUV, vfRGB565, vfRGB555, vfGrayScale, vfGray16};
Visual C++ (MFC):
enum CTVLVideoFormat {vfRGB24, vfRGBA32, vfYUY2, vfUYVY, vfYV12, vfIYUV, vfRGB565, vfRGB555, vfGrayScale, vfGray16};
Summary
Enumerated type for the supported buffer video formats.
Description
Defines enumerated type for the supported buffer video formats.
Values
vfRGB24 | RGB24 buffer video format. |
vfRGBA32 | RGBA32 buffer video format. |
vfYUY2 | YUY2 buffer video format. |
vfUYVY | UYVY buffer video format. |
vfYV12 | YV12 buffer video format. |
vfIYUV | IYUV buffer video format. |
vfRGB565 | RGB565 buffer video format. |
vfRGB555 | RGB555 buffer video format. |
vfGrayScale | 8 bit GrayScale buffer video format. |
vfGray16 | 16 bit GrayScale buffer video format. |