diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2008-12-14 00:48:16 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2008-12-14 00:48:16 +0000 |
commit | 5e6604490abfc03a1209698111a1dace1e970062 (patch) | |
tree | b3ba5d9bf3e9890d704837e3ddac23f575f7a9fb /libavcodec/i386/dsputil_mmx.h | |
parent | d08ea32c2367bcb04da2b07be05c8582bf570aad (diff) | |
download | ffmpeg-5e6604490abfc03a1209698111a1dace1e970062.tar.gz |
avoid POSIX reserved _t suffix
Originally committed as revision 16117 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386/dsputil_mmx.h')
-rw-r--r-- | libavcodec/i386/dsputil_mmx.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/i386/dsputil_mmx.h b/libavcodec/i386/dsputil_mmx.h index 6c056f7313..7ff4cd6952 100644 --- a/libavcodec/i386/dsputil_mmx.h +++ b/libavcodec/i386/dsputil_mmx.h @@ -25,7 +25,7 @@ #include <stdint.h> #include "libavcodec/dsputil.h" -typedef struct { uint64_t a, b; } xmm_t; +typedef struct { uint64_t a, b; } xmm_reg; extern const uint64_t ff_bone; extern const uint64_t ff_wtwo; @@ -34,13 +34,13 @@ extern const uint64_t ff_pdw_80000000[2]; extern const uint64_t ff_pw_3; extern const uint64_t ff_pw_4; -extern const xmm_t ff_pw_5; -extern const xmm_t ff_pw_8; +extern const xmm_reg ff_pw_5; +extern const xmm_reg ff_pw_8; extern const uint64_t ff_pw_15; -extern const xmm_t ff_pw_16; +extern const xmm_reg ff_pw_16; extern const uint64_t ff_pw_20; -extern const xmm_t ff_pw_28; -extern const xmm_t ff_pw_32; +extern const xmm_reg ff_pw_28; +extern const xmm_reg ff_pw_32; extern const uint64_t ff_pw_42; extern const uint64_t ff_pw_64; extern const uint64_t ff_pw_96; |