Pin List VLCombine.TVLCombine.InputPins
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
Revision as of 00:16, 11 June 2013
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: TVLCombine
Contents |
Syntax
Delphi:
property InputPins : TOWPinList read FInputPins write FInputPins;
C++ Builder:
__property TOWPinList InputPins = { read=FInputPins, write=FInputPins };
Summary
The video input pins of the combine.
Description
A list of 2 Input Pins for the 2 input images to be combined
using the CombineOperation.
Delphi example:
VLCombine1.InputPins[0].Connect( VLAVIPlayer1.OutputPin ); VLCombine1.InputPins[1].Connect( VLAVIPlayer2.OutputPin );
C++ Builder example:
VLCombine1->InputPins->Pins[0]->Connect( VLAVIPlayer1->OutputPin ); VLCombine1->InputPins->Pins[1]->Connect( VLAVIPlayer2->OutputPin );
Visual C++(MFC) example:
VLCombine1.InputPins[0].Connect( VLAVIPlayer1.OutputPin ); VLCombine1.InputPins[1].Connect( VLAVIPlayer2.OutputPin );
C# example:
combine1.InputPins[0].Connect( AVIPlayer1.OutputPin ); combine1.InputPins[1].Connect( AVIPlayer2.OutputPin );