2015-10-08 8:22 GMT+02:00 Christophe Gisquet <[email protected]>: > +#define TIMES4(a, b) \ > + > (((b)&0xFFFFLL)<<48)+(((a)&0xFFFFLL)<<32)+(((b)&0xFFFFLL)<<16)+((a)&0xFFFFLL), > \ > + > (((b)&0xFFFFLL)<<48)+(((a)&0xFFFFLL)<<32)+(((b)&0xFFFFLL)<<16)+((a)&0xFFFFLL)
Now that I think of it, that'll fail on BE archs (which may not use this), but I haven't thought of a better solution yet. -- Christophe _______________________________________________ ffmpeg-devel mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
