mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-04-01 22:49:21 +00:00
x86/intmath: fix type of FASTDIV
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
7238ed6c84
commit
97726e86be
@ -27,7 +27,7 @@
|
|||||||
__asm__ volatile(\
|
__asm__ volatile(\
|
||||||
"mull %3"\
|
"mull %3"\
|
||||||
:"=d"(ret), "=a"(dmy)\
|
:"=d"(ret), "=a"(dmy)\
|
||||||
:"1"(a), "g"(ff_inverse[b])\
|
:"1"((unsigned int)(a)), "g"(ff_inverse[b])\
|
||||||
);\
|
);\
|
||||||
ret;\
|
ret;\
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user