deinterlace: Use proper ASM output format for *BSD OS

FreeBSD/NetBSD/OpenBSD amd64 use the ELF binary format.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/1066>
This commit is contained in:
Brad Smith 2021-08-27 02:05:45 -04:00 committed by GStreamer Marge Bot
parent 50661c1aa9
commit 7db1040346

View 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