From 44b18b86cdab323b0541e6ca0dd08f28940f7447 Mon Sep 17 00:00:00 2001 From: Gleb Popov <6yearold@gmail.com> Date: Wed, 26 Jan 2022 11:06:58 +0300 Subject: [PATCH] Fix build on FreeBSD by defining bswap_64. --- spa/plugins/audioconvert/fmt-ops.h | 1 + 1 file changed, 1 insertion(+) diff --git a/spa/plugins/audioconvert/fmt-ops.h b/spa/plugins/audioconvert/fmt-ops.h index 6cf524760..ae471427a 100644 --- a/spa/plugins/audioconvert/fmt-ops.h +++ b/spa/plugins/audioconvert/fmt-ops.h @@ -27,6 +27,7 @@ #include #define bswap_16 bswap16 #define bswap_32 bswap32 +#define bswap_64 bswap64 #else #include #endif