elbg: Fix an assert

It seems the condition was flipped from what was intended.

Signed-off-by: Martin Storsjö <martin@martin.st>
pull/28/head
Michael Niedermayer 13 years ago committed by Martin Storsjö
parent b36f87ff90
commit 2c340596ca
  1. 2
      libavcodec/elbg.c

@ -111,7 +111,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;
}

Loading…
Cancel
Save