From 9aa2ab4276baeca2f968f6c9b90002d8c8a62a89 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Sun, 8 Mar 2009 17:43:12 +0000 Subject: Use FLG pseudo-random number generator in RoQ and ELBG Originally committed as revision 17881 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/elbg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/elbg.h') 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 */ -- cgit v1.2.3