mirror of
https://mirror.skon.top/https://github.com/FFmpeg/FFmpeg
synced 2026-05-01 06:13:08 +08:00
elbg: Fix an assert
It seems the condition was flipped from what was intended.
Signed-off-by: Martin Storsjö <martin@martin.st>
(cherry picked from commit 2c340596ca)
Signed-off-by: Diego Biurrun <diego@biurrun.de>
This commit is contained in:
committed by
Diego Biurrun
parent
ce57531a88
commit
9858a723cb
@@ -110,7 +110,7 @@ static int get_high_utility_cell(elbg_data *elbg)
|
||||
while (elbg->utility_inc[i] < r)
|
||||
i++;
|
||||
|
||||
assert(!elbg->cells[i]);
|
||||
assert(elbg->cells[i]);
|
||||
|
||||
return i;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user