diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-10-23 13:03:10 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-23 16:53:42 +0200 |
commit | aa91fe80913ff8e84d2264f65b87af57519ce0ff (patch) | |
tree | 0acf49853e995bd58fca806153126cd6c177310c /libavcodec | |
parent | 9ab0874ea8b6774c6f5470dba2b5b4615a610d0d (diff) | |
download | ffmpeg-aa91fe80913ff8e84d2264f65b87af57519ce0ff.tar.gz |
dxtory: Replace AV_WN16A(AV_RN16A()) combination by AV_COPY16
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dxtory.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dxtory.c b/libavcodec/dxtory.c index f741078092..da43c47003 100644 --- a/libavcodec/dxtory.c +++ b/libavcodec/dxtory.c @@ -70,8 +70,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, V = pic->data[2]; for (h = 0; h < avctx->height; h += 2) { for (w = 0; w < avctx->width; w += 2) { - AV_WN16A(Y1 + w, AV_RN16A(src)); - AV_WN16A(Y2 + w, AV_RN16A(src + 2)); + AV_COPY16(Y1 + w, src); + AV_COPY16(Y2 + w, src + 2); U[w >> 1] = src[4] + 0x80; V[w >> 1] = src[5] + 0x80; src += 6; |