diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-01-28 00:16:05 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-01-28 00:16:05 +0000 |
commit | 89c9ff504b29d03cf266aa3598ccb8d2cf1ddd13 (patch) | |
tree | 340147cb9f4382a838ae971bf991c2f42482077c /libavutil/lfg.h | |
parent | d972e56cf21e9fa12922704da276d26111b5dbc1 (diff) | |
download | ffmpeg-89c9ff504b29d03cf266aa3598ccb8d2cf1ddd13.tar.gz |
spelling/grammar/consistency review part I
Originally committed as revision 16840 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/lfg.h')
-rw-r--r-- | libavutil/lfg.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/lfg.h b/libavutil/lfg.h index f75491e353..3250c18e79 100644 --- a/libavutil/lfg.h +++ b/libavutil/lfg.h @@ -30,7 +30,7 @@ typedef struct { void av_lfg_init(AVLFG *c, unsigned int seed); /** - * Gets the next random unsigned 32bit number using a ALFG. + * Gets the next random unsigned 32-bit number using an ALFG. * * Please also consider a simple LCG like state= state*1664525+1013904223, * it may be good enough and faster for your specific use case. @@ -41,9 +41,9 @@ static inline unsigned int av_lfg_get(AVLFG *c){ } /** - * Gets the next random unsigned 32bit number using a MLFG. + * Gets the next random unsigned 32-bit number using a MLFG. * - * Please also consider the av_lfg_get() above, it is faster. + * Please also consider av_lfg_get() above, it is faster. */ static inline unsigned int av_mlfg_get(AVLFG *c){ unsigned int a= c->state[(c->index-55) & 63]; |