From 71fd176f053520e34541d6c8be72214d9afb94ef Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 11 Sep 2016 11:51:16 -0400 Subject: IMAGE: Compilation fixes for Indeo codecs --- image/codecs/indeo/vlc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'image/codecs/indeo/vlc.cpp') diff --git a/image/codecs/indeo/vlc.cpp b/image/codecs/indeo/vlc.cpp index 5b9e96cd96..baf3984869 100644 --- a/image/codecs/indeo/vlc.cpp +++ b/image/codecs/indeo/vlc.cpp @@ -155,7 +155,7 @@ int VLC::init_vlc(int nbBits, int nbCodes, const void *p_bits, int bitsWrap, vlc = this; vlc->_bits = nbBits; if (flags & INIT_VLC_USE_NEW_STATIC) { - assert((nbCodes + 1) <= FF_ARRAY_ELEMS(localbuf)); + assert((nbCodes + 1) <= (int)FF_ARRAY_ELEMS(localbuf)); buf = localbuf; localvlc = *this; vlc = &localvlc; -- cgit v1.2.3