Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2017-09-24 13:21:17 +0300
committerDiego Biurrun <diego@biurrun.de>2017-10-11 00:17:54 +0300
commit09c98327b9f25c6c1716c0ee82ce09d8b484887a (patch)
tree9def936866d3069215b82cab87e092ab8db5232b /libavutil/intreadwrite.h
parentab6422e1333e1c8b99e97ac61e3e9b2f6a2b4936 (diff)
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.
Diffstat (limited to 'libavutil/intreadwrite.h')
-rw-r--r--libavutil/intreadwrite.h5
1 files changed, 0 insertions, 5 deletions
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)))