X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=oggdec.c;h=b82f12ef8b994c605cb7f1699e0923d41738d365;hp=4c8aae5f9a04eb9a0e933e2a51e871229a5987c0;hb=c33fa55e39f9ef715abe47cabdfd997a190da61d;hpb=19d9318abf42debb15d833d4e56ab636893285c3 diff --git a/oggdec.c b/oggdec.c index 4c8aae5f..b82f12ef 100644 --- a/oggdec.c +++ b/oggdec.c @@ -1,10 +1,10 @@ /* - * Copyright (C) 2005-2007 Andre Noll + * Copyright (C) 2005-2008 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ -/** \file oggdec.c paraslash's ogg vorbis decoder */ +/** \file oggdec.c Paraslash's ogg vorbis decoder. */ #include "para.h" @@ -58,7 +58,8 @@ static size_t cb_read(void *buf, size_t size, size_t nmemb, void *datasource) } /* - * cb_seek -- custom data seeking function + * Custom data seeking function. + * * Since we want the data source to be treated as unseekable at all * times, the provided seek callback always returns -1 (failure). */ @@ -78,8 +79,8 @@ static const ov_callbacks ovc = { .seek_func = cb_seek, .close_func = cb_close, /* - * The tell function need not be provided if - * the data IO abstraction is not seekable + * The tell function need not be provided if the data IO abstraction is + * not seekable */ .tell_func = NULL };