summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Smith <brad@comstyle.com>2021-08-27 02:05:45 -0400
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2021-08-27 06:41:41 +0000
commit7db10403468fab512de45ccfaca8f0579f6ea6d9 (patch)
treec4b2eab990c8231bf3809814b1d8814ed64a7235
parent50661c1aa953c4b1c414f4b18d682548d7cb2054 (diff)
downloadgstreamer-plugins-good-7db10403468fab512de45ccfaca8f0579f6ea6d9.tar.gz
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>
-rw-r--r--gst/deinterlace/meson.build2
1 files changed, 0 insertions, 2 deletions
diff --git a/gst/deinterlace/meson.build b/gst/deinterlace/meson.build
index 5eae029eb..e86bebe61 100644
--- a/gst/deinterlace/meson.build
+++ b/gst/deinterlace/meson.build
@@ -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