Pin List VLFreeFrame.TVLFreeFrame.InputPins
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: TVLFreeFrame
Contents |
Syntax
Delphi:
property InputPins : TOWPinListOwner read FInputPins write FInputPins;
C++ Builder:
__property TOWPinListOwner InputPins = { read=FInputPins, write=FInputPins };
Summary
The video input pins of the FreeFrame.
Description
List of Input Pins for the FreeFrame filter.
You can connect the pins to any pin providing Video data.
Delphi example:
VLFreeFrame1.InputPins[0].Connect( VLAVIPlayer1.OutputPin );
C++ Builder example:
VLFreeFrame1->InputPins->Pins[0]->Connect( VLAVIPlayer1->OutputPin );
Visual C++(MFC) example:
VLFreeFrame1.InputPins[0].Connect( VLAVIPlayer1.OutputPin );
Visual C++/CLI example:
freeFrame1->InputPins[0]->ConnectConnect( aviPlayer1->OutputPin );
C# example:
freeFrame1.InputPins[0].Connect( aviPlayer1.OutputPin );
VB example:
FreeFrame1.InputPins(0).Connect( AVIPlayer1.OutputPin )