You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
elbg: Fix an assert
It seems the condition was flipped from what was intended. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
committed by
Martin Storsjö
parent
b36f87ff90
commit
2c340596ca
@@ -111,7 +111,7 @@ static int get_high_utility_cell(elbg_data *elbg)
|
|||||||
while (elbg->utility_inc[i] < r)
|
while (elbg->utility_inc[i] < r)
|
||||||
i++;
|
i++;
|
||||||
|
|
||||||
assert(!elbg->cells[i]);
|
assert(elbg->cells[i]);
|
||||||
|
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user