Property ALVorbisDecompressor.TALVorbisDecompressor.SampleRate
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: TALVorbisDecompressor
Contents |
Syntax
Delphi:
property SampleRate : Integer read GetSampleRate;
C++ Builder:
__property int SampleRate = { read=GetSampleRate };
Summary
The current audio sample rate.
Description
Use this property to get the current audio sample rate.
Delphi example:
var AValue : Integer; AValue := ALVorbisDecompressor1.SampleRate;
C++ Builder example:
int AValue := ALVorbisDecompressor1->SampleRate;
Visual C++(MFC/Win32) example:
int AValue := ALVorbisDecompressor1.SampleRate;
C# example:
int AValue := vorbisDecompressor1.SampleRate;