Commit 41f944b2 authored by mru's avatar mru

Add AV_COPY32

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21524 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1148f739
......@@ -408,6 +408,10 @@ struct unaligned_16 { uint16_t l; } __attribute__((packed));
#define AV_COPY(n, d, s) (*(uint##n##_t*)(d) = *(const uint##n##_t*)(s))
#ifndef AV_COPY32
# define AV_COPY32(d, s) AV_COPY(32, d, s)
#endif
#ifndef AV_COPY64
# define AV_COPY64(d, s) AV_COPY(64, d, s)
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment