Pin ALBasicCompression.TALBasicDecompressor.InputPin
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: TALBasicDecompressor
| Contents | 
Syntax
Delphi:
property InputPin : TSLOWBinarySinkPin read FInputPin write FInputPin;
C++ Builder:
__property TSLOWBinarySinkPin * InputPin = { read=FInputPin,  write=FInputPin };
Summary
The Compressed Audio Input Pin of the decompressor.
Description
InputPin is the compressed audio input pin of the
decompressor.
You can connect this pin to any pin providing generic buffer data.
Delphi example:
<c>ALAudioDecompressor1.InputPin.Connect( SLGenericFilter1.OutputPin );</c>
C++ Builder example:
<c>ALAudioDecompressor1->InputPin->Connect( SLGenericFilter1->OutputPin );</c>
Visual C++(MFC/Win32) example:
<c>ALAudioDecompressor1.InputPin.Connect( SLGenericFilter1.OutputPin );</c>
Visual C++/CLI example:
<c>audioDecompressor1->InputPin->Connect( genericFilter1->OutputPin );</c>
C# example:
<c>audioDecompressor1.InputPin.Connect( genericFilter1.OutputPin );</c>
VB example:
<c>AudioDecompressor1.InputPin.Connect( GenericFilter1.OutputPin )</c>
