mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 20:29:02 +08:00
5d7ad6b5ae
* Update ffmpeg to 4.4.3 - Backport fix for h.264 hardware decoding on M1 macs - ffmpeg links against built-in atomic, not a findable lib * add missing extension for new patch * version! Co-authored-by: Martijn Otto <martijn@resolume.com> Co-authored-by: Javier Matos Denizac <javier.matosd@gmail.com>
29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
diff --git a/libswscale/aarch64/yuv2rgb_neon.S b/libswscale/aarch64/yuv2rgb_neon.S
|
|
index f4b220f..af677af 100644
|
|
--- a/libswscale/aarch64/yuv2rgb_neon.S
|
|
+++ b/libswscale/aarch64/yuv2rgb_neon.S
|
|
@@ -169,19 +169,19 @@ function ff_\ifmt\()_to_\ofmt\()_neon, export=1
|
|
sqdmulh v26.8H, v26.8H, v0.8H // ((Y1*(1<<3) - y_offset) * y_coeff) >> 15
|
|
sqdmulh v27.8H, v27.8H, v0.8H // ((Y2*(1<<3) - y_offset) * y_coeff) >> 15
|
|
|
|
-.ifc \ofmt,argb // 1 2 3 0
|
|
+.ifc \ofmt,argb
|
|
compute_rgba v5.8B,v6.8B,v7.8B,v4.8B, v17.8B,v18.8B,v19.8B,v16.8B
|
|
.endif
|
|
|
|
-.ifc \ofmt,rgba // 0 1 2 3
|
|
+.ifc \ofmt,rgba
|
|
compute_rgba v4.8B,v5.8B,v6.8B,v7.8B, v16.8B,v17.8B,v18.8B,v19.8B
|
|
.endif
|
|
|
|
-.ifc \ofmt,abgr // 3 2 1 0
|
|
+.ifc \ofmt,abgr
|
|
compute_rgba v7.8B,v6.8B,v5.8B,v4.8B, v19.8B,v18.8B,v17.8B,v16.8B
|
|
.endif
|
|
|
|
-.ifc \ofmt,bgra // 2 1 0 3
|
|
+.ifc \ofmt,bgra
|
|
compute_rgba v6.8B,v5.8B,v4.8B,v7.8B, v18.8B,v17.8B,v16.8B,v19.8B
|
|
.endif
|
|
|