diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2011-05-10 20:23:08 -0400 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-05-11 06:59:16 -0400 |
commit | 2caf19e90f270abe1e80a3e85acaf0eb5c9d0aac (patch) | |
tree | 0395bd4c4c263b048d94b32777044322bb70f8ee /libavcodec/high_bit_depth.h | |
parent | e1e0ca70eb0cd469b4ba757e3f72e7540ef04056 (diff) | |
download | ffmpeg-2caf19e90f270abe1e80a3e85acaf0eb5c9d0aac.tar.gz |
h264pred: fix aliasing violations.
Tested to fix Haiku H264/10bit fate failures, may also fix others.
Diffstat (limited to 'libavcodec/high_bit_depth.h')
-rw-r--r-- | libavcodec/high_bit_depth.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/high_bit_depth.h b/libavcodec/high_bit_depth.h index 6f2b6a74f4..511cd00f3a 100644 --- a/libavcodec/high_bit_depth.h +++ b/libavcodec/high_bit_depth.h @@ -14,6 +14,7 @@ # undef rnd_avg_pixel4 # undef AV_RN2P # undef AV_RN4P +# undef AV_RN4PA # undef AV_WN2P # undef AV_WN4P # undef AV_WN4PA @@ -46,6 +47,7 @@ CLIP_PIXEL(10) # define rnd_avg_pixel4 rnd_avg64 # define AV_RN2P AV_RN32 # define AV_RN4P AV_RN64 +# define AV_RN4PA AV_RN64A # define AV_WN2P AV_WN32 # define AV_WN4P AV_WN64 # define AV_WN4PA AV_WN64A @@ -61,6 +63,7 @@ CLIP_PIXEL(10) # define rnd_avg_pixel4 rnd_avg32 # define AV_RN2P AV_RN16 # define AV_RN4P AV_RN32 +# define AV_RN4PA AV_RN32A # define AV_WN2P AV_WN16 # define AV_WN4P AV_WN32 # define AV_WN4PA AV_WN32A |