ref: 954fb110b913ef95430ec1c53816702a6be7e497
parent: 7a047ea09676f92253b54c7e45be520a1fea52f1
author: Jean-Marc Valin <[email protected]>
date: Thu Oct 22 17:14:22 EDT 2009
doxygen fix
--- a/libcelt/celt.h
+++ b/libcelt/celt.h
@@ -134,7 +134,6 @@
decoder. The mode MUST NOT BE DESTROYED until the encoders and
decoders that use it are destroyed as well.
@param Fs Sampling rate (32000 to 96000 Hz)
- @param channels Number of channels
@param frame_size Number of samples (per channel) to encode in each
packet (even values; 64 - 512)
@param error Returned error code (if NULL, no error will be returned)
@@ -159,6 +158,8 @@
@param mode Contains all the information about the characteristics of
* the stream (must be the same characteristics as used for the
* decoder)
+ @param channels Number of channels
+ @param error Returns an error code
@return Newly created encoder state.
*/
EXPORT CELTEncoder *celt_encoder_create(const CELTMode *mode, int channels, int *error);
@@ -227,6 +228,8 @@
be shared across simultaneous streams).
@param mode Contains all the information about the characteristics of the
stream (must be the same characteristics as used for the encoder)
+ @param channels Number of channels
+ @param error Returns an error code
@return Newly created decoder state.
*/
EXPORT CELTDecoder *celt_decoder_create(const CELTMode *mode, int channels, int *error);