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
typo: add missing \ in multi-line macro
Originally committed as revision 12466 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Måns Rullgård
17 years ago
parent
e6b790f9e7
commit
5550eba88d
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
libavcodec/ppc/mathops.h
+ 2
- 2
libavcodec/ppc/mathops.h
View File
@@ -30,8 +30,8 @@
/* signed 16x16 -> 32 multiply */
# define MUL16(ra, rb) \
({ int __rt;
asm ("mullhw %0, %1, %2" : "=r" (__rt) : "r" (ra), "r" (rb));
({ int __rt;
\
asm ("mullhw %0, %1, %2" : "=r" (__rt) : "r" (ra), "r" (rb));
\
__rt; })
#endif
Write
Preview
Loading…
Cancel
Save