Browse Source

aes: fix for big endian systems

This was missed in 5d20f19 since CONFIG_SMALL was always broken
for big endian.

Signed-off-by: Mans Rullgard <mans@mansr.com>
tags/n0.9
Mans Rullgard 14 years ago
parent
commit
8f175810be
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      libavutil/aes.c

+ 5
- 1
libavutil/aes.c View File

@@ -54,7 +54,11 @@ static uint32_t enc_multbl[4][256];
static uint32_t dec_multbl[4][256];
#endif

#define ROT(x, s) ((x << s) | (x >> (32-s)))
#if HAVE_BIGENDIAN
# define ROT(x, s) ((x >> s) | (x << (32-s)))
#else
# define ROT(x, s) ((x << s) | (x >> (32-s)))
#endif

static inline void addkey(av_aes_block *dst, const av_aes_block *src,
const av_aes_block *round_key)


Loading…
Cancel
Save