diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-03-21 16:14:55 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-03-21 16:14:55 +0000 |
commit | 573e0118e2b5aca77b6dec53e8337f699d704095 (patch) | |
tree | fac6a4bc55bfb8a6a3bc6f1c9198e10085994ade | |
parent | 0e4cb6cbad13cf25b4638b526dc18c5f02ddf950 (diff) | |
download | ffmpeg-573e0118e2b5aca77b6dec53e8337f699d704095.tar.gz |
Fix reference to av_random_init where av_lfg_init was meant.
Originally committed as revision 18113 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/elbg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/elbg.h b/libavcodec/elbg.h index bc5b739e9f..e6f577e3e5 100644 --- a/libavcodec/elbg.h +++ b/libavcodec/elbg.h @@ -35,7 +35,7 @@ * @param numCB Number of points in the codebook. * @param num_steps The maximum number of steps. One step is already a good compromise between time and quality. * @param closest_cb Return the closest codebook to each point. Must be allocated. - * @param rand_state A random number generator state. Should be already initialised by av_random_init. + * @param rand_state A random number generator state. Should be already initialized by av_lfg_init(). */ void ff_do_elbg(int *points, int dim, int numpoints, int *codebook, int numCB, int num_steps, int *closest_cb, |