diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2003-07-25 13:15:16 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2003-07-25 13:15:16 +0000 |
commit | 669e5093f63eda266e310d304ffc4a37a8c382a2 (patch) | |
tree | fda26dde486c628855b0cd5d16b582b68c8ae52b /libavcodec/alpha/asm.h | |
parent | 008f085172255497ab08700f1a60d89a1c3385ca (diff) | |
download | ffmpeg-669e5093f63eda266e310d304ffc4a37a8c382a2.tar.gz |
warning fixes
Originally committed as revision 2082 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/alpha/asm.h')
-rw-r--r-- | libavcodec/alpha/asm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/alpha/asm.h b/libavcodec/alpha/asm.h index c2983125a0..9520a9fb59 100644 --- a/libavcodec/alpha/asm.h +++ b/libavcodec/alpha/asm.h @@ -42,14 +42,14 @@ #define AMASK_CIX (1 << 2) #define AMASK_MVI (1 << 8) -inline static uint64_t BYTE_VEC(uint64_t x) +static inline uint64_t BYTE_VEC(uint64_t x) { x |= x << 8; x |= x << 16; x |= x << 32; return x; } -inline static uint64_t WORD_VEC(uint64_t x) +static inline uint64_t WORD_VEC(uint64_t x) { x |= x << 16; x |= x << 32; |