From e40ee25c4943af8d3fbf0bf47109473d5a2ba8d1 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Tue, 10 Mar 2009 17:38:16 +0000 Subject: Fix bug when elbg->utility_inc[elbg->numCB-1] == 1 Originally committed as revision 17926 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/elbg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/elbg.c') diff --git a/libavcodec/elbg.c b/libavcodec/elbg.c index 35f068825f..85319db78e 100644 --- a/libavcodec/elbg.c +++ b/libavcodec/elbg.c @@ -105,7 +105,7 @@ static int get_high_utility_cell(elbg_data *elbg) { int i=0; /* Using linear search, do binary if it ever turns to be speed critical */ - int r = av_lfg_get(elbg->rand_state)%(elbg->utility_inc[elbg->numCB-1]-1) + 1; + int r = av_lfg_get(elbg->rand_state)%elbg->utility_inc[elbg->numCB-1] + 1; while (elbg->utility_inc[i] < r) i++; -- cgit v1.2.3