diff options
author | Mans Rullgard <mans@mansr.com> | 2011-07-03 19:14:01 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-07-04 11:07:15 +0100 |
commit | 9e52a40695609259d1f2fe1d9381ea45f9824272 (patch) | |
tree | 784ba6153a929ada4660fedf1e3da321d1cc9343 /libavutil | |
parent | d04d9f24a0f1ff5d903a8222f6933a7482ddde19 (diff) | |
download | ffmpeg-9e52a40695609259d1f2fe1d9381ea45f9824272.tar.gz |
des: allow unaligned input and output buffers
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/des.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavutil/des.c b/libavutil/des.c index 5de816387f..db2227b6ec 100644 --- a/libavutil/des.c +++ b/libavutil/des.c @@ -299,10 +299,10 @@ int av_des_init(AVDES *d, const uint8_t *key, int key_bits, int decrypt) { } void av_des_crypt(AVDES *d, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int decrypt) { - uint64_t iv_val = iv ? av_be2ne64(*(uint64_t *)iv) : 0; + uint64_t iv_val = iv ? AV_RB64(iv) : 0; while (count-- > 0) { uint64_t dst_val; - uint64_t src_val = src ? av_be2ne64(*(const uint64_t *)src) : 0; + uint64_t src_val = src ? AV_RB64(src) : 0; if (decrypt) { uint64_t tmp = src_val; if (d->triple_des) { @@ -319,12 +319,12 @@ void av_des_crypt(AVDES *d, uint8_t *dst, const uint8_t *src, int count, uint8_t } iv_val = iv ? dst_val : 0; } - *(uint64_t *)dst = av_be2ne64(dst_val); + AV_WB64(dst, dst_val); src += 8; dst += 8; } if (iv) - *(uint64_t *)iv = av_be2ne64(iv_val); + AV_WB64(iv, iv_val); } #ifdef TEST |