From 127564b3f114da4a08883a533411f83584874aac Mon Sep 17 00:00:00 2001 From: Peter Ross Date: Sun, 6 Jan 2019 21:38:47 +1100 Subject: [PATCH] dstdec: big-endian compatiblity --- libavcodec/dstdec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/dstdec.c b/libavcodec/dstdec.c index 368cb64931..4f75bc9f37 100644 --- a/libavcodec/dstdec.c +++ b/libavcodec/dstdec.c @@ -343,8 +343,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, v = ((predict >> 15) ^ residual) & 1; dsd[((i >> 3) * channels + ch) << 2] |= v << (7 - (i & 0x7 )); - AV_WN64A(status + 8, (AV_RN64A(status + 8) << 1) | ((AV_RN64A(status) >> 63) & 1)); - AV_WN64A(status, (AV_RN64A(status) << 1) | v); + AV_WL64A(status + 8, (AV_RL64A(status + 8) << 1) | ((AV_RL64A(status) >> 63) & 1)); + AV_WL64A(status, (AV_RL64A(status) << 1) | v); } }