Property ALOggPlayer.TALOggPlayer.BufferSize
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: TALOggPlayer
Contents |
Syntax
Delphi:
property BufferSize : Integer read GetBufferSize write SetBufferSize;
C++ Builder:
__property int BufferSize = { read=GetBufferSize, write=SetBufferSize };
Summary
Desired size of the audio buffer.
Description
Use this property to specify the desired buffer size in bytes
for the Ogg player.
Delphi example:
ALOggPlayer1.BufferSize := 1024;
C++ Builder example:
ALOggPlayer1->BufferSize = 1024;
Visual C++(MFC/Win32) example:
ALOggPlayer1.BufferSize = 1024;
C# Example:
oggPlayer1.BufferSize = 1024;