summaryrefslogtreecommitdiff
path: root/libavutil/x86
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-06-19 16:08:44 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-06-19 16:20:20 +0200
commit97726e86be8973ac72cbbd7fc723bad929572074 (patch)
tree711968fb5f6c6c2fb4ee9a97a0ab0a9d519e3325 /libavutil/x86
parent7238ed6c84b0a02aaf7cee2b139c74a705625d3d (diff)
x86/intmath: fix type of FASTDIV
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/x86')
-rw-r--r--libavutil/x86/intmath.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/x86/intmath.h b/libavutil/x86/intmath.h
index f3acddc0e3..4b386432c2 100644
--- a/libavutil/x86/intmath.h
+++ b/libavutil/x86/intmath.h
@@ -27,7 +27,7 @@
__asm__ volatile(\
"mull %3"\
:"=d"(ret), "=a"(dmy)\
- :"1"(a), "g"(ff_inverse[b])\
+ :"1"((unsigned int)(a)), "g"(ff_inverse[b])\
);\
ret;\
})