summaryrefslogtreecommitdiff
path: root/libavcodec/i386
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2008-12-14 00:46:27 +0000
committerAurelien Jacobs <aurel@gnuage.org>2008-12-14 00:46:27 +0000
commitd08ea32c2367bcb04da2b07be05c8582bf570aad (patch)
tree0daa766c6448afd2d1a267ff30f0da6e64fcb816 /libavcodec/i386
parentbe73a544af0b626f31c484d3f96e67d68f4175ea (diff)
Get rid of mmx_t.
Originally committed as revision 16116 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386')
-rw-r--r--libavcodec/i386/mmx.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/libavcodec/i386/mmx.h b/libavcodec/i386/mmx.h
index fb5c2d467b..eaf7a0594a 100644
--- a/libavcodec/i386/mmx.h
+++ b/libavcodec/i386/mmx.h
@@ -23,24 +23,6 @@
#warning Everything in this header is deprecated, use plain __asm__()! New code using this header will be rejected.
-/*
- * The type of an value that fits in an MMX register (note that long
- * long constant values MUST be suffixed by LL and unsigned long long
- * values by ULL, lest they be truncated by the compiler)
- */
-
-typedef union {
- long long q; /* Quadword (64-bit) value */
- unsigned long long uq; /* Unsigned Quadword */
- int d[2]; /* 2 Doubleword (32-bit) values */
- unsigned int ud[2]; /* 2 Unsigned Doubleword */
- short w[4]; /* 4 Word (16-bit) values */
- unsigned short uw[4]; /* 4 Unsigned Word */
- char b[8]; /* 8 Byte (8-bit) values */
- unsigned char ub[8]; /* 8 Unsigned Byte */
- float s[2]; /* Single-precision (32-bit) value */
-} mmx_t; /* On an 8-byte (64-bit) boundary */
-
#define mmx_i2r(op,imm,reg) \
__asm__ volatile (#op " %0, %%" #reg \