AIROC™ BTSDK v4.0 - Documentation | ||||
This page describes the process and functions used to encode Opus. More...
Modules | |
Encoder related CTLs | |
These are convenience macros for use with the opus_encode_ctl interface. | |
Typedefs | |
typedef struct OpusEncoder | OpusEncoder |
Opus encoder state. More... | |
Functions | |
OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int | opus_encoder_get_size (int channels) |
Gets the size of an OpusEncoder structure. More... | |
OPUS_EXPORT OPUS_WARN_UNUSED_RESULT OpusEncoder * | opus_encoder_create (int Fs, int channels, int *error) |
Allocates and initializes an encoder state. More... | |
OPUS_EXPORT int | opus_encoder_init (OpusEncoder *st, int Fs, int channels) OPUS_ARG_NONNULL(1) |
Initializes a previously allocated encoder state The memory pointed to by st must be at least the size returned by opus_encoder_get_size(). More... | |
OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int | opus_encode_ed (OpusEncoder *st, const opus_int16 *pcm, int frame_size, unsigned char *data, int max_data_bytes) OPUS_ARG_NONNULL(1) OPUS_ARG_NONNULL(2) OPUS_ARG_NONNULL(4) |
Encodes an Opus frame. More... | |
OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int | opus_encode_float (OpusEncoder *st, const float *pcm, int frame_size, unsigned char *data, int max_data_bytes) OPUS_ARG_NONNULL(1) OPUS_ARG_NONNULL(2) OPUS_ARG_NONNULL(4) |
Encodes an Opus frame from floating point input. More... | |
OPUS_EXPORT void | opus_encoder_destroy (OpusEncoder *st) |
Frees an OpusEncoder allocated by opus_encoder_create(). More... | |
OPUS_EXPORT int | opus_encoder_ctl (OpusEncoder *st, int request,...) OPUS_ARG_NONNULL(1) |
Perform a CTL function on an Opus encoder. More... | |
This page describes the process and functions used to encode Opus.
Since Opus is a stateful codec, the encoding process starts with creating an encoder state. This can be done with:
From this point, enc
can be used for encoding an audio stream. An encoder state must not be used for more than one stream at the same time. Similarly, the encoder state must not be re-initialized for each frame.
While opus_encoder_create() allocates memory for the state, it's also possible to initialize pre-allocated memory:
where opus_encoder_get_size() returns the required size for the encoder state. Note that future versions of this code may change the size, so no assuptions should be made about it.
The encoder state is always continuous in memory and only a shallow copy is sufficient to copy it (e.g. memcpy())
It is possible to change some of the encoder's settings using the opus_encoder_ctl() interface. All these settings already default to the recommended value, so they should only be changed when necessary. The most common settings one may want to change are:
where
See Encoder related CTLs and Generic CTLs for a complete list of parameters that can be set or queried. Most parameters can be set or changed at any time during a stream.
To encode a frame, opus_encode() or opus_encode_float() must be called with exactly one frame (2.5, 5, 10, 20, 40 or 60 ms) of audio data:
where
opus_encode() and opus_encode_float() return the number of bytes actually written to the packet. The return value can be negative, which indicates that an error has occurred. If the return value is 1 byte, then the packet does not need to be transmitted (DTX).
Once the encoder state if no longer needed, it can be destroyed with
If the encoder was created with opus_encoder_init() rather than opus_encoder_create(), then no action is required aside from potentially freeing the memory that was manually allocated for it (calling free(enc) for the example above)
typedef struct OpusEncoder OpusEncoder |
Opus encoder state.
This contains the complete state of an Opus encoder. It is position independent and can be freely copied.
OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_encode_ed | ( | OpusEncoder * | st, |
const opus_int16 * | pcm, | ||
int | frame_size, | ||
unsigned char * | data, | ||
int | max_data_bytes | ||
) |
Encodes an Opus frame.
[in] | st | OpusEncoder* : Encoder state |
[in] | pcm | opus_int16* : Input signal (interleaved if 2 channels). length is frame_size*channels*sizeof(opus_int16) |
[in] | frame_size | int : Number of samples per channel in the input signal. This must be an Opus frame size for the encoder's sampling rate. For example, at 48 kHz the permitted values are 120, 240, 480, 960, 1920, and 2880. Passing in a duration of less than 10 ms (480 samples at 48 kHz) will prevent the encoder from using the LPC or hybrid modes. |
[out] | data | unsigned char* : Output payload. This must contain storage for at least max_data_bytes. |
[in] | max_data_bytes | opus_int32 : Size of the allocated memory for the output payload. This may be used to impose an upper limit on the instant bitrate, but should not be used as the only bitrate control. Use OPUS_SET_BITRATE to control the bitrate. |
OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_encode_float | ( | OpusEncoder * | st, |
const float * | pcm, | ||
int | frame_size, | ||
unsigned char * | data, | ||
int | max_data_bytes | ||
) |
Encodes an Opus frame from floating point input.
[in] | st | OpusEncoder* : Encoder state |
[in] | pcm | float* : Input in float format (interleaved if 2 channels), with a normal range of +/-1.0. Samples with a range beyond +/-1.0 are supported but will be clipped by decoders using the integer API and should only be used if it is known that the far end supports extended dynamic range. length is frame_size*channels*sizeof(float) |
[in] | frame_size | int : Number of samples per channel in the input signal. This must be an Opus frame size for the encoder's sampling rate. For example, at 48 kHz the permitted values are 120, 240, 480, 960, 1920, and 2880. Passing in a duration of less than 10 ms (480 samples at 48 kHz) will prevent the encoder from using the LPC or hybrid modes. |
[out] | data | unsigned char* : Output payload. This must contain storage for at least max_data_bytes. |
[in] | max_data_bytes | opus_int32 : Size of the allocated memory for the output payload. This may be used to impose an upper limit on the instant bitrate, but should not be used as the only bitrate control. Use OPUS_SET_BITRATE to control the bitrate. |
OPUS_EXPORT OPUS_WARN_UNUSED_RESULT OpusEncoder* opus_encoder_create | ( | int | Fs, |
int | channels, | ||
int * | error | ||
) |
Allocates and initializes an encoder state.
There are three coding modes:
OPUS_APPLICATION_VOIP gives best quality at a given bitrate for voice signals. It enhances the input signal by high-pass filtering and emphasizing formants and harmonics. Optionally it includes in-band forward error correction to protect against packet loss. Use this mode for typical VoIP applications. Because of the enhancement, even at high bitrates the output may sound different from the input.
OPUS_APPLICATION_AUDIO gives best quality at a given bitrate for most non-voice signals like music. Use this mode for music and mixed (music/voice) content, broadcast, and applications requiring less than 15 ms of coding delay.
OPUS_APPLICATION_RESTRICTED_LOWDELAY configures low-delay mode that disables the speech-optimized mode in exchange for slightly reduced delay. This mode can only be set on an newly initialized or freshly reset encoder because it changes the codec delay.
This is useful when the caller knows that the speech-optimized modes will not be needed (use with caution).
[in] | Fs | opus_int32 : Sampling rate of input signal (Hz) This must be one of 8000, 12000, 16000, 24000, or 48000. |
[in] | channels | int : Number of channels (1 or 2) in input signal |
[in] | application | int : Coding mode (OPUS_APPLICATION_VOIP/OPUS_APPLICATION_AUDIO/OPUS_APPLICATION_RESTRICTED_LOWDELAY) |
[out] | error | int* : Error codes |
OPUS_EXPORT int opus_encoder_ctl | ( | OpusEncoder * | st, |
int | request, | ||
... | |||
) |
Perform a CTL function on an Opus encoder.
Generally the request and subsequent arguments are generated by a convenience macro.
st | OpusEncoder* : Encoder state. |
request | This and all remaining parameters should be replaced by one of the convenience macros in Generic CTLs or Encoder related CTLs. |
OPUS_EXPORT void opus_encoder_destroy | ( | OpusEncoder * | st | ) |
Frees an OpusEncoder
allocated by opus_encoder_create().
[in] | st | OpusEncoder* : State to be freed. |
OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_encoder_get_size | ( | int | channels | ) |
Gets the size of an OpusEncoder
structure.
[in] | channels | int : Number of channels. This must be 1 or 2. |
OPUS_EXPORT int opus_encoder_init | ( | OpusEncoder * | st, |
int | Fs, | ||
int | channels | ||
) |
Initializes a previously allocated encoder state The memory pointed to by st must be at least the size returned by opus_encoder_get_size().
This is intended for applications which use their own allocator instead of malloc.
[in] | st | OpusEncoder* : Encoder state |
[in] | Fs | opus_int32 : Sampling rate of input signal (Hz) This must be one of 8000, 12000, 16000, 24000, or 48000. |
[in] | channels | int : Number of channels (1 or 2) in input signal |
[in] | application | int : Coding mode (OPUS_APPLICATION_VOIP/OPUS_APPLICATION_AUDIO/OPUS_APPLICATION_RESTRICTED_LOWDELAY) |
OPUS_OK | Success or Error codes |