Property VLSnapshot.TVLSnapshot.PreserveFrameRate
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: TVLSnapshot
Contents |
Syntax
Delphi:
property PreserveFrameRate : Boolean read FPreserveFrameRate write FPreserveFrameRate default False;
C++ Builder:
__property bool PreserveFrameRate = { read=FPreserveFrameRate, write=FPreserveFrameRate, default=False };
Summary
Preserve the output frame rate.
Description
If this property is set to true, the output will keep sending
the latest snapshot with the same frame rate as the input.
Otherwise a new frame will be sent only once for each
Snapshot.
Delphi example:
VLSnapshot1.PreserveFrameRate := True;
C++ Builder example:
VLSnapshot1->PreserveFrameRate = true;
Visual C++(MFC) example:
VLSnapshot1.PreserveFrameRate = true;
C# example:
snapshot1.PreserveFrameRate = true;