summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-11-25 19:26:46 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-11-25 19:26:46 +0000
commit2554db9b5f54c19f7341175027d7a66a057632ee (patch)
tree88c8e8b44b6bf7020cc47651705b73bfefedc76b /libavcodec
parent21d7e2ff409383910a2f8b99615ce71d44e77697 (diff)
fix for build on IRIX by (Michel Bardiaux {mbardiaux peaktime be})
Originally committed as revision 3713 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/snow.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/snow.c b/libavcodec/snow.c
index eeb84a0fcf..2a4a7d3d4f 100644
--- a/libavcodec/snow.c
+++ b/libavcodec/snow.c
@@ -430,6 +430,10 @@ typedef struct SnowContext{
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)
}SnowContext;
+#ifdef __sgi
+// Avoid a name clash on SGI IRIX
+#undef qexp
+#endif
#define QEXPSHIFT (7-FRAC_BITS+8) //FIXME try to change this to 0
static const uint8_t qexp[8]={
128, 140, 152, 166, 181, 197, 215, 235