Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/celt-0.7.0.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2009-10-23 05:14:22 +0400
committerJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2009-10-23 05:14:22 +0400
commit954fb110b913ef95430ec1c53816702a6be7e497 (patch)
treef470307fd119342d73353a3e61c6e049722378e7
parent7a047ea09676f92253b54c7e45be520a1fea52f1 (diff)
doxygen fix
-rw-r--r--libcelt/celt.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/libcelt/celt.h b/libcelt/celt.h
index fbf47e3..1c0e158 100644
--- a/libcelt/celt.h
+++ b/libcelt/celt.h
@@ -134,7 +134,6 @@ typedef struct CELTMode CELTMode;
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 @@ EXPORT int celt_mode_info(const CELTMode *mode, int request, celt_int32 *value);
@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 @@ EXPORT int celt_encoder_ctl(CELTEncoder * st, int request, ...);
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);