Message ID | tencent_59A7255BD301284953F5336B95C8A9040E05@qq.com |
---|---|
State | New |
Headers | show |
Series | [FFmpeg-devel,1/3] aarch64/h26x: Remove duplicate b.eq instruction | expand |
Context | Check | Description |
---|---|---|
yinshiyou/make_loongarch64 | success | Make finished |
yinshiyou/make_fate_loongarch64 | success | Make fate finished |
andriy/make_x86 | success | Make finished |
andriy/make_fate_x86 | success | Make fate finished |
On Wed, 11 Sep 2024, Zhao Zhili wrote: > From: Zhao Zhili <zhilizhao@tencent.com> > > b.eq is added by calc_all after each calc. > --- > libavcodec/aarch64/h26x/qpel_neon.S | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/libavcodec/aarch64/h26x/qpel_neon.S b/libavcodec/aarch64/h26x/qpel_neon.S > index 8a372a76be..7868811b3b 100644 > --- a/libavcodec/aarch64/h26x/qpel_neon.S > +++ b/libavcodec/aarch64/h26x/qpel_neon.S > @@ -754,7 +754,6 @@ function ff_hevc_put_hevc_qpel_v4_8_neon, export=1 > calc_qpelb v24, \src0, \src1, \src2, \src3, \src4, \src5, \src6, \src7 > st1 {v24.4h}, [x0], x9 > subs w3, w3, #1 > - b.eq 2f > .endm > 1: calc_all > .purgem calc > -- > 2.42.0 Ok // Martin
diff --git a/libavcodec/aarch64/h26x/qpel_neon.S b/libavcodec/aarch64/h26x/qpel_neon.S index 8a372a76be..7868811b3b 100644 --- a/libavcodec/aarch64/h26x/qpel_neon.S +++ b/libavcodec/aarch64/h26x/qpel_neon.S @@ -754,7 +754,6 @@ function ff_hevc_put_hevc_qpel_v4_8_neon, export=1 calc_qpelb v24, \src0, \src1, \src2, \src3, \src4, \src5, \src6, \src7 st1 {v24.4h}, [x0], x9 subs w3, w3, #1 - b.eq 2f .endm 1: calc_all .purgem calc
From: Zhao Zhili <zhilizhao@tencent.com> b.eq is added by calc_all after each calc. --- libavcodec/aarch64/h26x/qpel_neon.S | 1 - 1 file changed, 1 deletion(-)