Pin VLTransparentColor.TVLTransparentColor.BackgroundInputPin
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: TVLTransparentColor
Contents |
Syntax
Delphi:
property BackgroundInputPin : TVLOWImageSinkPin read FBackgroundInputPin write FBackgroundInputPin;
C++ Builder:
__property TVLOWImageSinkPin * BackgroundInputPin = { read=FBackgroundInputPin, write=FBackgroundInputPin };
Summary
The Background Video Input Pin of the component.
Description
BackgroundInputPin is the background video input pin of the
component.
You can connect this pin to any pin providing Video data.
The video received by this pin will serve as a background for the video received via the InputPin.
Delphi example:
VLTransparentColor1.BackgroundInputPin.Connect( VLAVIPlayer2.OutputPin );
C++ Builder example:
VLTransparentColor1->BackgroundInputPin->Connect( VLAVIPlayer2->OutputPin );
Visual C++(MFC) example:
VLTransparentColor1.BackgroundInputPin.Connect( VLAVIPlayer2.OutputPin );
Visual C++/CLI example:
transparentColor1->BackgroundInputPin->Connect( aviPlayer2->OutputPin );
C# example:
transparentColor1.BackgroundInputPin.Connect( aviPlayer2.OutputPin );
VB example:
TransparentColor1.BackgroundInputPin.Connect( AVIPlayer2.OutputPin )