Remarks
Retrieves the number of encoding bitrates (Constant Bitrate or CBR) supported by Windows Media components for a given frequency and number of channels.
Each of the supported bitrates can be obtained at a later time using the EncodeFormats.WMA.GetEncodingCBR method.
For further details about encoding in WMA format refer to the WMA object section.
For further information about available encoding formats see the EncodeFormats object.
Syntax
[Visual Basic]
control.EncodeFormats.WMA.GetEncodingCBRCount (
nFrequency as Long,
nChannels as Integer,
nEncodeMode as enumWmaEncodeModes
) as integer
|
|
[C++]
short control.EncodeFormats.WMA.GetEncodingCBRCount (
long nFrequency,
short nChannels,
short nEncodeMode
);
|
|
Parameter
|
Description
|
|
|
nFrequency
|
Frequency expressed in Hertz (e.g. 44100)
|
nChannels
|
Number of channels: 1 for Mono, 2 for Stereo
|
nEncodeMode
|
The encoding mode used for WMA (Windows Media Audio) format recording/encoding.
Supported values are the following:
Mnemonic Value
|
Numeric value
|
Meaning
|
WMA_ENCODE_CBR_STD_16
|
1
|
WMA Standard format at 16 bits per sample.
|
WMA_ENCODE_CBR_PRO_16
|
3
|
WMA Professional format at 16 bits per sample.
|
WMA_ENCODE_CBR_PRO_24
|
4
|
WMA Professional format at 24 bits per sample.
|
|
Return value
Value
|
Meaning
|
|
|
Negative value
|
An error occurred. Check the LastError property value in order to see the last error.
|
> 0
|
The number of supported encoding bitrates
|
|