comparison snow.c @ 2368:a7ac68734a91 libavcodec

fix for build on IRIX by (Michel Bardiaux {mbardiaux peaktime be})
author michael
date Thu, 25 Nov 2004 19:26:46 +0000
parents 28eb7b1dcefc
children a6e4da1c28ee
comparison
equal deleted inserted replaced
2367:c353719836af 2368:a7ac68734a91
428 BlockNode *block; 428 BlockNode *block;
429 429
430 MpegEncContext m; // needed for motion estimation, should not be used for anything else, the idea is to make the motion estimation eventually independant of MpegEncContext, so this will be removed then (FIXME/XXX) 430 MpegEncContext m; // needed for motion estimation, should not be used for anything else, the idea is to make the motion estimation eventually independant of MpegEncContext, so this will be removed then (FIXME/XXX)
431 }SnowContext; 431 }SnowContext;
432 432
433 #ifdef __sgi
434 // Avoid a name clash on SGI IRIX
435 #undef qexp
436 #endif
433 #define QEXPSHIFT (7-FRAC_BITS+8) //FIXME try to change this to 0 437 #define QEXPSHIFT (7-FRAC_BITS+8) //FIXME try to change this to 0
434 static const uint8_t qexp[8]={ 438 static const uint8_t qexp[8]={
435 128, 140, 152, 166, 181, 197, 215, 235 439 128, 140, 152, 166, 181, 197, 215, 235
436 // 64, 70, 76, 83, 91, 99, 108, 117 440 // 64, 70, 76, 83, 91, 99, 108, 117
437 // 32, 35, 38, 41, 45, 49, 54, 59 441 // 32, 35, 38, 41, 45, 49, 54, 59