1
0
mirror of http://mpg123.de/trunk/.git synced 2025-07-06 09:42:30 +03:00

Include the examples in API doc.

git-svn-id: svn://scm.orgis.org/mpg123/trunk@1196 35dc7657-300d-0410-a2e5-dc2837fedb53
This commit is contained in:
thor
2007-11-30 23:20:04 +00:00
parent bcbc89aa56
commit 49204b005f
3 changed files with 37 additions and 15 deletions

17
doc/doxy_examples.c Normal file
View File

@ -0,0 +1,17 @@
/** \defgroup mpg123_examples example programs using libmpg123
@{ */
/** \file mpg123_to_wav.c A simple MPEG audio to WAV converter using libmpg123 (read) and libsndfile (write).
...an excersize on two simple APIs.
*/
/** \file mpglib.c Example program mimicking the old mpglib test program.
It takes an MPEG bitstream from standard input and writes raw audio to standard output.
This is an use case of the mpg123_decode() in and out function in the feeder mode.
*/
/** \file scan.c Example program that examines the exact length of an MPEG file.
It opens a list of files and does mpg123_scan() on each and reporting the mpg123_length() before and after that.
*/
/* @} */