This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
mathops: change "g" constraint to "rm" in x86-32 version of MUL64().
The 1-arg imul instruction cannot take an immediate argument, only a register or memory argument.
tags/n0.8
Justin Ruggles
15 years ago
parent
b181b8fb96
commit
aaff3b312e
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/x86/mathops.h
+ 1
- 1
libavcodec/x86/mathops.h
View File
@@ -59,7 +59,7 @@ static av_always_inline av_const int64_t MUL64(int a, int b)
__asm__ (
"imull %2"
:"=A"(rt)
:"a"(a), "
g
"(b)
:"a"(a), "
rm
"(b)
);
return rt;
}
Write
Preview
Loading…
Cancel
Save