From: rjk@greenend.org.uk <> Date: Sun, 23 Sep 2007 22:35:35 +0000 (+0100) Subject: doxygen X-Git-Tag: debian-1_5_99dev8~243^2~9 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/commitdiff_plain/0a5c871bd7a24567ffef4c5580a472715b71d394 doxygen --- diff --git a/server/speaker.c b/server/speaker.c index 1cf9146..2d87e27 100644 --- a/server/speaker.c +++ b/server/speaker.c @@ -1251,19 +1251,19 @@ static const struct speaker_backend backends[] = { * * The playing of audio is more complicated however. * - * On the first run through when a track is ready to be played, @c ready and + * On the first run through when a track is ready to be played, @ref ready and * @ref forceplay will both be zero. Therefore @c beforepoll is not called. * * @c afterpoll on the other hand @b is called and will return nonzero. The * result is that we call @c play(0). This will call activate(), setting - * @c ready nonzero, but otherwise has no immediate effect. + * @ref ready nonzero, but otherwise has no immediate effect. * * We then deal with stdin and the decoders. * * We then reach the second place we might play some audio. @ref forceplay is * 0 so nothing happens here again. * - * On the next iteration through however @c ready is nonzero, and @ref + * On the next iteration through however @ref ready is nonzero, and @ref * forceplay is 0, so we call @c beforepoll. After the @c poll() we call @c * afterpoll and actually get some audio played. *