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
Alpha: add some const, kill some warnings
Originally committed as revision 16665 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Måns Rullgård
16 years ago
parent
b4097b13d4
commit
c2fbf89398
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
libavcodec/alpha/asm.h
+ 2
- 2
libavcodec/alpha/asm.h
View File
@@ -62,12 +62,12 @@ static inline uint64_t WORD_VEC(uint64_t x)
#ifdef __GNUC__
#define ldq(p) \
(((union {
\
(((
const
union { \
uint64_t __l; \
__typeof__(*(p)) __s[sizeof (uint64_t) / sizeof *(p)]; \
} *) (p))->__l)
#define ldl(p) \
(((union {
\
(((
const
union { \
int32_t __l; \
__typeof__(*(p)) __s[sizeof (int32_t) / sizeof *(p)]; \
} *) (p))->__l)
Write
Preview
Loading…
Cancel
Save