From: Andre Noll Date: Tue, 13 Mar 2007 23:28:15 +0000 (+0100) Subject: mp3_afh.c: Documentation update X-Git-Tag: v0.2.16~18 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=6e7e1ff218c4328f57f7f7816b2eeabb22790bd7 mp3_afh.c: Documentation update --- diff --git a/mp3_afh.c b/mp3_afh.c index 8f36bb83..c49d9bcb 100644 --- a/mp3_afh.c +++ b/mp3_afh.c @@ -187,15 +187,13 @@ static int compare_headers(struct mp3header *h1,struct mp3header *h2) return 0; } -/** +/* * get next MP3 frame header. * - * \param stream to read the header from - * \param header structure that gets filled in by get_header() - * - * \return On success, the header frame length is returned. A return value of - * zero means that we did not retrieve a valid frame header, and a negative - * return value indicates an error. + * On success, the header frame length is returned and the given header + * structure that is filled in. A return value of zero means that we did not + * retrieve a valid frame header, and a negative return value indicates an + * error. */ static int get_header(unsigned char *map, off_t numbytes, off_t *fpos, struct mp3header *header) @@ -233,9 +231,9 @@ out: /** * find the next mp3 header * - * \return On success, the length of the next frame header. If the end of the - * file was reached, the function returns zero. On errors, a negative value is - * returned. + * On success, the length of the next frame header is returned. If the end of + * the file was reached, the function returns zero. On errors, a negative value + * is returned. * */ static int mp3_seek_next_header(unsigned char *map, off_t numbytes, off_t *fpos)