summaryrefslogtreecommitdiffstats
path: root/libtoolame-dab/toolame.h
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2016-07-08 11:50:26 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2016-07-08 11:50:26 +0200
commit64b729f3284ead6a71fbeb7f8e0dd22187b21786 (patch)
tree60efb272d174f31bb93cfe561ac1c7ceeb3b412e /libtoolame-dab/toolame.h
parent561b6adce76dd209ebc547fcd98f525501742d97 (diff)
downloadODR-AudioEnc-64b729f3284ead6a71fbeb7f8e0dd22187b21786.tar.gz
ODR-AudioEnc-64b729f3284ead6a71fbeb7f8e0dd22187b21786.tar.bz2
ODR-AudioEnc-64b729f3284ead6a71fbeb7f8e0dd22187b21786.zip
Add doxygen configuration and target
Diffstat (limited to 'libtoolame-dab/toolame.h')
-rw-r--r--libtoolame-dab/toolame.h23
1 files changed, 13 insertions, 10 deletions
diff --git a/libtoolame-dab/toolame.h b/libtoolame-dab/toolame.h
index 5450ca0..bb73b70 100644
--- a/libtoolame-dab/toolame.h
+++ b/libtoolame-dab/toolame.h
@@ -1,15 +1,18 @@
+/*! \section libtoolame API
+ */
#ifndef __TOOLAME_H_
#define __TOOLAME_H_
#include <stdlib.h>
-/* All exported functions shown here return zero
+/*! All exported functions shown here return zero
* on success */
-/* Initialise toolame encoding library. */
+/*! Initialise toolame encoding library. */
int toolame_init(void);
-/* Finish encoding the pending samples.
- * Returns number of bytes written to output_buffer
+/*! Finish encoding the pending samples.
+ *
+ * \return number of bytes written to output_buffer
*/
int toolame_finish(
unsigned char *output_buffer,
@@ -18,23 +21,23 @@ int toolame_finish(
int toolame_enable_downmix_stereo(void);
int toolame_enable_byteswap(void);
-/* Set channel mode. Allowed values:
- * s, d, j , and m
+/*! Set channel mode. Allowed values:
+ * s, d, j, and m
*/
int toolame_set_channel_mode(const char mode);
-/* Valid PSY models: 0 to 3 */
+/*! Valid PSY models: 0 to 3 */
int toolame_set_psy_model(int new_model);
int toolame_set_bitrate(int brate);
-/* Set sample rate in Hz */
+/*! Set sample rate in Hz */
int toolame_set_samplerate(long sample_rate);
-/* Enable PAD insertion from the specified file with length */
+/*! Enable PAD insertion from the specified file with length */
int toolame_set_pad(int pad_len);
-/* Encodes one frame. Returns number of bytes written to output_buffer
+/*! Encodes one frame. Returns number of bytes written to output_buffer
*/
int toolame_encode_frame(
short buffer[2][1152],