diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-06-19 16:08:44 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-06-19 16:20:20 +0200 |
commit | 97726e86be8973ac72cbbd7fc723bad929572074 (patch) | |
tree | 711968fb5f6c6c2fb4ee9a97a0ab0a9d519e3325 | |
parent | 7238ed6c84b0a02aaf7cee2b139c74a705625d3d (diff) | |
download | ffmpeg-97726e86be8973ac72cbbd7fc723bad929572074.tar.gz |
x86/intmath: fix type of FASTDIV
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavutil/x86/intmath.h | 2 |
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;\ }) |