diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-06-24 02:10:30 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-06-24 02:13:43 +0200 |
commit | eab2509f8ccfaa5c8b61440192b8a6f8305b6541 (patch) | |
tree | 94689129d288abc6348a516ce836c4d35c4afbe0 | |
parent | 47048aa30b5c35fc8b030e819b9769b6bca03c08 (diff) | |
download | ffmpeg-eab2509f8ccfaa5c8b61440192b8a6f8305b6541.tar.gz |
avcodec/x86/h264_qpel_10bit: locally define pb_0
somehow old llvm-gcc manages to ignore the alignment from ff_pb_0 causing a crash on freebsd
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/x86/h264_qpel_10bit.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/h264_qpel_10bit.asm b/libavcodec/x86/h264_qpel_10bit.asm index e7ce1b8b44..d65660dfbc 100644 --- a/libavcodec/x86/h264_qpel_10bit.asm +++ b/libavcodec/x86/h264_qpel_10bit.asm @@ -28,7 +28,7 @@ SECTION_RODATA 32 cextern pw_16 cextern pw_1 -cextern pb_0 +pb_0: times 32 db 0 ; we do not use cextern here as old llvm-gcc fails to align it correctly pw_pixel_max: times 8 dw ((1 << 10)-1) |