projects
/
libav.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
dxtory: Replace AV_WN16A(AV_RN16A()) combination by AV_COPY16
[libav.git]
/
libavcodec
/
dxtory.c
diff --git
a/libavcodec/dxtory.c
b/libavcodec/dxtory.c
index
f741078
..
da43c47
100644
(file)
--- 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) {
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;
U[w >> 1] = src[4] + 0x80;
V[w >> 1] = src[5] + 0x80;
src += 6;