Commit af228a9f authored by Yu Xiaolei's avatar Yu Xiaolei Committed by Michael Niedermayer

swscale/arm: fix build error with --enable-shared

    use string comparison in assembler derivatives to prevents assembler from treating names in test expressions as imported symbols
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 8efde6d8
......@@ -170,7 +170,7 @@ endfunc
.endm
.macro store_y8_16x1 dst, count
.if \count == 0
.ifc "\count",""
vstmia \dst!, {y8x16}
.else
vstmia \dst, {y8x16}
......@@ -179,7 +179,7 @@ endfunc
.endm
.macro store_chroma_nv12_8x1 dst, count
.if \count == 0
.ifc "\count",""
vst2.i8 {u8x8, v8x8}, [\dst]!
.else
vst2.i8 {u8x8, v8x8}, [\dst], \count
......@@ -187,7 +187,7 @@ endfunc
.endm
.macro store_chroma_nv21_8x1 dst, count
.if \count == 0
.ifc "\count",""
vst2.i8 {v8x8, u8x8}, [\dst]!
.else
vst2.i8 {v8x8, u8x8}, [\dst], \count
......@@ -195,7 +195,7 @@ endfunc
.endm
.macro load_8888_16x1 a, b, c, d, src, count
.if \count == 0
.ifc "\count",""
vld4.8 {\a\()8x16_l, \b\()8x16_l, \c\()8x16_l, \d\()8x16_l}, [\src]!
vld4.8 {\a\()8x16_h, \b\()8x16_h, \c\()8x16_h, \d\()8x16_h}, [\src]!
.else
......@@ -265,7 +265,7 @@ alias BIAS_Y, q2
alias_qw \d\()8x16, q6, \set
.endm
.macro kernel_420_16x2 rgb_fmt, yuv_fmt, rgb0, rgb1, y0, y1, chroma, count=0
.macro kernel_420_16x2 rgb_fmt, yuv_fmt, rgb0, rgb1, y0, y1, chroma, count
alias_src_\rgb_fmt
alias_dst_\yuv_fmt
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment