[FFmpeg-cvslog] elbg: Fix an assert

Michael Niedermayer git at videolan.org
Wed Mar 11 21:43:32 CET 2015


ffmpeg | branch: release/0.10 | Michael Niedermayer <michaelni at gmx.at> | Sat Aug 18 21:53:32 2012 +0200| [9858a723cbcb206287fd0232d74c6a0991eecdc8] | committer: Diego Biurrun

elbg: Fix an assert

It seems the condition was flipped from what was intended.

Signed-off-by: Martin Storsjö <martin at martin.st>
(cherry picked from commit 2c340596cab981ac842aff7da89d298025c99304)
Signed-off-by: Diego Biurrun <diego at biurrun.de>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9858a723cbcb206287fd0232d74c6a0991eecdc8
---

 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;
 }



More information about the ffmpeg-cvslog mailing list