Pin VLImageGen.TVLImageGen.ImageInputPin
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: TVLImageGen
Contents |
Syntax
Delphi:
property ImageInputPin : TVLOWImageSinkPin read FImageInputPin write FImageInputPin;
C++ Builder:
__property TVLOWImageSinkPin * ImageInputPin = { read=FImageInputPin, write=FImageInputPin };
Summary
The Image Video Input Pin of the filter.
Description
ImageInputPin is the image video input pin of the component.
If this pin is connected, the video buffers arriving on this
pin will be used by the generator for its output.
You can connect this pin to any pin providing Video data.
Delphi example:
<c>VLImageGen1.ImageInputPin.Connect( VLAVIPlayer1.OutputPin );</c>
C++ Builder example:
<c>VLImageGen1->ImageInputPin->Connect( VLAVIPlayer1->OutputPin );</c>
Visual C++(MFC) example:
<c>VLImageGen1.ImageInputPin.Connect( VLAVIPlayer1.OutputPin );</c>
Visual C++/CLI example:
<c>imageGen1->ImageInputPin->Connect( aviPlayer1->OutputPin );</c>
C# example:
<c>imageGen1.ImageInputPin.Connect( aviPlayer1.OutputPin );</c>
VB example:
<c>ImageGen1.ImageInputPin.Connect( AVIPlayer1.OutputPin )</c>