]> git.sesse.net Git - ffmpeg/commitdiff
intreadwrite: add AV_RL64A, AV_WL64A
authorPeter Ross <pross@xvid.org>
Mon, 7 Jan 2019 11:12:13 +0000 (22:12 +1100)
committerPeter Ross <pross@xvid.org>
Fri, 11 Jan 2019 12:43:37 +0000 (23:43 +1100)
macros for reading and writing 64-bit aligned little-endian values.

these macros are used by the DST decoder and give a performance boost
on platforms that where the compiler must guard against unaligned
memory access.

libavutil/intreadwrite.h

index 67c763b135cce1a666032806193a20b9a4809667..4c8413a536868b9a272d1030a20d0d776880b1d8 100644 (file)
@@ -542,6 +542,21 @@ union unaligned_16 { uint16_t l; } __attribute__((packed)) av_alias;
 #   define AV_WN64A(p, v) AV_WNA(64, p, v)
 #endif
 
+#if AV_HAVE_BIGENDIAN
+#   define AV_RLA(s, p)    av_bswap##s(AV_RN##s##A(p))
+#   define AV_WLA(s, p, v) AV_WN##s##A(p, av_bswap##s(v))
+#else
+#   define AV_RLA(s, p)    AV_RN##s##A(p)
+#   define AV_WLA(s, p, v) AV_WN##s##A(p, v)
+#endif
+
+#ifndef AV_RL64A
+#   define AV_RL64A(p) AV_RLA(64, p)
+#endif
+#ifndef AV_WL64A
+#   define AV_WL64A(p, v) AV_WLA(64, p, v)
+#endif
+
 /*
  * The AV_COPYxxU macros are suitable for copying data to/from unaligned
  * memory locations.