@@ -214,7 +214,7 @@ static OPUS_INLINE int SHL32_(opus_int64 a, int shift, char *file, int line)
opus_int64res;
if(!VERIFY_INT(a)||!VERIFY_SHORT(shift))
{
fprintf(stderr,"SHL32: inputs are not int: %lld %d in %s: line %d\n",a,shift,file,line);
fprintf(stderr,"SHL32: inputs are not int: %lld %d in %s: line %d\n",(longlong)a,shift,file,line);
#ifdef FIXED_DEBUG_ASSERT
celt_assert(0);
#endif
...
...
@@ -222,7 +222,7 @@ static OPUS_INLINE int SHL32_(opus_int64 a, int shift, char *file, int line)
res=a<<shift;
if(!VERIFY_INT(res))
{
fprintf(stderr,"SHL32: output is not int: %lld<<%d = %lld in %s: line %d\n",a,shift,res,file,line);
fprintf(stderr,"SHL32: output is not int: %lld<<%d = %lld in %s: line %d\n",(longlong)a,shift,(longlong)res,file,line);
#ifdef FIXED_DEBUG_ASSERT
celt_assert(0);
#endif
...
...
@@ -339,7 +339,7 @@ static OPUS_INLINE unsigned int UADD32_(opus_uint64 a, opus_uint64 b, char *file
opus_uint64res;
if(!VERIFY_UINT(a)||!VERIFY_UINT(b))
{
fprintf(stderr,"UADD32: inputs are not uint32: %llu %llu in %s: line %d\n",a,b,file,line);
fprintf(stderr,"UADD32: inputs are not uint32: %llu %llu in %s: line %d\n",(unsignedlonglong)a,(unsignedlonglong)b,file,line);
#ifdef FIXED_DEBUG_ASSERT
celt_assert(0);
#endif
...
...
@@ -347,7 +347,7 @@ static OPUS_INLINE unsigned int UADD32_(opus_uint64 a, opus_uint64 b, char *file
res=a+b;
if(!VERIFY_UINT(res))
{
fprintf(stderr,"UADD32: output is not uint32: %llu in %s: line %d\n",res,file,line);
fprintf(stderr,"UADD32: output is not uint32: %llu in %s: line %d\n",(unsignedlonglong)res,file,line);
#ifdef FIXED_DEBUG_ASSERT
celt_assert(0);
#endif
...
...
@@ -363,14 +363,14 @@ static OPUS_INLINE unsigned int USUB32_(opus_uint64 a, opus_uint64 b, char *file
opus_uint64res;
if(!VERIFY_UINT(a)||!VERIFY_UINT(b))
{
fprintf(stderr,"USUB32: inputs are not uint32: %llu %llu in %s: line %d\n",a,b,file,line);
fprintf(stderr,"USUB32: inputs are not uint32: %llu %llu in %s: line %d\n",(unsignedlonglong)a,(unsignedlonglong)b,file,line);
#ifdef FIXED_DEBUG_ASSERT
celt_assert(0);
#endif
}
if(a<b)
{
fprintf(stderr,"USUB32: inputs underflow: %llu < %llu in %s: line %d\n",a,b,file,line);
fprintf(stderr,"USUB32: inputs underflow: %llu < %llu in %s: line %d\n",(unsignedlonglong)a,(unsignedlonglong)b,file,line);
#ifdef FIXED_DEBUG_ASSERT
celt_assert(0);
#endif
...
...
@@ -378,7 +378,7 @@ static OPUS_INLINE unsigned int USUB32_(opus_uint64 a, opus_uint64 b, char *file
res=a-b;
if(!VERIFY_UINT(res))
{
fprintf(stderr,"USUB32: output is not uint32: %llu - %llu = %llu in %s: line %d\n",a,b,res,file,line);
fprintf(stderr,"USUB32: output is not uint32: %llu - %llu = %llu in %s: line %d\n",(unsignedlonglong)a,(unsignedlonglong)b,(unsignedlonglong)res,file,line);
#ifdef FIXED_DEBUG_ASSERT
celt_assert(0);
#endif
...
...
@@ -416,7 +416,7 @@ static OPUS_INLINE int MULT32_32_32(opus_int64 a, opus_int64 b)
opus_int64res;
if(!VERIFY_INT(a)||!VERIFY_INT(b))
{
fprintf(stderr,"MULT32_32_32: inputs are not int: %d %d\n",a,b);
fprintf(stderr,"MULT32_32_32: inputs are not int: %lld %lld\n",(longlong)a,(longlong)b);
#ifdef FIXED_DEBUG_ASSERT
celt_assert(0);
#endif
...
...
@@ -424,7 +424,7 @@ static OPUS_INLINE int MULT32_32_32(opus_int64 a, opus_int64 b)
res=a*b;
if(!VERIFY_INT(res))
{
fprintf(stderr,"MULT32_32_32: output is not int: %d\n",res);
fprintf(stderr,"MULT32_32_32: output is not int: %lld\n",(longlong)res);
#ifdef FIXED_DEBUG_ASSERT
celt_assert(0);
#endif
...
...
@@ -438,7 +438,7 @@ static OPUS_INLINE int MULT32_32_Q16(opus_int64 a, opus_int64 b)
opus_int64res;
if(!VERIFY_INT(a)||!VERIFY_INT(b))
{
fprintf(stderr,"MULT32_32_Q16: inputs are not int: %d %d\n",a,b);
fprintf(stderr,"MULT32_32_Q16: inputs are not int: %lld %lld\n",(longlong)a,(longlong)b);
#ifdef FIXED_DEBUG_ASSERT
celt_assert(0);
#endif
...
...
@@ -446,7 +446,7 @@ static OPUS_INLINE int MULT32_32_Q16(opus_int64 a, opus_int64 b)
res=((opus_int64)(a)*(opus_int64)(b))>>16;
if(!VERIFY_INT(res))
{
fprintf(stderr,"MULT32_32_Q16: output is not int: %d*%d=%d\n",a,b,(int)res);
fprintf(stderr,"MULT32_32_Q16: output is not int: %lld*%lld=%lld\n",(longlong)a,(longlong)b,(longlong)res);