From 09c98327b9f25c6c1716c0ee82ce09d8b484887a Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sun, 24 Sep 2017 12:21:17 +0200 Subject: build: Drop support for Tru64 Unix (OSF/1) This proprietary Unix flavor dropped from the face of the earth more than a decade ago. Nothing of value was lost. --- libavutil/intreadwrite.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'libavutil/intreadwrite.h') diff --git a/libavutil/intreadwrite.h b/libavutil/intreadwrite.h index fdb91d6bed..a9763172a8 100644 --- a/libavutil/intreadwrite.h +++ b/libavutil/intreadwrite.h @@ -192,11 +192,6 @@ union unaligned_16 { uint16_t l; } __attribute__((packed)) av_alias; # define AV_RN(s, p) (((const union unaligned_##s *) (p))->l) # define AV_WN(s, p, v) ((((union unaligned_##s *) (p))->l) = (v)) -#elif defined(__DECC) - -# define AV_RN(s, p) (*((const __unaligned uint##s##_t*)(p))) -# define AV_WN(s, p, v) (*((__unaligned uint##s##_t*)(p)) = (v)) - #elif defined(_MSC_VER) && (defined(_M_ARM) || defined(_M_X64)) && AV_HAVE_FAST_UNALIGNED # define AV_RN(s, p) (*((const __unaligned uint##s##_t*)(p))) -- cgit v1.2.3