On Tue, Sep 04, 2012 at 04:20:17PM +0300, Martin Storsjö wrote:
> From: Michael Niedermayer <[email protected]>
> 
> It seems the condition was flipped from what was intended.
> ---
>  libavcodec/elbg.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/libavcodec/elbg.c b/libavcodec/elbg.c
> index 31195f3..0aa8e16 100644
> --- a/libavcodec/elbg.c
> +++ b/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;
>  }
> -- 

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

Reply via email to