Property VLVideoDecompressor.TVLVideoDecompressor.VideoFormat
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.
Class: TVLVideoDecompressor
Contents |
Syntax
Delphi:
property VideoFormat : TVLVideoFormat read FVideoFormat write SetVideoFormat default vfRGB24;
C++ Builder:
__property TVLVideoFormat VideoFormat = { read=FVideoFormat, write=SetVideoFormat, default=vfRGB24 };
Summary
Desired video format of the output - RGB24 or YUY2.
Description
Use this property to specify the desired video format of the
output - RGB24 or YUY2.
Delphi example:
VLVideoDecompressor1.ColorMode := vfRGB24;
C++ Builder example:
VLVideoDecompressor1->ColorMode = vfRGB24;
Visual C++(MFC) example:
VLVideoDecompressor1.ColorMode = vfRGB24;
Visual C++/CLI example:
videoDecompressor1->ColorMode = Mitov::VideoLab::VideoFormat::RGB24;
C# example:
videoDecompressor1.ColorMode = Mitov.VideoLab.VideoFormat.RGB24;
VB example:
VideoDecompressor1.ColorMode = Mitov.VideoLab.VideoFormat.RGB24