cannam@154
|
1 /* Copyright (c) 2010-2011 Xiph.Org Foundation, Skype Limited
|
cannam@154
|
2 Written by Jean-Marc Valin and Koen Vos */
|
cannam@154
|
3 /*
|
cannam@154
|
4 Redistribution and use in source and binary forms, with or without
|
cannam@154
|
5 modification, are permitted provided that the following conditions
|
cannam@154
|
6 are met:
|
cannam@154
|
7
|
cannam@154
|
8 - Redistributions of source code must retain the above copyright
|
cannam@154
|
9 notice, this list of conditions and the following disclaimer.
|
cannam@154
|
10
|
cannam@154
|
11 - Redistributions in binary form must reproduce the above copyright
|
cannam@154
|
12 notice, this list of conditions and the following disclaimer in the
|
cannam@154
|
13 documentation and/or other materials provided with the distribution.
|
cannam@154
|
14
|
cannam@154
|
15 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
cannam@154
|
16 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
cannam@154
|
17 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
cannam@154
|
18 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
cannam@154
|
19 OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
cannam@154
|
20 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
cannam@154
|
21 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
cannam@154
|
22 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
cannam@154
|
23 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
cannam@154
|
24 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
cannam@154
|
25 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
cannam@154
|
26 */
|
cannam@154
|
27
|
cannam@154
|
28 /**
|
cannam@154
|
29 * @file opus.h
|
cannam@154
|
30 * @brief Opus reference implementation API
|
cannam@154
|
31 */
|
cannam@154
|
32
|
cannam@154
|
33 #ifndef OPUS_H
|
cannam@154
|
34 #define OPUS_H
|
cannam@154
|
35
|
cannam@154
|
36 #include "opus_types.h"
|
cannam@154
|
37 #include "opus_defines.h"
|
cannam@154
|
38
|
cannam@154
|
39 #ifdef __cplusplus
|
cannam@154
|
40 extern "C" {
|
cannam@154
|
41 #endif
|
cannam@154
|
42
|
cannam@154
|
43 /**
|
cannam@154
|
44 * @mainpage Opus
|
cannam@154
|
45 *
|
cannam@154
|
46 * The Opus codec is designed for interactive speech and audio transmission over the Internet.
|
cannam@154
|
47 * It is designed by the IETF Codec Working Group and incorporates technology from
|
cannam@154
|
48 * Skype's SILK codec and Xiph.Org's CELT codec.
|
cannam@154
|
49 *
|
cannam@154
|
50 * The Opus codec is designed to handle a wide range of interactive audio applications,
|
cannam@154
|
51 * including Voice over IP, videoconferencing, in-game chat, and even remote live music
|
cannam@154
|
52 * performances. It can scale from low bit-rate narrowband speech to very high quality
|
cannam@154
|
53 * stereo music. Its main features are:
|
cannam@154
|
54
|
cannam@154
|
55 * @li Sampling rates from 8 to 48 kHz
|
cannam@154
|
56 * @li Bit-rates from 6 kb/s to 510 kb/s
|
cannam@154
|
57 * @li Support for both constant bit-rate (CBR) and variable bit-rate (VBR)
|
cannam@154
|
58 * @li Audio bandwidth from narrowband to full-band
|
cannam@154
|
59 * @li Support for speech and music
|
cannam@154
|
60 * @li Support for mono and stereo
|
cannam@154
|
61 * @li Support for multichannel (up to 255 channels)
|
cannam@154
|
62 * @li Frame sizes from 2.5 ms to 60 ms
|
cannam@154
|
63 * @li Good loss robustness and packet loss concealment (PLC)
|
cannam@154
|
64 * @li Floating point and fixed-point implementation
|
cannam@154
|
65 *
|
cannam@154
|
66 * Documentation sections:
|
cannam@154
|
67 * @li @ref opus_encoder
|
cannam@154
|
68 * @li @ref opus_decoder
|
cannam@154
|
69 * @li @ref opus_repacketizer
|
cannam@154
|
70 * @li @ref opus_multistream
|
cannam@154
|
71 * @li @ref opus_libinfo
|
cannam@154
|
72 * @li @ref opus_custom
|
cannam@154
|
73 */
|
cannam@154
|
74
|
cannam@154
|
75 /** @defgroup opus_encoder Opus Encoder
|
cannam@154
|
76 * @{
|
cannam@154
|
77 *
|
cannam@154
|
78 * @brief This page describes the process and functions used to encode Opus.
|
cannam@154
|
79 *
|
cannam@154
|
80 * Since Opus is a stateful codec, the encoding process starts with creating an encoder
|
cannam@154
|
81 * state. This can be done with:
|
cannam@154
|
82 *
|
cannam@154
|
83 * @code
|
cannam@154
|
84 * int error;
|
cannam@154
|
85 * OpusEncoder *enc;
|
cannam@154
|
86 * enc = opus_encoder_create(Fs, channels, application, &error);
|
cannam@154
|
87 * @endcode
|
cannam@154
|
88 *
|
cannam@154
|
89 * From this point, @c enc can be used for encoding an audio stream. An encoder state
|
cannam@154
|
90 * @b must @b not be used for more than one stream at the same time. Similarly, the encoder
|
cannam@154
|
91 * state @b must @b not be re-initialized for each frame.
|
cannam@154
|
92 *
|
cannam@154
|
93 * While opus_encoder_create() allocates memory for the state, it's also possible
|
cannam@154
|
94 * to initialize pre-allocated memory:
|
cannam@154
|
95 *
|
cannam@154
|
96 * @code
|
cannam@154
|
97 * int size;
|
cannam@154
|
98 * int error;
|
cannam@154
|
99 * OpusEncoder *enc;
|
cannam@154
|
100 * size = opus_encoder_get_size(channels);
|
cannam@154
|
101 * enc = malloc(size);
|
cannam@154
|
102 * error = opus_encoder_init(enc, Fs, channels, application);
|
cannam@154
|
103 * @endcode
|
cannam@154
|
104 *
|
cannam@154
|
105 * where opus_encoder_get_size() returns the required size for the encoder state. Note that
|
cannam@154
|
106 * future versions of this code may change the size, so no assuptions should be made about it.
|
cannam@154
|
107 *
|
cannam@154
|
108 * The encoder state is always continuous in memory and only a shallow copy is sufficient
|
cannam@154
|
109 * to copy it (e.g. memcpy())
|
cannam@154
|
110 *
|
cannam@154
|
111 * It is possible to change some of the encoder's settings using the opus_encoder_ctl()
|
cannam@154
|
112 * interface. All these settings already default to the recommended value, so they should
|
cannam@154
|
113 * only be changed when necessary. The most common settings one may want to change are:
|
cannam@154
|
114 *
|
cannam@154
|
115 * @code
|
cannam@154
|
116 * opus_encoder_ctl(enc, OPUS_SET_BITRATE(bitrate));
|
cannam@154
|
117 * opus_encoder_ctl(enc, OPUS_SET_COMPLEXITY(complexity));
|
cannam@154
|
118 * opus_encoder_ctl(enc, OPUS_SET_SIGNAL(signal_type));
|
cannam@154
|
119 * @endcode
|
cannam@154
|
120 *
|
cannam@154
|
121 * where
|
cannam@154
|
122 *
|
cannam@154
|
123 * @arg bitrate is in bits per second (b/s)
|
cannam@154
|
124 * @arg complexity is a value from 1 to 10, where 1 is the lowest complexity and 10 is the highest
|
cannam@154
|
125 * @arg signal_type is either OPUS_AUTO (default), OPUS_SIGNAL_VOICE, or OPUS_SIGNAL_MUSIC
|
cannam@154
|
126 *
|
cannam@154
|
127 * See @ref opus_encoderctls and @ref opus_genericctls 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.
|
cannam@154
|
128 *
|
cannam@154
|
129 * 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:
|
cannam@154
|
130 * @code
|
cannam@154
|
131 * len = opus_encode(enc, audio_frame, frame_size, packet, max_packet);
|
cannam@154
|
132 * @endcode
|
cannam@154
|
133 *
|
cannam@154
|
134 * where
|
cannam@154
|
135 * <ul>
|
cannam@154
|
136 * <li>audio_frame is the audio data in opus_int16 (or float for opus_encode_float())</li>
|
cannam@154
|
137 * <li>frame_size is the duration of the frame in samples (per channel)</li>
|
cannam@154
|
138 * <li>packet is the byte array to which the compressed data is written</li>
|
cannam@154
|
139 * <li>max_packet is the maximum number of bytes that can be written in the packet (4000 bytes is recommended).
|
cannam@154
|
140 * Do not use max_packet to control VBR target bitrate, instead use the #OPUS_SET_BITRATE CTL.</li>
|
cannam@154
|
141 * </ul>
|
cannam@154
|
142 *
|
cannam@154
|
143 * opus_encode() and opus_encode_float() return the number of bytes actually written to the packet.
|
cannam@154
|
144 * The return value <b>can be negative</b>, which indicates that an error has occurred. If the return value
|
cannam@154
|
145 * is 2 bytes or less, then the packet does not need to be transmitted (DTX).
|
cannam@154
|
146 *
|
cannam@154
|
147 * Once the encoder state if no longer needed, it can be destroyed with
|
cannam@154
|
148 *
|
cannam@154
|
149 * @code
|
cannam@154
|
150 * opus_encoder_destroy(enc);
|
cannam@154
|
151 * @endcode
|
cannam@154
|
152 *
|
cannam@154
|
153 * If the encoder was created with opus_encoder_init() rather than opus_encoder_create(),
|
cannam@154
|
154 * then no action is required aside from potentially freeing the memory that was manually
|
cannam@154
|
155 * allocated for it (calling free(enc) for the example above)
|
cannam@154
|
156 *
|
cannam@154
|
157 */
|
cannam@154
|
158
|
cannam@154
|
159 /** Opus encoder state.
|
cannam@154
|
160 * This contains the complete state of an Opus encoder.
|
cannam@154
|
161 * It is position independent and can be freely copied.
|
cannam@154
|
162 * @see opus_encoder_create,opus_encoder_init
|
cannam@154
|
163 */
|
cannam@154
|
164 typedef struct OpusEncoder OpusEncoder;
|
cannam@154
|
165
|
cannam@154
|
166 /** Gets the size of an <code>OpusEncoder</code> structure.
|
cannam@154
|
167 * @param[in] channels <tt>int</tt>: Number of channels.
|
cannam@154
|
168 * This must be 1 or 2.
|
cannam@154
|
169 * @returns The size in bytes.
|
cannam@154
|
170 */
|
cannam@154
|
171 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_encoder_get_size(int channels);
|
cannam@154
|
172
|
cannam@154
|
173 /**
|
cannam@154
|
174 */
|
cannam@154
|
175
|
cannam@154
|
176 /** Allocates and initializes an encoder state.
|
cannam@154
|
177 * There are three coding modes:
|
cannam@154
|
178 *
|
cannam@154
|
179 * @ref OPUS_APPLICATION_VOIP gives best quality at a given bitrate for voice
|
cannam@154
|
180 * signals. It enhances the input signal by high-pass filtering and
|
cannam@154
|
181 * emphasizing formants and harmonics. Optionally it includes in-band
|
cannam@154
|
182 * forward error correction to protect against packet loss. Use this
|
cannam@154
|
183 * mode for typical VoIP applications. Because of the enhancement,
|
cannam@154
|
184 * even at high bitrates the output may sound different from the input.
|
cannam@154
|
185 *
|
cannam@154
|
186 * @ref OPUS_APPLICATION_AUDIO gives best quality at a given bitrate for most
|
cannam@154
|
187 * non-voice signals like music. Use this mode for music and mixed
|
cannam@154
|
188 * (music/voice) content, broadcast, and applications requiring less
|
cannam@154
|
189 * than 15 ms of coding delay.
|
cannam@154
|
190 *
|
cannam@154
|
191 * @ref OPUS_APPLICATION_RESTRICTED_LOWDELAY configures low-delay mode that
|
cannam@154
|
192 * disables the speech-optimized mode in exchange for slightly reduced delay.
|
cannam@154
|
193 * This mode can only be set on an newly initialized or freshly reset encoder
|
cannam@154
|
194 * because it changes the codec delay.
|
cannam@154
|
195 *
|
cannam@154
|
196 * This is useful when the caller knows that the speech-optimized modes will not be needed (use with caution).
|
cannam@154
|
197 * @param [in] Fs <tt>opus_int32</tt>: Sampling rate of input signal (Hz)
|
cannam@154
|
198 * This must be one of 8000, 12000, 16000,
|
cannam@154
|
199 * 24000, or 48000.
|
cannam@154
|
200 * @param [in] channels <tt>int</tt>: Number of channels (1 or 2) in input signal
|
cannam@154
|
201 * @param [in] application <tt>int</tt>: Coding mode (@ref OPUS_APPLICATION_VOIP/@ref OPUS_APPLICATION_AUDIO/@ref OPUS_APPLICATION_RESTRICTED_LOWDELAY)
|
cannam@154
|
202 * @param [out] error <tt>int*</tt>: @ref opus_errorcodes
|
cannam@154
|
203 * @note Regardless of the sampling rate and number channels selected, the Opus encoder
|
cannam@154
|
204 * can switch to a lower audio bandwidth or number of channels if the bitrate
|
cannam@154
|
205 * selected is too low. This also means that it is safe to always use 48 kHz stereo input
|
cannam@154
|
206 * and let the encoder optimize the encoding.
|
cannam@154
|
207 */
|
cannam@154
|
208 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT OpusEncoder *opus_encoder_create(
|
cannam@154
|
209 opus_int32 Fs,
|
cannam@154
|
210 int channels,
|
cannam@154
|
211 int application,
|
cannam@154
|
212 int *error
|
cannam@154
|
213 );
|
cannam@154
|
214
|
cannam@154
|
215 /** Initializes a previously allocated encoder state
|
cannam@154
|
216 * The memory pointed to by st must be at least the size returned by opus_encoder_get_size().
|
cannam@154
|
217 * This is intended for applications which use their own allocator instead of malloc.
|
cannam@154
|
218 * @see opus_encoder_create(),opus_encoder_get_size()
|
cannam@154
|
219 * To reset a previously initialized state, use the #OPUS_RESET_STATE CTL.
|
cannam@154
|
220 * @param [in] st <tt>OpusEncoder*</tt>: Encoder state
|
cannam@154
|
221 * @param [in] Fs <tt>opus_int32</tt>: Sampling rate of input signal (Hz)
|
cannam@154
|
222 * This must be one of 8000, 12000, 16000,
|
cannam@154
|
223 * 24000, or 48000.
|
cannam@154
|
224 * @param [in] channels <tt>int</tt>: Number of channels (1 or 2) in input signal
|
cannam@154
|
225 * @param [in] application <tt>int</tt>: Coding mode (OPUS_APPLICATION_VOIP/OPUS_APPLICATION_AUDIO/OPUS_APPLICATION_RESTRICTED_LOWDELAY)
|
cannam@154
|
226 * @retval #OPUS_OK Success or @ref opus_errorcodes
|
cannam@154
|
227 */
|
cannam@154
|
228 OPUS_EXPORT int opus_encoder_init(
|
cannam@154
|
229 OpusEncoder *st,
|
cannam@154
|
230 opus_int32 Fs,
|
cannam@154
|
231 int channels,
|
cannam@154
|
232 int application
|
cannam@154
|
233 ) OPUS_ARG_NONNULL(1);
|
cannam@154
|
234
|
cannam@154
|
235 /** Encodes an Opus frame.
|
cannam@154
|
236 * @param [in] st <tt>OpusEncoder*</tt>: Encoder state
|
cannam@154
|
237 * @param [in] pcm <tt>opus_int16*</tt>: Input signal (interleaved if 2 channels). length is frame_size*channels*sizeof(opus_int16)
|
cannam@154
|
238 * @param [in] frame_size <tt>int</tt>: Number of samples per channel in the
|
cannam@154
|
239 * input signal.
|
cannam@154
|
240 * This must be an Opus frame size for
|
cannam@154
|
241 * the encoder's sampling rate.
|
cannam@154
|
242 * For example, at 48 kHz the permitted
|
cannam@154
|
243 * values are 120, 240, 480, 960, 1920,
|
cannam@154
|
244 * and 2880.
|
cannam@154
|
245 * Passing in a duration of less than
|
cannam@154
|
246 * 10 ms (480 samples at 48 kHz) will
|
cannam@154
|
247 * prevent the encoder from using the LPC
|
cannam@154
|
248 * or hybrid modes.
|
cannam@154
|
249 * @param [out] data <tt>unsigned char*</tt>: Output payload.
|
cannam@154
|
250 * This must contain storage for at
|
cannam@154
|
251 * least \a max_data_bytes.
|
cannam@154
|
252 * @param [in] max_data_bytes <tt>opus_int32</tt>: Size of the allocated
|
cannam@154
|
253 * memory for the output
|
cannam@154
|
254 * payload. This may be
|
cannam@154
|
255 * used to impose an upper limit on
|
cannam@154
|
256 * the instant bitrate, but should
|
cannam@154
|
257 * not be used as the only bitrate
|
cannam@154
|
258 * control. Use #OPUS_SET_BITRATE to
|
cannam@154
|
259 * control the bitrate.
|
cannam@154
|
260 * @returns The length of the encoded packet (in bytes) on success or a
|
cannam@154
|
261 * negative error code (see @ref opus_errorcodes) on failure.
|
cannam@154
|
262 */
|
cannam@154
|
263 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT opus_int32 opus_encode(
|
cannam@154
|
264 OpusEncoder *st,
|
cannam@154
|
265 const opus_int16 *pcm,
|
cannam@154
|
266 int frame_size,
|
cannam@154
|
267 unsigned char *data,
|
cannam@154
|
268 opus_int32 max_data_bytes
|
cannam@154
|
269 ) OPUS_ARG_NONNULL(1) OPUS_ARG_NONNULL(2) OPUS_ARG_NONNULL(4);
|
cannam@154
|
270
|
cannam@154
|
271 /** Encodes an Opus frame from floating point input.
|
cannam@154
|
272 * @param [in] st <tt>OpusEncoder*</tt>: Encoder state
|
cannam@154
|
273 * @param [in] pcm <tt>float*</tt>: Input in float format (interleaved if 2 channels), with a normal range of +/-1.0.
|
cannam@154
|
274 * Samples with a range beyond +/-1.0 are supported but will
|
cannam@154
|
275 * be clipped by decoders using the integer API and should
|
cannam@154
|
276 * only be used if it is known that the far end supports
|
cannam@154
|
277 * extended dynamic range.
|
cannam@154
|
278 * length is frame_size*channels*sizeof(float)
|
cannam@154
|
279 * @param [in] frame_size <tt>int</tt>: Number of samples per channel in the
|
cannam@154
|
280 * input signal.
|
cannam@154
|
281 * This must be an Opus frame size for
|
cannam@154
|
282 * the encoder's sampling rate.
|
cannam@154
|
283 * For example, at 48 kHz the permitted
|
cannam@154
|
284 * values are 120, 240, 480, 960, 1920,
|
cannam@154
|
285 * and 2880.
|
cannam@154
|
286 * Passing in a duration of less than
|
cannam@154
|
287 * 10 ms (480 samples at 48 kHz) will
|
cannam@154
|
288 * prevent the encoder from using the LPC
|
cannam@154
|
289 * or hybrid modes.
|
cannam@154
|
290 * @param [out] data <tt>unsigned char*</tt>: Output payload.
|
cannam@154
|
291 * This must contain storage for at
|
cannam@154
|
292 * least \a max_data_bytes.
|
cannam@154
|
293 * @param [in] max_data_bytes <tt>opus_int32</tt>: Size of the allocated
|
cannam@154
|
294 * memory for the output
|
cannam@154
|
295 * payload. This may be
|
cannam@154
|
296 * used to impose an upper limit on
|
cannam@154
|
297 * the instant bitrate, but should
|
cannam@154
|
298 * not be used as the only bitrate
|
cannam@154
|
299 * control. Use #OPUS_SET_BITRATE to
|
cannam@154
|
300 * control the bitrate.
|
cannam@154
|
301 * @returns The length of the encoded packet (in bytes) on success or a
|
cannam@154
|
302 * negative error code (see @ref opus_errorcodes) on failure.
|
cannam@154
|
303 */
|
cannam@154
|
304 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT opus_int32 opus_encode_float(
|
cannam@154
|
305 OpusEncoder *st,
|
cannam@154
|
306 const float *pcm,
|
cannam@154
|
307 int frame_size,
|
cannam@154
|
308 unsigned char *data,
|
cannam@154
|
309 opus_int32 max_data_bytes
|
cannam@154
|
310 ) OPUS_ARG_NONNULL(1) OPUS_ARG_NONNULL(2) OPUS_ARG_NONNULL(4);
|
cannam@154
|
311
|
cannam@154
|
312 /** Frees an <code>OpusEncoder</code> allocated by opus_encoder_create().
|
cannam@154
|
313 * @param[in] st <tt>OpusEncoder*</tt>: State to be freed.
|
cannam@154
|
314 */
|
cannam@154
|
315 OPUS_EXPORT void opus_encoder_destroy(OpusEncoder *st);
|
cannam@154
|
316
|
cannam@154
|
317 /** Perform a CTL function on an Opus encoder.
|
cannam@154
|
318 *
|
cannam@154
|
319 * Generally the request and subsequent arguments are generated
|
cannam@154
|
320 * by a convenience macro.
|
cannam@154
|
321 * @param st <tt>OpusEncoder*</tt>: Encoder state.
|
cannam@154
|
322 * @param request This and all remaining parameters should be replaced by one
|
cannam@154
|
323 * of the convenience macros in @ref opus_genericctls or
|
cannam@154
|
324 * @ref opus_encoderctls.
|
cannam@154
|
325 * @see opus_genericctls
|
cannam@154
|
326 * @see opus_encoderctls
|
cannam@154
|
327 */
|
cannam@154
|
328 OPUS_EXPORT int opus_encoder_ctl(OpusEncoder *st, int request, ...) OPUS_ARG_NONNULL(1);
|
cannam@154
|
329 /**@}*/
|
cannam@154
|
330
|
cannam@154
|
331 /** @defgroup opus_decoder Opus Decoder
|
cannam@154
|
332 * @{
|
cannam@154
|
333 *
|
cannam@154
|
334 * @brief This page describes the process and functions used to decode Opus.
|
cannam@154
|
335 *
|
cannam@154
|
336 * The decoding process also starts with creating a decoder
|
cannam@154
|
337 * state. This can be done with:
|
cannam@154
|
338 * @code
|
cannam@154
|
339 * int error;
|
cannam@154
|
340 * OpusDecoder *dec;
|
cannam@154
|
341 * dec = opus_decoder_create(Fs, channels, &error);
|
cannam@154
|
342 * @endcode
|
cannam@154
|
343 * where
|
cannam@154
|
344 * @li Fs is the sampling rate and must be 8000, 12000, 16000, 24000, or 48000
|
cannam@154
|
345 * @li channels is the number of channels (1 or 2)
|
cannam@154
|
346 * @li error will hold the error code in case of failure (or #OPUS_OK on success)
|
cannam@154
|
347 * @li the return value is a newly created decoder state to be used for decoding
|
cannam@154
|
348 *
|
cannam@154
|
349 * While opus_decoder_create() allocates memory for the state, it's also possible
|
cannam@154
|
350 * to initialize pre-allocated memory:
|
cannam@154
|
351 * @code
|
cannam@154
|
352 * int size;
|
cannam@154
|
353 * int error;
|
cannam@154
|
354 * OpusDecoder *dec;
|
cannam@154
|
355 * size = opus_decoder_get_size(channels);
|
cannam@154
|
356 * dec = malloc(size);
|
cannam@154
|
357 * error = opus_decoder_init(dec, Fs, channels);
|
cannam@154
|
358 * @endcode
|
cannam@154
|
359 * where opus_decoder_get_size() returns the required size for the decoder state. Note that
|
cannam@154
|
360 * future versions of this code may change the size, so no assuptions should be made about it.
|
cannam@154
|
361 *
|
cannam@154
|
362 * The decoder state is always continuous in memory and only a shallow copy is sufficient
|
cannam@154
|
363 * to copy it (e.g. memcpy())
|
cannam@154
|
364 *
|
cannam@154
|
365 * To decode a frame, opus_decode() or opus_decode_float() must be called with a packet of compressed audio data:
|
cannam@154
|
366 * @code
|
cannam@154
|
367 * frame_size = opus_decode(dec, packet, len, decoded, max_size, 0);
|
cannam@154
|
368 * @endcode
|
cannam@154
|
369 * where
|
cannam@154
|
370 *
|
cannam@154
|
371 * @li packet is the byte array containing the compressed data
|
cannam@154
|
372 * @li len is the exact number of bytes contained in the packet
|
cannam@154
|
373 * @li decoded is the decoded audio data in opus_int16 (or float for opus_decode_float())
|
cannam@154
|
374 * @li max_size is the max duration of the frame in samples (per channel) that can fit into the decoded_frame array
|
cannam@154
|
375 *
|
cannam@154
|
376 * opus_decode() and opus_decode_float() return the number of samples (per channel) decoded from the packet.
|
cannam@154
|
377 * If that value is negative, then an error has occurred. This can occur if the packet is corrupted or if the audio
|
cannam@154
|
378 * buffer is too small to hold the decoded audio.
|
cannam@154
|
379 *
|
cannam@154
|
380 * Opus is a stateful codec with overlapping blocks and as a result Opus
|
cannam@154
|
381 * packets are not coded independently of each other. Packets must be
|
cannam@154
|
382 * passed into the decoder serially and in the correct order for a correct
|
cannam@154
|
383 * decode. Lost packets can be replaced with loss concealment by calling
|
cannam@154
|
384 * the decoder with a null pointer and zero length for the missing packet.
|
cannam@154
|
385 *
|
cannam@154
|
386 * A single codec state may only be accessed from a single thread at
|
cannam@154
|
387 * a time and any required locking must be performed by the caller. Separate
|
cannam@154
|
388 * streams must be decoded with separate decoder states and can be decoded
|
cannam@154
|
389 * in parallel unless the library was compiled with NONTHREADSAFE_PSEUDOSTACK
|
cannam@154
|
390 * defined.
|
cannam@154
|
391 *
|
cannam@154
|
392 */
|
cannam@154
|
393
|
cannam@154
|
394 /** Opus decoder state.
|
cannam@154
|
395 * This contains the complete state of an Opus decoder.
|
cannam@154
|
396 * It is position independent and can be freely copied.
|
cannam@154
|
397 * @see opus_decoder_create,opus_decoder_init
|
cannam@154
|
398 */
|
cannam@154
|
399 typedef struct OpusDecoder OpusDecoder;
|
cannam@154
|
400
|
cannam@154
|
401 /** Gets the size of an <code>OpusDecoder</code> structure.
|
cannam@154
|
402 * @param [in] channels <tt>int</tt>: Number of channels.
|
cannam@154
|
403 * This must be 1 or 2.
|
cannam@154
|
404 * @returns The size in bytes.
|
cannam@154
|
405 */
|
cannam@154
|
406 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_decoder_get_size(int channels);
|
cannam@154
|
407
|
cannam@154
|
408 /** Allocates and initializes a decoder state.
|
cannam@154
|
409 * @param [in] Fs <tt>opus_int32</tt>: Sample rate to decode at (Hz).
|
cannam@154
|
410 * This must be one of 8000, 12000, 16000,
|
cannam@154
|
411 * 24000, or 48000.
|
cannam@154
|
412 * @param [in] channels <tt>int</tt>: Number of channels (1 or 2) to decode
|
cannam@154
|
413 * @param [out] error <tt>int*</tt>: #OPUS_OK Success or @ref opus_errorcodes
|
cannam@154
|
414 *
|
cannam@154
|
415 * Internally Opus stores data at 48000 Hz, so that should be the default
|
cannam@154
|
416 * value for Fs. However, the decoder can efficiently decode to buffers
|
cannam@154
|
417 * at 8, 12, 16, and 24 kHz so if for some reason the caller cannot use
|
cannam@154
|
418 * data at the full sample rate, or knows the compressed data doesn't
|
cannam@154
|
419 * use the full frequency range, it can request decoding at a reduced
|
cannam@154
|
420 * rate. Likewise, the decoder is capable of filling in either mono or
|
cannam@154
|
421 * interleaved stereo pcm buffers, at the caller's request.
|
cannam@154
|
422 */
|
cannam@154
|
423 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT OpusDecoder *opus_decoder_create(
|
cannam@154
|
424 opus_int32 Fs,
|
cannam@154
|
425 int channels,
|
cannam@154
|
426 int *error
|
cannam@154
|
427 );
|
cannam@154
|
428
|
cannam@154
|
429 /** Initializes a previously allocated decoder state.
|
cannam@154
|
430 * The state must be at least the size returned by opus_decoder_get_size().
|
cannam@154
|
431 * This is intended for applications which use their own allocator instead of malloc. @see opus_decoder_create,opus_decoder_get_size
|
cannam@154
|
432 * To reset a previously initialized state, use the #OPUS_RESET_STATE CTL.
|
cannam@154
|
433 * @param [in] st <tt>OpusDecoder*</tt>: Decoder state.
|
cannam@154
|
434 * @param [in] Fs <tt>opus_int32</tt>: Sampling rate to decode to (Hz).
|
cannam@154
|
435 * This must be one of 8000, 12000, 16000,
|
cannam@154
|
436 * 24000, or 48000.
|
cannam@154
|
437 * @param [in] channels <tt>int</tt>: Number of channels (1 or 2) to decode
|
cannam@154
|
438 * @retval #OPUS_OK Success or @ref opus_errorcodes
|
cannam@154
|
439 */
|
cannam@154
|
440 OPUS_EXPORT int opus_decoder_init(
|
cannam@154
|
441 OpusDecoder *st,
|
cannam@154
|
442 opus_int32 Fs,
|
cannam@154
|
443 int channels
|
cannam@154
|
444 ) OPUS_ARG_NONNULL(1);
|
cannam@154
|
445
|
cannam@154
|
446 /** Decode an Opus packet.
|
cannam@154
|
447 * @param [in] st <tt>OpusDecoder*</tt>: Decoder state
|
cannam@154
|
448 * @param [in] data <tt>char*</tt>: Input payload. Use a NULL pointer to indicate packet loss
|
cannam@154
|
449 * @param [in] len <tt>opus_int32</tt>: Number of bytes in payload*
|
cannam@154
|
450 * @param [out] pcm <tt>opus_int16*</tt>: Output signal (interleaved if 2 channels). length
|
cannam@154
|
451 * is frame_size*channels*sizeof(opus_int16)
|
cannam@154
|
452 * @param [in] frame_size Number of samples per channel of available space in \a pcm.
|
cannam@154
|
453 * If this is less than the maximum packet duration (120ms; 5760 for 48kHz), this function will
|
cannam@154
|
454 * not be capable of decoding some packets. In the case of PLC (data==NULL) or FEC (decode_fec=1),
|
cannam@154
|
455 * then frame_size needs to be exactly the duration of audio that is missing, otherwise the
|
cannam@154
|
456 * decoder will not be in the optimal state to decode the next incoming packet. For the PLC and
|
cannam@154
|
457 * FEC cases, frame_size <b>must</b> be a multiple of 2.5 ms.
|
cannam@154
|
458 * @param [in] decode_fec <tt>int</tt>: Flag (0 or 1) to request that any in-band forward error correction data be
|
cannam@154
|
459 * decoded. If no such data is available, the frame is decoded as if it were lost.
|
cannam@154
|
460 * @returns Number of decoded samples or @ref opus_errorcodes
|
cannam@154
|
461 */
|
cannam@154
|
462 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_decode(
|
cannam@154
|
463 OpusDecoder *st,
|
cannam@154
|
464 const unsigned char *data,
|
cannam@154
|
465 opus_int32 len,
|
cannam@154
|
466 opus_int16 *pcm,
|
cannam@154
|
467 int frame_size,
|
cannam@154
|
468 int decode_fec
|
cannam@154
|
469 ) OPUS_ARG_NONNULL(1) OPUS_ARG_NONNULL(4);
|
cannam@154
|
470
|
cannam@154
|
471 /** Decode an Opus packet with floating point output.
|
cannam@154
|
472 * @param [in] st <tt>OpusDecoder*</tt>: Decoder state
|
cannam@154
|
473 * @param [in] data <tt>char*</tt>: Input payload. Use a NULL pointer to indicate packet loss
|
cannam@154
|
474 * @param [in] len <tt>opus_int32</tt>: Number of bytes in payload
|
cannam@154
|
475 * @param [out] pcm <tt>float*</tt>: Output signal (interleaved if 2 channels). length
|
cannam@154
|
476 * is frame_size*channels*sizeof(float)
|
cannam@154
|
477 * @param [in] frame_size Number of samples per channel of available space in \a pcm.
|
cannam@154
|
478 * If this is less than the maximum packet duration (120ms; 5760 for 48kHz), this function will
|
cannam@154
|
479 * not be capable of decoding some packets. In the case of PLC (data==NULL) or FEC (decode_fec=1),
|
cannam@154
|
480 * then frame_size needs to be exactly the duration of audio that is missing, otherwise the
|
cannam@154
|
481 * decoder will not be in the optimal state to decode the next incoming packet. For the PLC and
|
cannam@154
|
482 * FEC cases, frame_size <b>must</b> be a multiple of 2.5 ms.
|
cannam@154
|
483 * @param [in] decode_fec <tt>int</tt>: Flag (0 or 1) to request that any in-band forward error correction data be
|
cannam@154
|
484 * decoded. If no such data is available the frame is decoded as if it were lost.
|
cannam@154
|
485 * @returns Number of decoded samples or @ref opus_errorcodes
|
cannam@154
|
486 */
|
cannam@154
|
487 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_decode_float(
|
cannam@154
|
488 OpusDecoder *st,
|
cannam@154
|
489 const unsigned char *data,
|
cannam@154
|
490 opus_int32 len,
|
cannam@154
|
491 float *pcm,
|
cannam@154
|
492 int frame_size,
|
cannam@154
|
493 int decode_fec
|
cannam@154
|
494 ) OPUS_ARG_NONNULL(1) OPUS_ARG_NONNULL(4);
|
cannam@154
|
495
|
cannam@154
|
496 /** Perform a CTL function on an Opus decoder.
|
cannam@154
|
497 *
|
cannam@154
|
498 * Generally the request and subsequent arguments are generated
|
cannam@154
|
499 * by a convenience macro.
|
cannam@154
|
500 * @param st <tt>OpusDecoder*</tt>: Decoder state.
|
cannam@154
|
501 * @param request This and all remaining parameters should be replaced by one
|
cannam@154
|
502 * of the convenience macros in @ref opus_genericctls or
|
cannam@154
|
503 * @ref opus_decoderctls.
|
cannam@154
|
504 * @see opus_genericctls
|
cannam@154
|
505 * @see opus_decoderctls
|
cannam@154
|
506 */
|
cannam@154
|
507 OPUS_EXPORT int opus_decoder_ctl(OpusDecoder *st, int request, ...) OPUS_ARG_NONNULL(1);
|
cannam@154
|
508
|
cannam@154
|
509 /** Frees an <code>OpusDecoder</code> allocated by opus_decoder_create().
|
cannam@154
|
510 * @param[in] st <tt>OpusDecoder*</tt>: State to be freed.
|
cannam@154
|
511 */
|
cannam@154
|
512 OPUS_EXPORT void opus_decoder_destroy(OpusDecoder *st);
|
cannam@154
|
513
|
cannam@154
|
514 /** Parse an opus packet into one or more frames.
|
cannam@154
|
515 * Opus_decode will perform this operation internally so most applications do
|
cannam@154
|
516 * not need to use this function.
|
cannam@154
|
517 * This function does not copy the frames, the returned pointers are pointers into
|
cannam@154
|
518 * the input packet.
|
cannam@154
|
519 * @param [in] data <tt>char*</tt>: Opus packet to be parsed
|
cannam@154
|
520 * @param [in] len <tt>opus_int32</tt>: size of data
|
cannam@154
|
521 * @param [out] out_toc <tt>char*</tt>: TOC pointer
|
cannam@154
|
522 * @param [out] frames <tt>char*[48]</tt> encapsulated frames
|
cannam@154
|
523 * @param [out] size <tt>opus_int16[48]</tt> sizes of the encapsulated frames
|
cannam@154
|
524 * @param [out] payload_offset <tt>int*</tt>: returns the position of the payload within the packet (in bytes)
|
cannam@154
|
525 * @returns number of frames
|
cannam@154
|
526 */
|
cannam@154
|
527 OPUS_EXPORT int opus_packet_parse(
|
cannam@154
|
528 const unsigned char *data,
|
cannam@154
|
529 opus_int32 len,
|
cannam@154
|
530 unsigned char *out_toc,
|
cannam@154
|
531 const unsigned char *frames[48],
|
cannam@154
|
532 opus_int16 size[48],
|
cannam@154
|
533 int *payload_offset
|
cannam@154
|
534 ) OPUS_ARG_NONNULL(1) OPUS_ARG_NONNULL(5);
|
cannam@154
|
535
|
cannam@154
|
536 /** Gets the bandwidth of an Opus packet.
|
cannam@154
|
537 * @param [in] data <tt>char*</tt>: Opus packet
|
cannam@154
|
538 * @retval OPUS_BANDWIDTH_NARROWBAND Narrowband (4kHz bandpass)
|
cannam@154
|
539 * @retval OPUS_BANDWIDTH_MEDIUMBAND Mediumband (6kHz bandpass)
|
cannam@154
|
540 * @retval OPUS_BANDWIDTH_WIDEBAND Wideband (8kHz bandpass)
|
cannam@154
|
541 * @retval OPUS_BANDWIDTH_SUPERWIDEBAND Superwideband (12kHz bandpass)
|
cannam@154
|
542 * @retval OPUS_BANDWIDTH_FULLBAND Fullband (20kHz bandpass)
|
cannam@154
|
543 * @retval OPUS_INVALID_PACKET The compressed data passed is corrupted or of an unsupported type
|
cannam@154
|
544 */
|
cannam@154
|
545 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_packet_get_bandwidth(const unsigned char *data) OPUS_ARG_NONNULL(1);
|
cannam@154
|
546
|
cannam@154
|
547 /** Gets the number of samples per frame from an Opus packet.
|
cannam@154
|
548 * @param [in] data <tt>char*</tt>: Opus packet.
|
cannam@154
|
549 * This must contain at least one byte of
|
cannam@154
|
550 * data.
|
cannam@154
|
551 * @param [in] Fs <tt>opus_int32</tt>: Sampling rate in Hz.
|
cannam@154
|
552 * This must be a multiple of 400, or
|
cannam@154
|
553 * inaccurate results will be returned.
|
cannam@154
|
554 * @returns Number of samples per frame.
|
cannam@154
|
555 */
|
cannam@154
|
556 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_packet_get_samples_per_frame(const unsigned char *data, opus_int32 Fs) OPUS_ARG_NONNULL(1);
|
cannam@154
|
557
|
cannam@154
|
558 /** Gets the number of channels from an Opus packet.
|
cannam@154
|
559 * @param [in] data <tt>char*</tt>: Opus packet
|
cannam@154
|
560 * @returns Number of channels
|
cannam@154
|
561 * @retval OPUS_INVALID_PACKET The compressed data passed is corrupted or of an unsupported type
|
cannam@154
|
562 */
|
cannam@154
|
563 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_packet_get_nb_channels(const unsigned char *data) OPUS_ARG_NONNULL(1);
|
cannam@154
|
564
|
cannam@154
|
565 /** Gets the number of frames in an Opus packet.
|
cannam@154
|
566 * @param [in] packet <tt>char*</tt>: Opus packet
|
cannam@154
|
567 * @param [in] len <tt>opus_int32</tt>: Length of packet
|
cannam@154
|
568 * @returns Number of frames
|
cannam@154
|
569 * @retval OPUS_BAD_ARG Insufficient data was passed to the function
|
cannam@154
|
570 * @retval OPUS_INVALID_PACKET The compressed data passed is corrupted or of an unsupported type
|
cannam@154
|
571 */
|
cannam@154
|
572 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_packet_get_nb_frames(const unsigned char packet[], opus_int32 len) OPUS_ARG_NONNULL(1);
|
cannam@154
|
573
|
cannam@154
|
574 /** Gets the number of samples of an Opus packet.
|
cannam@154
|
575 * @param [in] packet <tt>char*</tt>: Opus packet
|
cannam@154
|
576 * @param [in] len <tt>opus_int32</tt>: Length of packet
|
cannam@154
|
577 * @param [in] Fs <tt>opus_int32</tt>: Sampling rate in Hz.
|
cannam@154
|
578 * This must be a multiple of 400, or
|
cannam@154
|
579 * inaccurate results will be returned.
|
cannam@154
|
580 * @returns Number of samples
|
cannam@154
|
581 * @retval OPUS_BAD_ARG Insufficient data was passed to the function
|
cannam@154
|
582 * @retval OPUS_INVALID_PACKET The compressed data passed is corrupted or of an unsupported type
|
cannam@154
|
583 */
|
cannam@154
|
584 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_packet_get_nb_samples(const unsigned char packet[], opus_int32 len, opus_int32 Fs) OPUS_ARG_NONNULL(1);
|
cannam@154
|
585
|
cannam@154
|
586 /** Gets the number of samples of an Opus packet.
|
cannam@154
|
587 * @param [in] dec <tt>OpusDecoder*</tt>: Decoder state
|
cannam@154
|
588 * @param [in] packet <tt>char*</tt>: Opus packet
|
cannam@154
|
589 * @param [in] len <tt>opus_int32</tt>: Length of packet
|
cannam@154
|
590 * @returns Number of samples
|
cannam@154
|
591 * @retval OPUS_BAD_ARG Insufficient data was passed to the function
|
cannam@154
|
592 * @retval OPUS_INVALID_PACKET The compressed data passed is corrupted or of an unsupported type
|
cannam@154
|
593 */
|
cannam@154
|
594 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_decoder_get_nb_samples(const OpusDecoder *dec, const unsigned char packet[], opus_int32 len) OPUS_ARG_NONNULL(1) OPUS_ARG_NONNULL(2);
|
cannam@154
|
595
|
cannam@154
|
596 /** Applies soft-clipping to bring a float signal within the [-1,1] range. If
|
cannam@154
|
597 * the signal is already in that range, nothing is done. If there are values
|
cannam@154
|
598 * outside of [-1,1], then the signal is clipped as smoothly as possible to
|
cannam@154
|
599 * both fit in the range and avoid creating excessive distortion in the
|
cannam@154
|
600 * process.
|
cannam@154
|
601 * @param [in,out] pcm <tt>float*</tt>: Input PCM and modified PCM
|
cannam@154
|
602 * @param [in] frame_size <tt>int</tt> Number of samples per channel to process
|
cannam@154
|
603 * @param [in] channels <tt>int</tt>: Number of channels
|
cannam@154
|
604 * @param [in,out] softclip_mem <tt>float*</tt>: State memory for the soft clipping process (one float per channel, initialized to zero)
|
cannam@154
|
605 */
|
cannam@154
|
606 OPUS_EXPORT void opus_pcm_soft_clip(float *pcm, int frame_size, int channels, float *softclip_mem);
|
cannam@154
|
607
|
cannam@154
|
608
|
cannam@154
|
609 /**@}*/
|
cannam@154
|
610
|
cannam@154
|
611 /** @defgroup opus_repacketizer Repacketizer
|
cannam@154
|
612 * @{
|
cannam@154
|
613 *
|
cannam@154
|
614 * The repacketizer can be used to merge multiple Opus packets into a single
|
cannam@154
|
615 * packet or alternatively to split Opus packets that have previously been
|
cannam@154
|
616 * merged. Splitting valid Opus packets is always guaranteed to succeed,
|
cannam@154
|
617 * whereas merging valid packets only succeeds if all frames have the same
|
cannam@154
|
618 * mode, bandwidth, and frame size, and when the total duration of the merged
|
cannam@154
|
619 * packet is no more than 120 ms. The 120 ms limit comes from the
|
cannam@154
|
620 * specification and limits decoder memory requirements at a point where
|
cannam@154
|
621 * framing overhead becomes negligible.
|
cannam@154
|
622 *
|
cannam@154
|
623 * The repacketizer currently only operates on elementary Opus
|
cannam@154
|
624 * streams. It will not manipualte multistream packets successfully, except in
|
cannam@154
|
625 * the degenerate case where they consist of data from a single stream.
|
cannam@154
|
626 *
|
cannam@154
|
627 * The repacketizing process starts with creating a repacketizer state, either
|
cannam@154
|
628 * by calling opus_repacketizer_create() or by allocating the memory yourself,
|
cannam@154
|
629 * e.g.,
|
cannam@154
|
630 * @code
|
cannam@154
|
631 * OpusRepacketizer *rp;
|
cannam@154
|
632 * rp = (OpusRepacketizer*)malloc(opus_repacketizer_get_size());
|
cannam@154
|
633 * if (rp != NULL)
|
cannam@154
|
634 * opus_repacketizer_init(rp);
|
cannam@154
|
635 * @endcode
|
cannam@154
|
636 *
|
cannam@154
|
637 * Then the application should submit packets with opus_repacketizer_cat(),
|
cannam@154
|
638 * extract new packets with opus_repacketizer_out() or
|
cannam@154
|
639 * opus_repacketizer_out_range(), and then reset the state for the next set of
|
cannam@154
|
640 * input packets via opus_repacketizer_init().
|
cannam@154
|
641 *
|
cannam@154
|
642 * For example, to split a sequence of packets into individual frames:
|
cannam@154
|
643 * @code
|
cannam@154
|
644 * unsigned char *data;
|
cannam@154
|
645 * int len;
|
cannam@154
|
646 * while (get_next_packet(&data, &len))
|
cannam@154
|
647 * {
|
cannam@154
|
648 * unsigned char out[1276];
|
cannam@154
|
649 * opus_int32 out_len;
|
cannam@154
|
650 * int nb_frames;
|
cannam@154
|
651 * int err;
|
cannam@154
|
652 * int i;
|
cannam@154
|
653 * err = opus_repacketizer_cat(rp, data, len);
|
cannam@154
|
654 * if (err != OPUS_OK)
|
cannam@154
|
655 * {
|
cannam@154
|
656 * release_packet(data);
|
cannam@154
|
657 * return err;
|
cannam@154
|
658 * }
|
cannam@154
|
659 * nb_frames = opus_repacketizer_get_nb_frames(rp);
|
cannam@154
|
660 * for (i = 0; i < nb_frames; i++)
|
cannam@154
|
661 * {
|
cannam@154
|
662 * out_len = opus_repacketizer_out_range(rp, i, i+1, out, sizeof(out));
|
cannam@154
|
663 * if (out_len < 0)
|
cannam@154
|
664 * {
|
cannam@154
|
665 * release_packet(data);
|
cannam@154
|
666 * return (int)out_len;
|
cannam@154
|
667 * }
|
cannam@154
|
668 * output_next_packet(out, out_len);
|
cannam@154
|
669 * }
|
cannam@154
|
670 * opus_repacketizer_init(rp);
|
cannam@154
|
671 * release_packet(data);
|
cannam@154
|
672 * }
|
cannam@154
|
673 * @endcode
|
cannam@154
|
674 *
|
cannam@154
|
675 * Alternatively, to combine a sequence of frames into packets that each
|
cannam@154
|
676 * contain up to <code>TARGET_DURATION_MS</code> milliseconds of data:
|
cannam@154
|
677 * @code
|
cannam@154
|
678 * // The maximum number of packets with duration TARGET_DURATION_MS occurs
|
cannam@154
|
679 * // when the frame size is 2.5 ms, for a total of (TARGET_DURATION_MS*2/5)
|
cannam@154
|
680 * // packets.
|
cannam@154
|
681 * unsigned char *data[(TARGET_DURATION_MS*2/5)+1];
|
cannam@154
|
682 * opus_int32 len[(TARGET_DURATION_MS*2/5)+1];
|
cannam@154
|
683 * int nb_packets;
|
cannam@154
|
684 * unsigned char out[1277*(TARGET_DURATION_MS*2/2)];
|
cannam@154
|
685 * opus_int32 out_len;
|
cannam@154
|
686 * int prev_toc;
|
cannam@154
|
687 * nb_packets = 0;
|
cannam@154
|
688 * while (get_next_packet(data+nb_packets, len+nb_packets))
|
cannam@154
|
689 * {
|
cannam@154
|
690 * int nb_frames;
|
cannam@154
|
691 * int err;
|
cannam@154
|
692 * nb_frames = opus_packet_get_nb_frames(data[nb_packets], len[nb_packets]);
|
cannam@154
|
693 * if (nb_frames < 1)
|
cannam@154
|
694 * {
|
cannam@154
|
695 * release_packets(data, nb_packets+1);
|
cannam@154
|
696 * return nb_frames;
|
cannam@154
|
697 * }
|
cannam@154
|
698 * nb_frames += opus_repacketizer_get_nb_frames(rp);
|
cannam@154
|
699 * // If adding the next packet would exceed our target, or it has an
|
cannam@154
|
700 * // incompatible TOC sequence, output the packets we already have before
|
cannam@154
|
701 * // submitting it.
|
cannam@154
|
702 * // N.B., The nb_packets > 0 check ensures we've submitted at least one
|
cannam@154
|
703 * // packet since the last call to opus_repacketizer_init(). Otherwise a
|
cannam@154
|
704 * // single packet longer than TARGET_DURATION_MS would cause us to try to
|
cannam@154
|
705 * // output an (invalid) empty packet. It also ensures that prev_toc has
|
cannam@154
|
706 * // been set to a valid value. Additionally, len[nb_packets] > 0 is
|
cannam@154
|
707 * // guaranteed by the call to opus_packet_get_nb_frames() above, so the
|
cannam@154
|
708 * // reference to data[nb_packets][0] should be valid.
|
cannam@154
|
709 * if (nb_packets > 0 && (
|
cannam@154
|
710 * ((prev_toc & 0xFC) != (data[nb_packets][0] & 0xFC)) ||
|
cannam@154
|
711 * opus_packet_get_samples_per_frame(data[nb_packets], 48000)*nb_frames >
|
cannam@154
|
712 * TARGET_DURATION_MS*48))
|
cannam@154
|
713 * {
|
cannam@154
|
714 * out_len = opus_repacketizer_out(rp, out, sizeof(out));
|
cannam@154
|
715 * if (out_len < 0)
|
cannam@154
|
716 * {
|
cannam@154
|
717 * release_packets(data, nb_packets+1);
|
cannam@154
|
718 * return (int)out_len;
|
cannam@154
|
719 * }
|
cannam@154
|
720 * output_next_packet(out, out_len);
|
cannam@154
|
721 * opus_repacketizer_init(rp);
|
cannam@154
|
722 * release_packets(data, nb_packets);
|
cannam@154
|
723 * data[0] = data[nb_packets];
|
cannam@154
|
724 * len[0] = len[nb_packets];
|
cannam@154
|
725 * nb_packets = 0;
|
cannam@154
|
726 * }
|
cannam@154
|
727 * err = opus_repacketizer_cat(rp, data[nb_packets], len[nb_packets]);
|
cannam@154
|
728 * if (err != OPUS_OK)
|
cannam@154
|
729 * {
|
cannam@154
|
730 * release_packets(data, nb_packets+1);
|
cannam@154
|
731 * return err;
|
cannam@154
|
732 * }
|
cannam@154
|
733 * prev_toc = data[nb_packets][0];
|
cannam@154
|
734 * nb_packets++;
|
cannam@154
|
735 * }
|
cannam@154
|
736 * // Output the final, partial packet.
|
cannam@154
|
737 * if (nb_packets > 0)
|
cannam@154
|
738 * {
|
cannam@154
|
739 * out_len = opus_repacketizer_out(rp, out, sizeof(out));
|
cannam@154
|
740 * release_packets(data, nb_packets);
|
cannam@154
|
741 * if (out_len < 0)
|
cannam@154
|
742 * return (int)out_len;
|
cannam@154
|
743 * output_next_packet(out, out_len);
|
cannam@154
|
744 * }
|
cannam@154
|
745 * @endcode
|
cannam@154
|
746 *
|
cannam@154
|
747 * An alternate way of merging packets is to simply call opus_repacketizer_cat()
|
cannam@154
|
748 * unconditionally until it fails. At that point, the merged packet can be
|
cannam@154
|
749 * obtained with opus_repacketizer_out() and the input packet for which
|
cannam@154
|
750 * opus_repacketizer_cat() needs to be re-added to a newly reinitialized
|
cannam@154
|
751 * repacketizer state.
|
cannam@154
|
752 */
|
cannam@154
|
753
|
cannam@154
|
754 typedef struct OpusRepacketizer OpusRepacketizer;
|
cannam@154
|
755
|
cannam@154
|
756 /** Gets the size of an <code>OpusRepacketizer</code> structure.
|
cannam@154
|
757 * @returns The size in bytes.
|
cannam@154
|
758 */
|
cannam@154
|
759 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_repacketizer_get_size(void);
|
cannam@154
|
760
|
cannam@154
|
761 /** (Re)initializes a previously allocated repacketizer state.
|
cannam@154
|
762 * The state must be at least the size returned by opus_repacketizer_get_size().
|
cannam@154
|
763 * This can be used for applications which use their own allocator instead of
|
cannam@154
|
764 * malloc().
|
cannam@154
|
765 * It must also be called to reset the queue of packets waiting to be
|
cannam@154
|
766 * repacketized, which is necessary if the maximum packet duration of 120 ms
|
cannam@154
|
767 * is reached or if you wish to submit packets with a different Opus
|
cannam@154
|
768 * configuration (coding mode, audio bandwidth, frame size, or channel count).
|
cannam@154
|
769 * Failure to do so will prevent a new packet from being added with
|
cannam@154
|
770 * opus_repacketizer_cat().
|
cannam@154
|
771 * @see opus_repacketizer_create
|
cannam@154
|
772 * @see opus_repacketizer_get_size
|
cannam@154
|
773 * @see opus_repacketizer_cat
|
cannam@154
|
774 * @param rp <tt>OpusRepacketizer*</tt>: The repacketizer state to
|
cannam@154
|
775 * (re)initialize.
|
cannam@154
|
776 * @returns A pointer to the same repacketizer state that was passed in.
|
cannam@154
|
777 */
|
cannam@154
|
778 OPUS_EXPORT OpusRepacketizer *opus_repacketizer_init(OpusRepacketizer *rp) OPUS_ARG_NONNULL(1);
|
cannam@154
|
779
|
cannam@154
|
780 /** Allocates memory and initializes the new repacketizer with
|
cannam@154
|
781 * opus_repacketizer_init().
|
cannam@154
|
782 */
|
cannam@154
|
783 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT OpusRepacketizer *opus_repacketizer_create(void);
|
cannam@154
|
784
|
cannam@154
|
785 /** Frees an <code>OpusRepacketizer</code> allocated by
|
cannam@154
|
786 * opus_repacketizer_create().
|
cannam@154
|
787 * @param[in] rp <tt>OpusRepacketizer*</tt>: State to be freed.
|
cannam@154
|
788 */
|
cannam@154
|
789 OPUS_EXPORT void opus_repacketizer_destroy(OpusRepacketizer *rp);
|
cannam@154
|
790
|
cannam@154
|
791 /** Add a packet to the current repacketizer state.
|
cannam@154
|
792 * This packet must match the configuration of any packets already submitted
|
cannam@154
|
793 * for repacketization since the last call to opus_repacketizer_init().
|
cannam@154
|
794 * This means that it must have the same coding mode, audio bandwidth, frame
|
cannam@154
|
795 * size, and channel count.
|
cannam@154
|
796 * This can be checked in advance by examining the top 6 bits of the first
|
cannam@154
|
797 * byte of the packet, and ensuring they match the top 6 bits of the first
|
cannam@154
|
798 * byte of any previously submitted packet.
|
cannam@154
|
799 * The total duration of audio in the repacketizer state also must not exceed
|
cannam@154
|
800 * 120 ms, the maximum duration of a single packet, after adding this packet.
|
cannam@154
|
801 *
|
cannam@154
|
802 * The contents of the current repacketizer state can be extracted into new
|
cannam@154
|
803 * packets using opus_repacketizer_out() or opus_repacketizer_out_range().
|
cannam@154
|
804 *
|
cannam@154
|
805 * In order to add a packet with a different configuration or to add more
|
cannam@154
|
806 * audio beyond 120 ms, you must clear the repacketizer state by calling
|
cannam@154
|
807 * opus_repacketizer_init().
|
cannam@154
|
808 * If a packet is too large to add to the current repacketizer state, no part
|
cannam@154
|
809 * of it is added, even if it contains multiple frames, some of which might
|
cannam@154
|
810 * fit.
|
cannam@154
|
811 * If you wish to be able to add parts of such packets, you should first use
|
cannam@154
|
812 * another repacketizer to split the packet into pieces and add them
|
cannam@154
|
813 * individually.
|
cannam@154
|
814 * @see opus_repacketizer_out_range
|
cannam@154
|
815 * @see opus_repacketizer_out
|
cannam@154
|
816 * @see opus_repacketizer_init
|
cannam@154
|
817 * @param rp <tt>OpusRepacketizer*</tt>: The repacketizer state to which to
|
cannam@154
|
818 * add the packet.
|
cannam@154
|
819 * @param[in] data <tt>const unsigned char*</tt>: The packet data.
|
cannam@154
|
820 * The application must ensure
|
cannam@154
|
821 * this pointer remains valid
|
cannam@154
|
822 * until the next call to
|
cannam@154
|
823 * opus_repacketizer_init() or
|
cannam@154
|
824 * opus_repacketizer_destroy().
|
cannam@154
|
825 * @param len <tt>opus_int32</tt>: The number of bytes in the packet data.
|
cannam@154
|
826 * @returns An error code indicating whether or not the operation succeeded.
|
cannam@154
|
827 * @retval #OPUS_OK The packet's contents have been added to the repacketizer
|
cannam@154
|
828 * state.
|
cannam@154
|
829 * @retval #OPUS_INVALID_PACKET The packet did not have a valid TOC sequence,
|
cannam@154
|
830 * the packet's TOC sequence was not compatible
|
cannam@154
|
831 * with previously submitted packets (because
|
cannam@154
|
832 * the coding mode, audio bandwidth, frame size,
|
cannam@154
|
833 * or channel count did not match), or adding
|
cannam@154
|
834 * this packet would increase the total amount of
|
cannam@154
|
835 * audio stored in the repacketizer state to more
|
cannam@154
|
836 * than 120 ms.
|
cannam@154
|
837 */
|
cannam@154
|
838 OPUS_EXPORT int opus_repacketizer_cat(OpusRepacketizer *rp, const unsigned char *data, opus_int32 len) OPUS_ARG_NONNULL(1) OPUS_ARG_NONNULL(2);
|
cannam@154
|
839
|
cannam@154
|
840
|
cannam@154
|
841 /** Construct a new packet from data previously submitted to the repacketizer
|
cannam@154
|
842 * state via opus_repacketizer_cat().
|
cannam@154
|
843 * @param rp <tt>OpusRepacketizer*</tt>: The repacketizer state from which to
|
cannam@154
|
844 * construct the new packet.
|
cannam@154
|
845 * @param begin <tt>int</tt>: The index of the first frame in the current
|
cannam@154
|
846 * repacketizer state to include in the output.
|
cannam@154
|
847 * @param end <tt>int</tt>: One past the index of the last frame in the
|
cannam@154
|
848 * current repacketizer state to include in the
|
cannam@154
|
849 * output.
|
cannam@154
|
850 * @param[out] data <tt>const unsigned char*</tt>: The buffer in which to
|
cannam@154
|
851 * store the output packet.
|
cannam@154
|
852 * @param maxlen <tt>opus_int32</tt>: The maximum number of bytes to store in
|
cannam@154
|
853 * the output buffer. In order to guarantee
|
cannam@154
|
854 * success, this should be at least
|
cannam@154
|
855 * <code>1276</code> for a single frame,
|
cannam@154
|
856 * or for multiple frames,
|
cannam@154
|
857 * <code>1277*(end-begin)</code>.
|
cannam@154
|
858 * However, <code>1*(end-begin)</code> plus
|
cannam@154
|
859 * the size of all packet data submitted to
|
cannam@154
|
860 * the repacketizer since the last call to
|
cannam@154
|
861 * opus_repacketizer_init() or
|
cannam@154
|
862 * opus_repacketizer_create() is also
|
cannam@154
|
863 * sufficient, and possibly much smaller.
|
cannam@154
|
864 * @returns The total size of the output packet on success, or an error code
|
cannam@154
|
865 * on failure.
|
cannam@154
|
866 * @retval #OPUS_BAD_ARG <code>[begin,end)</code> was an invalid range of
|
cannam@154
|
867 * frames (begin < 0, begin >= end, or end >
|
cannam@154
|
868 * opus_repacketizer_get_nb_frames()).
|
cannam@154
|
869 * @retval #OPUS_BUFFER_TOO_SMALL \a maxlen was insufficient to contain the
|
cannam@154
|
870 * complete output packet.
|
cannam@154
|
871 */
|
cannam@154
|
872 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT opus_int32 opus_repacketizer_out_range(OpusRepacketizer *rp, int begin, int end, unsigned char *data, opus_int32 maxlen) OPUS_ARG_NONNULL(1) OPUS_ARG_NONNULL(4);
|
cannam@154
|
873
|
cannam@154
|
874 /** Return the total number of frames contained in packet data submitted to
|
cannam@154
|
875 * the repacketizer state so far via opus_repacketizer_cat() since the last
|
cannam@154
|
876 * call to opus_repacketizer_init() or opus_repacketizer_create().
|
cannam@154
|
877 * This defines the valid range of packets that can be extracted with
|
cannam@154
|
878 * opus_repacketizer_out_range() or opus_repacketizer_out().
|
cannam@154
|
879 * @param rp <tt>OpusRepacketizer*</tt>: The repacketizer state containing the
|
cannam@154
|
880 * frames.
|
cannam@154
|
881 * @returns The total number of frames contained in the packet data submitted
|
cannam@154
|
882 * to the repacketizer state.
|
cannam@154
|
883 */
|
cannam@154
|
884 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_repacketizer_get_nb_frames(OpusRepacketizer *rp) OPUS_ARG_NONNULL(1);
|
cannam@154
|
885
|
cannam@154
|
886 /** Construct a new packet from data previously submitted to the repacketizer
|
cannam@154
|
887 * state via opus_repacketizer_cat().
|
cannam@154
|
888 * This is a convenience routine that returns all the data submitted so far
|
cannam@154
|
889 * in a single packet.
|
cannam@154
|
890 * It is equivalent to calling
|
cannam@154
|
891 * @code
|
cannam@154
|
892 * opus_repacketizer_out_range(rp, 0, opus_repacketizer_get_nb_frames(rp),
|
cannam@154
|
893 * data, maxlen)
|
cannam@154
|
894 * @endcode
|
cannam@154
|
895 * @param rp <tt>OpusRepacketizer*</tt>: The repacketizer state from which to
|
cannam@154
|
896 * construct the new packet.
|
cannam@154
|
897 * @param[out] data <tt>const unsigned char*</tt>: The buffer in which to
|
cannam@154
|
898 * store the output packet.
|
cannam@154
|
899 * @param maxlen <tt>opus_int32</tt>: The maximum number of bytes to store in
|
cannam@154
|
900 * the output buffer. In order to guarantee
|
cannam@154
|
901 * success, this should be at least
|
cannam@154
|
902 * <code>1277*opus_repacketizer_get_nb_frames(rp)</code>.
|
cannam@154
|
903 * However,
|
cannam@154
|
904 * <code>1*opus_repacketizer_get_nb_frames(rp)</code>
|
cannam@154
|
905 * plus the size of all packet data
|
cannam@154
|
906 * submitted to the repacketizer since the
|
cannam@154
|
907 * last call to opus_repacketizer_init() or
|
cannam@154
|
908 * opus_repacketizer_create() is also
|
cannam@154
|
909 * sufficient, and possibly much smaller.
|
cannam@154
|
910 * @returns The total size of the output packet on success, or an error code
|
cannam@154
|
911 * on failure.
|
cannam@154
|
912 * @retval #OPUS_BUFFER_TOO_SMALL \a maxlen was insufficient to contain the
|
cannam@154
|
913 * complete output packet.
|
cannam@154
|
914 */
|
cannam@154
|
915 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT opus_int32 opus_repacketizer_out(OpusRepacketizer *rp, unsigned char *data, opus_int32 maxlen) OPUS_ARG_NONNULL(1);
|
cannam@154
|
916
|
cannam@154
|
917 /** Pads a given Opus packet to a larger size (possibly changing the TOC sequence).
|
cannam@154
|
918 * @param[in,out] data <tt>const unsigned char*</tt>: The buffer containing the
|
cannam@154
|
919 * packet to pad.
|
cannam@154
|
920 * @param len <tt>opus_int32</tt>: The size of the packet.
|
cannam@154
|
921 * This must be at least 1.
|
cannam@154
|
922 * @param new_len <tt>opus_int32</tt>: The desired size of the packet after padding.
|
cannam@154
|
923 * This must be at least as large as len.
|
cannam@154
|
924 * @returns an error code
|
cannam@154
|
925 * @retval #OPUS_OK \a on success.
|
cannam@154
|
926 * @retval #OPUS_BAD_ARG \a len was less than 1 or new_len was less than len.
|
cannam@154
|
927 * @retval #OPUS_INVALID_PACKET \a data did not contain a valid Opus packet.
|
cannam@154
|
928 */
|
cannam@154
|
929 OPUS_EXPORT int opus_packet_pad(unsigned char *data, opus_int32 len, opus_int32 new_len);
|
cannam@154
|
930
|
cannam@154
|
931 /** Remove all padding from a given Opus packet and rewrite the TOC sequence to
|
cannam@154
|
932 * minimize space usage.
|
cannam@154
|
933 * @param[in,out] data <tt>const unsigned char*</tt>: The buffer containing the
|
cannam@154
|
934 * packet to strip.
|
cannam@154
|
935 * @param len <tt>opus_int32</tt>: The size of the packet.
|
cannam@154
|
936 * This must be at least 1.
|
cannam@154
|
937 * @returns The new size of the output packet on success, or an error code
|
cannam@154
|
938 * on failure.
|
cannam@154
|
939 * @retval #OPUS_BAD_ARG \a len was less than 1.
|
cannam@154
|
940 * @retval #OPUS_INVALID_PACKET \a data did not contain a valid Opus packet.
|
cannam@154
|
941 */
|
cannam@154
|
942 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT opus_int32 opus_packet_unpad(unsigned char *data, opus_int32 len);
|
cannam@154
|
943
|
cannam@154
|
944 /** Pads a given Opus multi-stream packet to a larger size (possibly changing the TOC sequence).
|
cannam@154
|
945 * @param[in,out] data <tt>const unsigned char*</tt>: The buffer containing the
|
cannam@154
|
946 * packet to pad.
|
cannam@154
|
947 * @param len <tt>opus_int32</tt>: The size of the packet.
|
cannam@154
|
948 * This must be at least 1.
|
cannam@154
|
949 * @param new_len <tt>opus_int32</tt>: The desired size of the packet after padding.
|
cannam@154
|
950 * This must be at least 1.
|
cannam@154
|
951 * @param nb_streams <tt>opus_int32</tt>: The number of streams (not channels) in the packet.
|
cannam@154
|
952 * This must be at least as large as len.
|
cannam@154
|
953 * @returns an error code
|
cannam@154
|
954 * @retval #OPUS_OK \a on success.
|
cannam@154
|
955 * @retval #OPUS_BAD_ARG \a len was less than 1.
|
cannam@154
|
956 * @retval #OPUS_INVALID_PACKET \a data did not contain a valid Opus packet.
|
cannam@154
|
957 */
|
cannam@154
|
958 OPUS_EXPORT int opus_multistream_packet_pad(unsigned char *data, opus_int32 len, opus_int32 new_len, int nb_streams);
|
cannam@154
|
959
|
cannam@154
|
960 /** Remove all padding from a given Opus multi-stream packet and rewrite the TOC sequence to
|
cannam@154
|
961 * minimize space usage.
|
cannam@154
|
962 * @param[in,out] data <tt>const unsigned char*</tt>: The buffer containing the
|
cannam@154
|
963 * packet to strip.
|
cannam@154
|
964 * @param len <tt>opus_int32</tt>: The size of the packet.
|
cannam@154
|
965 * This must be at least 1.
|
cannam@154
|
966 * @param nb_streams <tt>opus_int32</tt>: The number of streams (not channels) in the packet.
|
cannam@154
|
967 * This must be at least 1.
|
cannam@154
|
968 * @returns The new size of the output packet on success, or an error code
|
cannam@154
|
969 * on failure.
|
cannam@154
|
970 * @retval #OPUS_BAD_ARG \a len was less than 1 or new_len was less than len.
|
cannam@154
|
971 * @retval #OPUS_INVALID_PACKET \a data did not contain a valid Opus packet.
|
cannam@154
|
972 */
|
cannam@154
|
973 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT opus_int32 opus_multistream_packet_unpad(unsigned char *data, opus_int32 len, int nb_streams);
|
cannam@154
|
974
|
cannam@154
|
975 /**@}*/
|
cannam@154
|
976
|
cannam@154
|
977 #ifdef __cplusplus
|
cannam@154
|
978 }
|
cannam@154
|
979 #endif
|
cannam@154
|
980
|
cannam@154
|
981 #endif /* OPUS_H */
|