Enum VLFreeFrame.TVLFFOptimizedFor
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: VideoLabPkg
Unit: VLFreeFrame
Contents |
Syntax
Delphi:
type TVLFFOptimizedFor = (ofNone, ofInPlace, ofCopy, ofBoth);
C++ Builder:
enum TVLFFOptimizedFor {ofNone, ofInPlace, ofCopy, ofBoth};
Visual C++ (MFC):
enum CTVLFFOptimizedFor {ofNone, ofInPlace, ofCopy, ofBoth};
Summary
FreeFrame filter optimizations enumeration.
Description
Defines the FreeFrame filter optimizations enumeration.
Delphi example:
var AValue : TVLFFOptimizedFor; AValue := VLFreeFrame1.MinorVertion;
C++ Builder example:
TVLFFOptimizedFor AValue = VLFreeFrame1->MinorVertion;
Visual C++(MFC) example:
CTVLFFOptimizedFor AValue = VLFreeFrame1.MinorVertion;
Visual C++/CLI example:
Mitov::VideoLab::FFOptimizedFor value = freeFrame1->MinorVertion;
C# example:
Mitov.VideoLab.FFOptimizedFor value = freeFrame1.MinorVertion;
VB example:
Dim AValue As Mitov.VideoLab.FFOptimizedFor = FreeFrame1.MinorVertion
Values
ofNone | Not optimized for a particular mode. |
ofInPlace | Optimized for InPlace operations. |
ofCopy | Optimized for Copy operations. |
ofBoth | Optimized for both Copy and InPlace operations. |