shithub: dav1d

Download patch

ref: 7eaa7c9fee35759829298f77e30870837eafe362
parent: b8399319939f8721640e3835e9b9e0f5f9bb913d
author: Martin Storsjö <martin@martin.st>
date: Sat Feb 1 18:17:01 EST 2020

arm: Make the existing 8bpc assembly only built if 8bpc is enabled

--- a/src/meson.build
+++ b/src/meson.build
@@ -102,22 +102,42 @@
         )
         if host_machine.cpu_family() == 'aarch64'
             libdav1d_sources += files(
-                'arm/64/cdef.S',
-                'arm/64/ipred.S',
-                'arm/64/itx.S',
-                'arm/64/loopfilter.S',
-                'arm/64/looprestoration.S',
-                'arm/64/mc.S',
                 'arm/64/msac.S',
             )
+
+            if dav1d_bitdepths.contains('8')
+                libdav1d_sources += files(
+                    'arm/64/cdef.S',
+                    'arm/64/ipred.S',
+                    'arm/64/itx.S',
+                    'arm/64/loopfilter.S',
+                    'arm/64/looprestoration.S',
+                    'arm/64/mc.S',
+                )
+            endif
+
+            if dav1d_bitdepths.contains('16')
+                libdav1d_sources += files(
+                )
+            endif
         elif host_machine.cpu_family().startswith('arm')
             libdav1d_sources += files(
-                'arm/32/cdef.S',
-                'arm/32/ipred.S',
-                'arm/32/loopfilter.S',
-                'arm/32/looprestoration.S',
-                'arm/32/mc.S',
             )
+
+            if dav1d_bitdepths.contains('8')
+                libdav1d_sources += files(
+                    'arm/32/cdef.S',
+                    'arm/32/ipred.S',
+                    'arm/32/loopfilter.S',
+                    'arm/32/looprestoration.S',
+                    'arm/32/mc.S',
+                )
+            endif
+
+            if dav1d_bitdepths.contains('16')
+                libdav1d_sources += files(
+                )
+            endif
         endif
     elif host_machine.cpu_family().startswith('x86')