BASS_Encode_StartCA
Sets up an encoder on a channel, using a CoreAudio codec and sending the output to a user defined function.
HENCODE BASS_Encode_StartCA( DWORD handle, DWORD ftype, DWORD atype, DWORD flags, DWORD bitrate, ENCODEPROCEX *proc, void *user );
Parameters
handle | The channel handle... a HSTREAM, HMUSIC, or HRECORD. | ||||||||||||||
ftype | File format identifier. | ||||||||||||||
atype | Audio data format identifier. | ||||||||||||||
flags | A combination of these flags.
| ||||||||||||||
bitrate | The bitrate in bits per second... 0 = the codec's default bitrate. | ||||||||||||||
proc | Callback function to receive the encoded data. | ||||||||||||||
user | User instance data to pass to the callback function. |
Return value
The encoder handle is returned if the encoder is successfully started, else 0 is returned. Use BASS_ErrorGetCode to get the error code.Error codes
BASS_ERROR_HANDLE | handle is not valid. |
BASS_ERROR_FILEFORM | ftype is not valid. |
BASS_ERROR_CODEC | atype is not valid or supported with ftype. |
BASS_ERROR_NOTAVAIL | bitrate is not supported by the codec. |
BASS_ERROR_FORMAT | The channel's sample format is not supported by the codec. |
BASS_ERROR_UNKNOWN | Some other mystery problem! |
Remarks
This function allows CoreAudio codecs to be used for encoding. A list of standard file and audio data format identifiers is available from Apple, here. The available file and audio data identifiers, as well as other information, can be retreived via the Audio File Services and Audio Format Services APIs, eg. the kAudioFileGlobalInfo_WritableTypes and kAudioFormatProperty_EncodeFormatIDs properties.Internally, the sending of sample data to the encoder is implemented via a DSP callback on the channel. That means when you play the channel (or call BASS_ChannelGetData if it's a decoding channel), the sample data will be sent to the encoder at the same time. The encoding is performed in the DSP callback; there isn't a separate process doing the encoding, as when using an external encoder via BASS_Encode_Start.
By default, the encoder DSP has a priority setting of -1000, which determines where in the DSP chain the encoding is performed. That can be changed via the BASS_CONFIG_ENCODE_PRIORITY config option.
Besides the automatic DSP system, data can also be manually fed to the encoder via the BASS_Encode_Write function. Both methods can be used together, but in general, the "automatic" system ought to be paused when using the "manual" system, via the BASS_ENCODE_PAUSE flag or the BASS_Encode_SetPaused function. Data fed to the encoder manually does not go through the source channel's DSP chain, so any DSP/FX set on the channel will not be applied to the data.
When queued encoding is enabled via the BASS_ENCODE_QUEUE flag, the DSP system or BASS_Encode_Write call will just buffer the data, and the data will then be fed to the encoder by another thread. The buffer will grow as needed to hold the queued data, up to a limit specified by the BASS_CONFIG_ENCODE_QUEUE config option. If the limit is exceeded (or there is no free memory), data will be lost; BASS_Encode_SetNotify can be used to be notified of that occurrence. The amount of data that is currently queued, as well as the queue limit and how much data has been lost, is available from BASS_Encode_GetCount.
When done encoding, use BASS_Encode_Stop to close the encoder.
Multiple encoders can be set on a channel. For convenience, most of the encoder functions will accept either an encoder handle or a channel handle. When a channel handle is used, the function is applied to all encoders that are set on that channel.
BASS_Encode_StartCAFile can be used to have the encoder output sent to a file instead of a callback function.