deinterlace: Use proper ASM output format for *BSD OS
authorBrad Smith <brad@comstyle.com>
Fri, 27 Aug 2021 06:05:45 +0000 (02:05 -0400)
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Fri, 27 Aug 2021 06:41:41 +0000 (06:41 +0000)
FreeBSD/NetBSD/OpenBSD amd64 use the ELF binary format.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/1066>

gst/deinterlace/meson.build

index 5eae029..e86bebe 100644 (file)
@@ -65,8 +65,6 @@ if have_nasm and host_cpu == 'x86_64'
     asm_outformat = 'win64'
   elif ['darwin', 'ios'].contains(host_system)
     asm_outformat = 'macho64'
-  elif host_system.endswith('bsd')
-    asm_outformat = 'aoutb'
   else
     asm_outformat = 'elf64'
   endif