diff options
author | Diego Biurrun <diego@biurrun.de> | 2017-09-24 12:21:17 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2017-10-10 23:17:54 +0200 |
commit | 09c98327b9f25c6c1716c0ee82ce09d8b484887a (patch) | |
tree | 9def936866d3069215b82cab87e092ab8db5232b /libavutil | |
parent | ab6422e1333e1c8b99e97ac61e3e9b2f6a2b4936 (diff) | |
download | ffmpeg-streaming-09c98327b9f25c6c1716c0ee82ce09d8b484887a.zip ffmpeg-streaming-09c98327b9f25c6c1716c0ee82ce09d8b484887a.tar.gz |
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')
-rw-r--r-- | libavutil/intreadwrite.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavutil/intreadwrite.h b/libavutil/intreadwrite.h index fdb91d6..a976317 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))) |