diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2009-03-08 17:43:12 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2009-03-08 17:43:12 +0000 |
commit | 9aa2ab4276baeca2f968f6c9b90002d8c8a62a89 (patch) | |
tree | 699948803ae07463c4958ef8b3e44f781cd2ef4d /libavcodec/elbg.h | |
parent | 74e2a0784e7702d2a3e0d88c7ea4f900ea223edd (diff) | |
download | ffmpeg-9aa2ab4276baeca2f968f6c9b90002d8c8a62a89.tar.gz |
Use FLG pseudo-random number generator in RoQ and ELBG
Originally committed as revision 17881 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/elbg.h')
-rw-r--r-- | libavcodec/elbg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/elbg.h b/libavcodec/elbg.h index cbc1f98c1f..5eb33ecb28 100644 --- a/libavcodec/elbg.h +++ b/libavcodec/elbg.h @@ -39,7 +39,7 @@ */ void ff_do_elbg(int *points, int dim, int numpoints, int *codebook, int numCB, int num_steps, int *closest_cb, - AVRandomState *rand_state); + AVLFG *rand_state); /** * Initialize the **codebook vector for the elbg algorithm. If you have already @@ -50,6 +50,6 @@ void ff_do_elbg(int *points, int dim, int numpoints, int *codebook, */ void ff_init_elbg(int *points, int dim, int numpoints, int *codebook, int numCB, int num_steps, int *closest_cb, - AVRandomState *rand_state); + AVLFG *rand_state); #endif /* AVCODEC_ELBG_H */ |