Property ALAudioMixer.TALAudioMixer.PumpPriority
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: TALAudioMixer
Contents |
Syntax
Delphi:
property PumpPriority : Cardinal read FPumpPriority write FPumpPriority default 0;
C++ Builder:
__property unsigned int PumpPriority = { read=FPumpPriority, write=FPumpPriority, default=0 };
Summary
Specifies the priority of the component as a pump.
Description
This filter is capable of pumping data. It means that if no
other pumping component is presented, the component will
start generating buffers, and sending them via its OutputPin.
Delphi example:
ALAudioMixer1.PumpPriority := 5;
C++ Builder example:
ALAudioMixer1->PumpPriority = 5;
Visual C++(MFC/Win32) example:
ALAudioMixer1.PumpPriority = 5;
C# Example:
audioMixer1.PumpPriority = 5;