diff options
author | Diego Biurrun <diego@biurrun.de> | 2010-07-02 11:44:58 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2010-07-02 11:44:58 +0000 |
commit | 3fa7626863b9605f3e1a8a9dc4e0d6055dd5e57e (patch) | |
tree | 7e0cd65261aabce27f3ab7f5c32dd6d4a23a187f /libavutil/lfg.h | |
parent | b8ab52e702e9536e054169f30ee05855a8f0ac93 (diff) | |
download | ffmpeg-3fa7626863b9605f3e1a8a9dc4e0d6055dd5e57e.tar.gz |
Avoid square brackets in Doxygen comments; Doxygen chokes on them.
Originally committed as revision 23979 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/lfg.h')
-rw-r--r-- | libavutil/lfg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/lfg.h b/libavutil/lfg.h index 2867710c44..854ffce737 100644 --- a/libavutil/lfg.h +++ b/libavutil/lfg.h @@ -55,7 +55,7 @@ static inline unsigned int av_mlfg_get(AVLFG *c){ * Get the next two numbers generated by a Box-Muller Gaussian * generator using the random numbers issued by lfg. * - * @param out[2] array where are placed the two generated numbers + * @param out array where the two generated numbers are placed */ void av_bmg_get(AVLFG *lfg, double out[2]); |