mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
Fix bug when elbg->utility_inc[elbg->numCB-1] == 1
Originally committed as revision 17926 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
eb2c24232f
commit
e40ee25c49
@ -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++;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user