diff options
author | Diego Biurrun | 2009-04-10 17:23:38 +0000 |
---|---|---|
committer | Diego Biurrun | 2009-04-10 17:23:38 +0000 |
commit | 64bde1974be4ab53f5ec468ef8f8c4cf18c27c52 (patch) | |
tree | 865f1ec8ddd7b6ba0e0cc224ac4ef0390cd83c03 /libavcodec/fft-test.c | |
parent | ee30cdabadc055ae49d9b92e800839b5d8925598 (diff) |
cosmetics: Rename prn variable to prng (Pseudo Random Number Generator).
Originally committed as revision 18422 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/fft-test.c')
-rw-r--r-- | libavcodec/fft-test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/fft-test.c b/libavcodec/fft-test.c index 0a2b93895d..1cefa3202f 100644 --- a/libavcodec/fft-test.c +++ b/libavcodec/fft-test.c @@ -131,9 +131,9 @@ static void mdct_ref(float *output, float *input, int nbits) static float frandom(void) { - AVLFG prn; - av_lfg_init(&prn, 1); - return (float)((av_lfg_get(&prn) & 0xffff) - 32768) / 32768.0; + AVLFG prng; + av_lfg_init(&prng, 1); + return (float)((av_lfg_get(&prng) & 0xffff) - 32768) / 32768.0; } static int64_t gettime(void) |