Module: libav
Branch: release/0.8
Commit: 9858a723cbcb206287fd0232d74c6a0991eecdc8

Author:    Michael Niedermayer <[email protected]>
Committer: Diego Biurrun <[email protected]>
Date:      Sat Aug 18 21:53:32 2012 +0200

elbg: Fix an assert

It seems the condition was flipped from what was intended.

Signed-off-by: Martin Storsjö <[email protected]>
(cherry picked from commit 2c340596cab981ac842aff7da89d298025c99304)
Signed-off-by: Diego Biurrun <[email protected]>

---

 libavcodec/elbg.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/elbg.c b/libavcodec/elbg.c
index 030c3a6..36ed9c2 100644
--- a/libavcodec/elbg.c
+++ b/libavcodec/elbg.c
@@ -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;
 }

_______________________________________________
libav-commits mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-commits

Reply via email to