SPARTA icon indicating copy to clipboard operation
SPARTA copied to clipboard

SAF plugins won't scan on (Arch) Linux

Open madskjeldgaard opened this issue 2 years ago • 20 comments

Hi again @leomccormack

I've now added the plugins to the Arch User Repository and users of arch based ssystems may now install them using an AUR helper like so: paru -S sparta-plugins.

The only thing missing is the binaural plugins - I cannot get them to show up on my system even though they are installed. I've installed all dependencies mentioned in the install instructions (I think): "hdf5" "netcdf" "netcdf-fortran" "libglvnd" "freetype2" "libxinerama" "webkit2gtk" "gtk3" "libxext" "lapack" "libcurl-gnutls". Any other pointers?

Originally posted by @madskjeldgaard in https://github.com/leomccormack/SPARTA/issues/20#issuecomment-914166012

madskjeldgaard avatar Sep 13 '21 08:09 madskjeldgaard

This is the full package build script:

# Maintainer: Mads Kjeldgaard <[email protected]>
pkgname=sparta-plugins
pkgver=1.5.1
pkgrel=1
pkgdesc="A collection of spatial audio related VST plug-ins (loudspeaker/binaural panners, Ambisonics encoders/decoders/visualisers, etc.)"
arch=('x86_64')
url="https://github.com/leomccormack/SPARTA"
license=('GPL')
depends=("hdf5" "netcdf" "netcdf-fortran" "libglvnd" "freetype2" "libxinerama" "webkit2gtk" "gtk3" "libxext" "lapack" "libcurl-gnutls")
makedepends=()
optdepends=()
provides=("${pkgname}")
conflicts=()
_build_date="2021_08_23"
_file_name="Linux_SPARTA_${_build_date}_v${pkgver}"
source=("$url/releases/download/v$pkgver/$_file_name.zip")
md5sums=('9b85d35d4c301a4ffb466ccd7de97d7e')

package() {

	cd "$srcdir/${_file_name}"

	# Install libs
	install -Dm755 "libsaf_mkl_custom_lp64.so" "$pkgdir/usr/lib/libsaf_mkl_custom_lp64.so"
	install -Dm755 "libsaf_ipp_custom.so" "$pkgdir/usr/lib/libsaf_ipp_custom.so"

	# Install plugins
	PLUGINS=(
				"libcompass_6dof.so"
				"libcompass_array2sh.so"
				"libcompass_binaural.so"
				"libcompass_binauralVR.so"
				"libcompass_decoder.so"
				"libcompass_gravitator.so"
				"libcompass_sidechain.so"
				"libcompass_spatedit.so"
				"libcompass_tracker.so"
				"libcompass_upmixer.so"
				"libcropac_binaural.so"
				"libhodirac_binaural.so"
				"libhodirac_decoder.so"
				"libHOSIRR.so"
				"libsparta_ambiBIN.so"
				"libsparta_ambiDEC.so"
				"libsparta_ambiDRC.so"
				"libsparta_ambiENC.so"
				"libsparta_ambiRoomSim.so"
				"libsparta_array2sh.so"
				"libsparta_beamformer.so"
				"libsparta_binauraliser.so"
				"libsparta_decorrelator.so"
				"libsparta_matrixconv.so"
				"libsparta_multiconv.so"
				"libsparta_panner.so"
				"libsparta_pitchShifter.so"
				"libsparta_rotator.so"
				"libsparta_spreader.so"
				)

	for F in "${PLUGINS[@]}"; do install -Dm755 "$F"  "$pkgdir/usr/lib/vst/$F"; done

	install -Dm644 ./LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}

madskjeldgaard avatar Sep 13 '21 08:09 madskjeldgaard

2021-09-13-10:47:47-screenshot

Here is a screenshot of the plugins that failed to scan. I get no error messages on the command line (ignore the libswell error). The other plugins not in this list show up fine with no problems.

madskjeldgaard avatar Sep 13 '21 08:09 madskjeldgaard

I tried building just the cropac binaural decoder from it's independent repository and while the build went okay, after installation it also does not scan.

madskjeldgaard avatar Sep 13 '21 08:09 madskjeldgaard

It seems to mostly be SAF dependent plugins that are the issue here

madskjeldgaard avatar Sep 13 '21 08:09 madskjeldgaard

Hey! OK, this is certainly some run-time linking issue with either netcdf, hdf5, and/or zlib. I've currently been working on adding libmysofa support for the sofa reader in SAF, which would allow us to drop the netcdf, and hdf5 dependencies at least. zlib is so ubiquitous, I'd imagine that this would not be the issue.

At least... this doesn't address the current problem, but I think this would circumvent it. And I'll try and get round to this soon : )

leomccormack avatar Sep 14 '21 13:09 leomccormack

Hey! OK, this is certainly some run-time linking issue with either netcdf, hdf5, and/or zlib. I've currently been working on adding libmysofa support for the sofa reader in SAF, which would allow us to drop the netcdf, and hdf5 dependencies at least. zlib is so ubiquitous, I'd imagine that this would not be the issue.

At least... this doesn't address the current problem, but I think this would circumvent it. And I'll try and get round to this soon : )

Thanks a lot Leo!

If it's any help, I use zlib v 1.2.11, netcdf v 4.7.4 and hdf5 v 1.12.0

madskjeldgaard avatar Sep 16 '21 09:09 madskjeldgaard

Investigating this further. This seems to be a problem specific to REAPER. In Ardour, the cropac binaural plugins shows up. Hmm...

madskjeldgaard avatar Sep 23 '21 12:09 madskjeldgaard

Investigating this further. This seems to be a problem specific to REAPER. In Ardour, the cropac binaural plugins shows up. Hmm...

And in Carla as well

madskjeldgaard avatar Sep 23 '21 12:09 madskjeldgaard

Okay I have found some of the problems now, I think. It seems that these plugins expect libnetcdf.so.15 and with arch/manjaro, it currently is at 18 which results in the plugins being blacklisted some places.

sudo ln -s /usr/lib/libnetcdf.so.18 /usr/lib/libnetcdf.so.15

Makes it possible to load some of them. In earlier versions of the plugins I had to downgrade netcdf Set this to 4.7.3

downgrade hdf5 set this to 1.10.5

Is this still necessary I wonder?

madskjeldgaard avatar Sep 23 '21 17:09 madskjeldgaard

Okay I have found some of the problems now, I think. It seems that these plugins expect libnetcdf.so.15 and with arch/manjaro, it currently is at 18 which results in the plugins being blacklisted some places.

sudo ln -s /usr/lib/libnetcdf.so.18 /usr/lib/libnetcdf.so.15

Makes it possible to load some of them. In earlier versions of the plugins I had to downgrade netcdf Set this to 4.7.3

downgrade hdf5 set this to 1.10.5

Is this still necessary I wonder?

Yes, this helps make the plugins load and work for some seconds but then they crash Reaper.

madskjeldgaard avatar Sep 23 '21 18:09 madskjeldgaard

Hey! I've now merged the develop branch with master (so it now uses libmysofa by default, i.e. no netcdf dependency, only zlib), does this solve the problem?

leomccormack avatar Oct 05 '21 13:10 leomccormack

Hey! I've now merged the develop branch with master (so it now uses libmysofa by default, i.e. no netcdf dependency, only zlib), does this solve the problem?

Thanks a lot for looking into it. When building from source from latest master branch, binaurailser for example does show up when scanned and is able to be added. But this and all other plugins when built from source on any of my manjaro/arch linux systems makes reaper crash after a few seconds after adding the plugins. Reaper outputs no info generally that is useful except it says there is a segmentation fault. But looking in my system's log (journalctl) I see this coredump which may or may not be helpful?

okt 06 19:03:41 bent systemd-coredump[32412]: [🡕] Process 31730 (reaper) of user 1000 dumped core.

Found module /opt/REAPER/UserPlugins/reaper_sws-x86_64.so with build-id: e4dfa5fc22cfd94b4567ae705eb85c4103624584
Found module linux-vdso.so.1 with build-id: 04e407363d5e7347b8a11d6f355f789bb18cf43c
Found module libmkl_vml_avx2.so without build-id.
Found module libmkl_avx2.so with build-id: 1698e50fa523321bfa2f985523e42dc8c7a7d758
Found module libmkl_intel_lp64.so with build-id: 9e846a02ba0457e1f22d7166aea9bd7a756a1a19
Found module libmkl_intel_thread.so with build-id: 375e72dd9f8aeea1c6ca295cf464bd3d7fe431a1
Found module libiomp5.so with build-id: e86a3bdf5bc6c08b170726dbf5e273a04f4b9f3a
Found module libmkl_core.so with build-id: e1dde6388228d5291f1c467869f9bb4122033a59
Found module libncursesw.so.6 with build-id: 4118a7b0a2a0de8f6359df5b61c6c59a9e13a4d5
Found module libedit.so.0 with build-id: 4b0babfcad161c2ad0af6e59e2493258db23a331
Found module libvulkan.so.1 with build-id: 07b49771f04f350af7587839fcec8b52fa4f3164
Found module libdrm_nouveau.so.2 with build-id: 90ddb582b57a61a46d1ebf6c993675f70dac7443
Found module libdrm_amdgpu.so.1 with build-id: a89ceb7c9082e5276f39023716eb4d194e75f6b8
Found module libelf.so.1 with build-id: cc912d9cef94d907317afba5edd9176e9828e776
Found module libdrm_radeon.so.1 with build-id: f6eef9ddb9d1db72080e709ce423f6bad7ea06f7
Found module libsensors.so.5 with build-id: dc8b2c1c0d8525411aca188ea3cc3fb86d381d30
Found module libLLVM-12.so with build-id: d1f4954a30a9c39d86e0b944607e0ca8020d651e
Found module iris_dri.so with build-id: 61aafa97fd156291d5b7c94a3bfb5b05abdd0d81
Found module libxcb-xfixes.so.0 with build-id: a6b197ace5b9b59f913f5969eb419a88d1194f47
Found module libxshmfence.so.1 with build-id: 8876d9ccf620858795724ca24b9e567585a77cec
Found module libxcb-sync.so.1 with build-id: dda14591103b01b1311906053bf1ca9e82ade35c
Found module libxcb-present.so.0 with build-id: 68f5465258750e2397b1333b3ffc01ee33caa4e1
Found module libxcb-dri3.so.0 with build-id: 9407a2480e09dc5a1dd9d9a0652fa8d32b328c91
Found module libXxf86vm.so.1 with build-id: 01e8243d0c6c971fa9e743e6e53d606b1cb76f6e
Found module libxcb-dri2.so.0 with build-id: 2dd6e65129a809dab828a1d26215a3f7a363fcc8
Found module libX11-xcb.so.1 with build-id: 0db4f94d8ae31b8dc9a83f825a9171656f1e532c
Found module libxcb-glx.so.0 with build-id: 8ad115382ad874165523dc5b4488c99d73bbc3c4
Found module libglapi.so.0 with build-id: 57828fb70af7c1f2aa70b096d748851a1fd39a9c
Found module libGLX_mesa.so.0 with build-id: 71ea03043e73b18e4464477cb9dff4dfeeb19e95
Found module libsz.so.2 with build-id: c114ff6d6bb52989ad7099aacac51780e5ef418e
Found module libGLX.so.0 with build-id: 0f40ceaa036edc65147e9559b94e0219472493fc
Found module libGLdispatch.so.0 with build-id: 195b34c1bb271f3b1162c897cfbcfb859e656b93
Found module libhdf5.so.200 with build-id: 553f354452b0af3e7232580b8dff9e0c6584830b
Found module libhdf5_hl.so.200 with build-id: 2b0926fbab5318a556eb524497edb6e78099ff60
Found module libGL.so.1 with build-id: 8b3028bab286029945569a0dfcf695f0f61d9c3b
Found module libnetcdf.so.18 with build-id: f68d6c8120acfeaaa265d3b0750d24b669671124
Found module libmkl_rt.so with build-id: 51140e3db27c6bfd1ce06b309298adcc495575f4
Found module libsparta_binauraliser.so with build-id: 8da7a28150aece5dd7058efee6d884799bd5ef36
Found module libtag.so.1 with build-id: a0120d53322aad9f647bf5ed623fd3402023b631
Found module libkeyutils.so.1 with build-id: ac405ddd17be10ce538da3211415ee50c8f8df79
Found module libkrb5support.so.0 with build-id: adf65240a4d2aba772d7a0772b4d015469934113
Found module libcom_err.so.2 with build-id: eb61ef71c8b97846db759fb89a115405cff6dd30
Found module libk5crypto.so.3 with build-id: eb8220b8f36675aac769450be4cb6bb7f97ec38a
Found module libkrb5.so.3 with build-id: 72d26767c5cb1097db75a5f5bff88860233c902b
Found module libgssapi_krb5.so.2 with build-id: e6e098ad51ce7bdd3dbe902d7b0f69a90f8a9e08
Found module libssl.so.1.1 with build-id: 959cd8f1dd43fc31aeb93caac4eda87c907ef18b
Found module libpsl.so.5 with build-id: 0229a201aaf5652186c9fdc192ebe52baf19d7f1
Found module libssh2.so.1 with build-id: a4adfe44cc7ebd295b3b783361acc3dcfcea1d50
Found module libnghttp2.so.14 with build-id: 660cdb29aee27feeecd69ea1a7dd7a6331015f61
Found module libsqlite3.so.0 with build-id: b5c21727dd6a9dcb95e6e57c0767158fddcb3245
Found module libcurl.so.4 with build-id: b861a63711a5c2915474adc6fed2e18fdf176b4b
Found module reaper_flac.so with build-id: 27f514146741320f9ca943321b9e7307667c200c
Found module reaper_wavpack.so with build-id: 174efa6da9c63e22b1d5302314c685ec4c44d629
Found module reaper_ddp.so with build-id: 1cb844a8e44daf968df73567018cacb76ddfe2f9
Found module reaper_ogg.so with build-id: effd5172f8022b2413c558be101ed748f8db0cad
Found module reaper_mp3dec.so with build-id: ed394a16c7b5e437685c7068f91365172ab09fb8
Found module reaper_midi.so with build-id: 9ab441228f08193637e37ff49ae9ff9b8091ae96
Found module reaper_opus.so with build-id: f9eff4bbef462ae733f470d8213daaa67412041c
Found module reaper_wave.so with build-id: 102c48d903952f1c3db5180c1774e2de66ec67a0
Found module reaper_cd.so with build-id: 252d1c423fee65aeda2925a2255daa57bbc15c53
Found module reaper_explorer.so with build-id: 80605043fcb2c4a25e871794d8658cfd13ca9b52
Found module reaper_csurf.so with build-id: e16152570402b62e8d560f2eb5d618862b31c1a0
Found module libi420_rgb_sse2_plugin.so with build-id: 2997c5ff4a22da42c05c6c41f02a54b5fcbffe57
Found module libi420_yuy2_sse2_plugin.so with build-id: 56f94af0103c002592147442c2a97aeccc459721
Found module librv32_plugin.so with build-id: bd4f5c410af5ec8696aef05f0a38f7c53d73aeda
Found module libi422_yuy2_plugin.so with build-id: ecffd452a7956c51881a9bb7264ddacb13c0ffa3
Found module libyuy2_i422_plugin.so with build-id: b082ce6dbf9529d0b996f189a507c00ee1cc0e18
Found module libi420_rgb_mmx_plugin.so with build-id: 504edbbe1eafb4d0ae4f9a6d2495baaf7a739347
Found module libi420_rgb_plugin.so with build-id: a0b9a9b893806c1aab913906140fdf5091f8d083
Found module libi420_nv12_plugin.so with build-id: 9d5f11577607366730373ba08c7472e44bb9a211
Found module libi420_yuy2_mmx_plugin.so with build-id: d5ee2fa4621f662dd6cd5d8612b1ead862626e36
Found module libi422_i420_plugin.so with build-id: 9c8dae7886e6e373b0b86c7271f6526e33a57eb1
Found module libchain_plugin.so with build-id: b791209e3abb9ef683263297ae1e315b664a3a4f
Found module libyuy2_i420_plugin.so with build-id: fdb6d4a6820ff3b9e65209b2772758babf4e3448
Found module libswscale_plugin.so with build-id: 669f5b551c77e18a44fabb47155457dfc03cd1d8
Found module libi422_yuy2_mmx_plugin.so with build-id: a882ebbe2f0f114b7cb2e1de144cebbab1f6c0ee
Found module libi422_yuy2_sse2_plugin.so with build-id: 9944476045836fdc8cc46134c09d06425a744632
Found module libgrey_yuv_plugin.so with build-id: 354e0808066c58b97fa51a34cf97dac7f750d253
Found module libi420_yuy2_plugin.so with build-id: ea74f231933db8066f766a44e0b5e77bfd164dfc
Found module libi420_10_p010_plugin.so with build-id: 8e036e837144df544ad265d7f8400e747139156b
Found module libyuvp_plugin.so with build-id: 1f182e443747181fedfc4f8895df40f2cfa97f6d
Found module libpsychedelic_plugin.so with build-id: 6ca48c4c9c38fac57473aa44778edb75e6a6e29e
Found module libanaglyph_plugin.so with build-id: 1982d6896d7d6f32680807eaff1ee197112519e3
Found module libadjust_plugin.so with build-id: ea28520445fff156ab7affb0cdfdfcd10db2f24d
Found module libsepia_plugin.so with build-id: a9fe08ceed12d4a9f089e70fe403c155c329a623
Found module libmotionblur_plugin.so with build-id: 5446d5e1bb82784d05b0d7672602e6b0d2e51b93
Found module libfps_plugin.so with build-id: 9d7f1be5ec5b7fd56947f3d22ff24b1893b993db
Found module libtransform_plugin.so with build-id: 53b5341e306c16c8d0d375f358fd67ba7e8dc609
Found module libblendbench_plugin.so with build-id: 7d8fd48ed583da83b9271a6964eb5cce439b4146
Found module libgrain_plugin.so with build-id: e73c4fe419be151fc73b42195d673a3e060e5b5f
Found module libwave_plugin.so with build-id: 7cf1f206f959f06b2dadc0414a52993cd640c3e0
Found module libscale_plugin.so with build-id: a350dd1862d47e42ecd3fbe06d8c1d5ba5160420
Found module libpostproc.so.55 with build-id: 6a094ab4ec34dcaa1b69797530bf0b317021d66b
Found module libpostproc_plugin.so with build-id: 763c2263371e288189ea0b3a5cc2eec8fbaa86cd
Found module libextract_plugin.so with build-id: cb5d4060f4869186f26d298f93d7060cdb9f6e8c
Found module libbluescreen_plugin.so with build-id: 89ff6a9f42f9ae81a1047579631bc953bbb5102e
Found module liberase_plugin.so with build-id: d6a7650b8528aebec7495c564057dd154a4e0500
Found module libgradient_plugin.so with build-id: 4f68573a99ae5c2d794fc45ea978a8c81b44b4b6
Found module libinvert_plugin.so with build-id: a504f29905aca0c8bb6c040f3e8012f9042be582
Found module libgaussianblur_plugin.so with build-id: 4df47a88391200ff868abc24b95692d75ad2b475
Found module libdeinterlace_plugin.so with build-id: dd5c91c5a2d17dbcabff6a393a115c4ee5f56e8f
Found module libmagnify_plugin.so with build-id: 5a5469c0dd83a04dad2fcf09a4165f46a771cdb4
Found module libball_plugin.so with build-id: 372c208f5065fb2aa7ee5f0494d99fc0507800dd
Found module libhqdn3d_plugin.so with build-id: a809997af6d7ae80e79857a828bb856c441a1af7
Found module libmotiondetect_plugin.so with build-id: 0ff1f9fee52384d68dcbe8794290ff9320067359
Found module liboldmovie_plugin.so with build-id: 7de7c5eb7aab65f31bd3205a373c17f7535b4706
Found module libcanvas_plugin.so with build-id: 554374c8d18f390ff71c7fa44752dbaba2c28329
Found module librotate_plugin.so with build-id: 0b449545551290f932626c3d9a5efa544f1aae6f
Found module libcolorthres_plugin.so with build-id: 682ebe8079549cb317c62df20d5cbbcee4b88b5e
Found module libripple_plugin.so with build-id: 7d22083616354a49665fb9db6bdc4d2f5ff9e571
Found module libedgedetection_plugin.so with build-id: cbba81c4b741b11fa97bc271752bbe328f5ac4dc
Found module libsharpen_plugin.so with build-id: 6b3d4fba03f3a97e2e03c2cb2de2b1f51577adbf
Found module libgradfun_plugin.so with build-id: 69202bfa4199cf45b6a74556eaa25aefaaf98934
Found module libscene_plugin.so with build-id: 0de46936496a346f231d938811c245fe1286889e
Found module libblend_plugin.so with build-id: e916ead82d7a62c52c9992401331d3d0b7f0c652
Found module libcroppadd_plugin.so with build-id: b731f07fb0d1a16ceb7f3e32e4442c566f957274
Found module libmirror_plugin.so with build-id: 64f26ed8b6c393393f66284a96fac34bf45f7550
Found module libantiflicker_plugin.so with build-id: 38271286c3884b75d53d6b89c9770e56a80a8909
Found module libpuzzle_plugin.so with build-id: 505352ddaefbae0bb0d57eb679f0f901159d1cb3
Found module libposterize_plugin.so with build-id: b65999fd611d8b1f89574e080c91f11864b14675
Found module libalphamask_plugin.so with build-id: 457acc0415b3f64284cfed40fc4df0bf51f746f0
Found module libvhs_plugin.so with build-id: dbe0c05cd220d4f0cb0f6b2197ed79c41ae5d3b4
Found module libfreeze_plugin.so with build-id: 506e2cd4aab432095adf779027b4deac629822e9
Found module libaribb24.so.0 with build-id: 32ee163090f59a8e8e58b4a42b8ff8d9eed76fab
Found module libdvbpsi.so.10 with build-id: 92338eca7f8d19dba627aff3a7f4b471c9b02055
Found module libts_plugin.so with build-id: 30ab523ba52acf130495c0d87f755c651bed4d9d
Found module libdirectory_demux_plugin.so with build-id: 4921284d5dc9618a796207a552d9c12593e09157
Found module libps_plugin.so with build-id: 0d516ec6bf24aa63bebea2ff18c0b1ee090a7a8c
Found module libnsc_plugin.so with build-id: 68b56a43731d9cd6f14d3659d1f7d527541ebb2c
Found module libh26x_plugin.so with build-id: c5e70ad5d903cb217b2fdad5d0a9620895a3ea46
Found module libes_plugin.so with build-id: b2cea557700a837c95aee4703ae92a84b789ccc5
Found module libmjpeg_plugin.so with build-id: f0081fe82a217ee2da5b4a82cc538ff40aeeee59
Found module libcaf_plugin.so with build-id: 38e97323d5eb77816caaa3be1bf0befafe91e049
Found module libnsv_plugin.so with build-id: 761f2489c43198f539a5a76deddcc5e7915855bb
Found module libvobsub_plugin.so with build-id: 9257a5d6b6aee830ea372246ab77d40ec154f635
Found module libdemux_cdg_plugin.so with build-id: a78c7097f81cebdafd4eaa95600cad34d45f7188
Found module libimage_plugin.so with build-id: 96722de98345ca9a6c1e325a6e5d3e00ac9386fe
Found module libdiracsys_plugin.so with build-id: c05df088a10d4c8c9d0746c35caa79178b1d542f
Found module libmp4_plugin.so with build-id: 3baa432770af52f3bed5012f2e8b70b00a4db983
Found module libmpcdec.so.6 with build-id: 0794d516f1da996f22be7c54da384c6a6365d34e
Found module libmpc_plugin.so with build-id: 4b52162b0f0f9091cb344001d8633b22cedc4632
Found module libvoc_plugin.so with build-id: 8791b6f12d8b31feda8d3d45a2142f563ac57776
Found module libmatroska.so.7 with build-id: ac778b14bd45b11f1b773beedad248b243b9b794
Found module libebml.so.5 with build-id: 19efec1fe1e0abcb78e74a31b2bb1754745f5dbb
Found module libmkv_plugin.so with build-id: dedb61b6c91862f7a3566c5e6c4f8072a769ebfd
Found module libsubtitle_plugin.so with build-id: b8e82ecae2caf6fda71cbb4033e7d34d9de97746
Found module libplaylist_plugin.so with build-id: 2a0409aa04c75a576d642c5e72b5999b6c9a4318
Found module libau_plugin.so with build-id: 19eaa6bc1696d1a7d97c329747a1ee617a06bdeb
Found module libavformat_plugin.so with build-id: c2696f0f9a73a310a006f8b1df306defcd591e62
Found module libogg_plugin.so with build-id: c204606ee6f1ad72ce2802770d9e2de8f91d820c
Found module libnoseek_plugin.so with build-id: 28cd3247a60493ed411e689c01478bf509da1a1e
Found module libpva_plugin.so with build-id: 89051240d64ad2230062f231d857efb94e47d48c
Found module libsmf_plugin.so with build-id: 58b64b140cadc8b086f78b8111d1e20667615603
Found module libavi_plugin.so with build-id: 0d11d7d6d1d0d039c9c05f44961c71dd68b9b092
Found module libdemuxdump_plugin.so with build-id: f7b9be4a5868fd1a24734eda15be610654fea4c2
Found module libasf_plugin.so with build-id: 12dd7ff3bba843c85fef7c55159cc813fa191de4
Found module libdemux_stl_plugin.so with build-id: 54872001f5dafa6e28dbba67af9e200435a51278
Found module libvc1_plugin.so with build-id: e0acadb528441060a9982761397def281b6d0317
Found module librawaud_plugin.so with build-id: d88d0f12eb8654c0c3562e9687fdd2b3783b046d
Found module libdemux_chromecast_plugin.so with build-id: dbdd8d5e574c81bce21f141593dc8c57d4db23e4
Found module libmod_plugin.so with build-id: 69066f78d059c6f8c419aa5f3c2780ce45cf2b1d
Found module libtta_plugin.so with build-id: 081ada50b704b22b17740423933029ae8e6ffdec
Found module libwav_plugin.so with build-id: fe17cd00209dcedc78c03357ff7e9f956a462bad
Found module libxa_plugin.so with build-id: 68f8b84d5844f2ea2b81227a50de64bb5a309b01
Found module libadaptive_plugin.so with build-id: a72ae296d4cfaec4baf6532bef71b1fb22370ec7
Found module librawdv_plugin.so with build-id: 9cc80aa8f7f0473d5f0706f8eeb6716d7e9fe5ae
Found module libflacsys_plugin.so with build-id: c06400d463018a112370d00915933f8c2f2b0171
Found module libaiff_plugin.so with build-id: ad3653d4ad6721c95dd9786a27ec5afd29c1dfd3
Found module libty_plugin.so with build-id: 8a1dc2ff10cf78563ad1c8be067a86db30d49de1
Found module libnuv_plugin.so with build-id: fd3bf9f0272182cb163390fea169dd57f3c4ede3
Found module libreal_plugin.so with build-id: 4c4f7ea0211446e177082798d1bc0e42a6165603
Found module librawvid_plugin.so with build-id: 83cbd316b9747214a764a3b54f6fdec3f08e8dae
Found module libmpgv_plugin.so with build-id: 449e03482c7c7ba1727b4566db45f13e429ccae7
Found module libvlc.so.5 with build-id: f2f767f174284406eaa2b1b9a4bdd166d16ccd56
Found module libavcodec_plugin.so with build-id: 01a48c9674ad8739d6ea8e735c3185bd8822cebf
Found module libidn.so.12 with build-id: a03952cbdf12d9d512b58a73b3b9e9bd418da682
Found module libvlccore.so.9 with build-id: 27bdab86dc5672580a6ff0bef95c0de5871a4d40
Found module libswscale.so.5 with build-id: 77e3bd5b047eaa9b39b8f4729aa764adc5e0f35d
Found module libcrypto.so.1.1 with build-id: 6d23f0a3f354825868d044684fad31d482cc9210
Found module libhogweed.so.6 with build-id: 2d70cff7b1841b4d9ca4e8e7726cd4b944c07fdc
Found module libnettle.so.8 with build-id: 9a878e513c02007598fcf1e2e286c2203f13536e
Found module libtasn1.so.6 with build-id: 4df18bd1f13772f0956191e137eb00d9bd6238c5
Found module libunistring.so.2 with build-id: 015ac6d6bcb60b7d8bea31a80d1941b06e8636ab
Found module libidn2.so.0 with build-id: 1ce2b50ad9f9821c2c629b521cf5a3c99593d332
Found module libp11-kit.so.0 with build-id: 5314ec746546ada6f442b6fdfae15eab9f6d3cdc
Found module libssh.so.4 with build-id: 8490056688e60790230f9d990c439b181236e9b6
Found module libsrt.so.1.4 with build-id: 63c1df3cc035c493ede3570e560f93991486d082
Found module libgnutls.so.30 with build-id: 8c87466eacaec0041a370df713d0fd200358c94c
Found module libgmp.so.10 with build-id: e58d34ab389d1b649c24195c2d145e3ff2e58290
Found module libbluray.so.2 with build-id: ebaa74ef4d549c1d3f01fafb8625045d286b8940
Found module libmodplug.so.1 with build-id: b00dcb12e7d2d5882b4fa414295eba449875dae4
Found module libavformat.so.58 with build-id: 86c1844cfba35a65a52085e6ccfe9ca07093c729
Found module libicudata.so.69 with build-id: 0ab994a49ef1848499c4af333b3266f28432a922
Found module libicuuc.so.69 with build-id: 5cf18c56e2f64efdac32cf61fb9c0c48e9bb1797
Found module libgomp.so.1 with build-id: 1cb25691b8e34e1ce54698066bce0fb29f5cf9fa
Found module libmvec.so.1 with build-id: 9aa05e22565568b778a97933527b3c64bdb8418b
Found module libogg.so.0 with build-id: ca0cae30a809f10db1f16e54a23b4e5ff7b2c54c
Found module libxml2.so.2 with build-id: b9441ffabb52b50c290152592f17cd78a381d493
Found module libsoxr.so.0 with build-id: 9e49936ed807c1e52705b88d5d71706fe11d9ed1
Found module libxvidcore.so.4 with build-id: 43bc390a7842a7ca3a0302e93442ea561d7f013a
Found module libx265.so.199 with build-id: 22130b9b0d2aa957b148b0fdeb27e3fd04f0fb58
Found module libx264.so.161 with build-id: a23dfea0b501cbfb2501c5bfe6c40b602e2767cc
Found module libvorbisenc.so.2 with build-id: 28ed815b8b1d322e6bf2bfdce4b0af2789b74335
Found module libvorbis.so.0 with build-id: ad0a6c1af8f219b4e314090b6e8847223d424cbe
Found module libtheoradec.so.1 with build-id: 19d321fd5455c7b7611ca9602a804b496124e06f
Found module libtheoraenc.so.1 with build-id: cde750f0621140f313e4ef4e5f212e662f24a38b
Found module libSvtAv1Enc.so.0 with build-id: 3ebe5abcc88d5855fde0b2645844f80f03982902
Found module libspeex.so.1 with build-id: 39721dbe21b62978562c2943279f6dffbffe8946
Found module librav1e.so.0 with build-id: 2e9e70e2433e4d2955a870f2de730172729fbe4f
Found module libopus.so.0 with build-id: 649d3ddab8764d7caf73648004a35cb13e23a5e1
Found module libopenjp2.so.7 with build-id: 0a329c12468c33c92ecbc3968f4dc9c79cc5db96
Found module libopencore-amrnb.so.0 with build-id: a3d78948c85fa235e66549119b2f130e69af7b70
Found module libmp3lame.so.0 with build-id: 48c901805551a3dd58d02502c4cd67f6aa848107
Found module libgsm.so.1 with build-id: 1cc6240f7eaedaaac302bc7c0f64ebbeae596f22
Found module libaom.so.3 with build-id: 96dd5026ad7503076a2b7b9c1b94f442d446121f
Found module librsvg-2.so.2 with build-id: 4dc74baf658575bd661ee40a060a497e9f6b4875
Found module libopencore-amrwb.so.0 with build-id: 28da8ed3dfca59280e835c46bd40da295dae99e2
Found module libdav1d.so.5 with build-id: 82862181dbe48302fde94240f68e17fb6f9a03c7
Found module libwebp.so.7 with build-id: 87e81472aa7ff3ed1061cfc13d6960dbe00c35ab
Found module libwebpmux.so.3 with build-id: 4e17ff5fa40f00cda51d08d9edd48d442d3044e2
Found module libvpx.so.6 with build-id: ffb0245ae4799fc843384d31eee517ce8c8805d2
Found module libswresample.so.3 with build-id: a9728c9e65dd1e3e82293a186e42b3ac4eef6f56
Found module libavcodec.so.58 with build-id: 1275d2e02c81a70a2a30ee2f11a60de9ef76e1a3
Found module libmfx.so.1 with build-id: 791cadc6e88448b8b74c55f52f7fbdf52af2376d
Found module libdrm.so.2 with build-id: 3aeff5403ca8d7589eabc05752eb613937f454a1
Found module libvdpau.so.1 with build-id: 96ac4ef0ce4b2bdbe091782d97eafadd6e4cea90
Found module libva-x11.so.2 with build-id: e6a0ffef32570ba034a3724e735ba0fa90d39eee
Found module libva.so.2 with build-id: d0042003bbdf0c10b26dbc25c80cb06eb64b4f5c
Found module libva-drm.so.2 with build-id: 5ac46263a883c725bfed65d98ff2e3162fd464ad
Found module libavutil.so.56 with build-id: 519676d43a87a9c3f38323f8d67eff209e7f819c
Found module reaper_video.so with build-id: 775546f79f1605e5b6bf733e3719327ee973a11a
Found module libpipewire-module-metadata.so with build-id: 7c47b686c2417bd8155540d916283490c9a523e7
Found module libpipewire-module-client-node.so with build-id: 534b800fc282b8c13a1d7ee8416447f767a21498
Found module libpipewire-module-protocol-native.so with build-id: 9e4632943505580107fda6c14cb6b491ef9cd9da
Found module libpipewire-module-rt.so with build-id: 33fe7e482d68ee1a371115b28704a9365c9c09e4
Found module libnss_files.so.2 with build-id: 1a36dfc01d3a1010b2ee79766a24a8090a3266d5
Found module libdbus-1.so.3 with build-id: 74f2ab9c60512f3a93c932c3f627564d42e0b11e
Found module libspa-dbus.so with build-id: 879c070e8997cc3eebac4bdf926920dc2dc24eea
Found module libgpg-error.so.0 with build-id: ba85170c2d9343ea05eea8fa2048c212ff4ef552
Found module libgcrypt.so.20 with build-id: db45f5d5e0f7af1e77324fea1885f974619ad268
Found module libcap.so.2 with build-id: e56ad9da369b1a7ba6c62d8d31c5a779f07fbbb1
Found module liblz4.so.1 with build-id: e63600ab23b2f6997f42fac2fa56e1f02ce159a1
Found module libsystemd.so.0 with build-id: f776aaa16b4e2ba7056d01d928e4b2726ffe2b8b
Found module libspa-journal.so with build-id: 43625cd7ba3fa1c7fdbb1cf1fb3dff1d2733b30e
Found module libspa-support.so with build-id: 72a9a0bd243c4bd7d7e00ed76cfe12979ca177ce
Found module libpipewire-0.3.so.0 with build-id: dc97b36efe993325533f45b7e400e14530ad981b
Found module libjack.so.0 with build-id: 0ddd09e2a780c2fa21d0c0d160794da952f5d274
Found module jsfx.so with build-id: ddde1c0865d7b54e25cdd93dd5ba4e1dbd64aa52
Found module rubberband.so with build-id: bb9340f73a73e0f5fd90ba6baa3ae22c6bfa7e56
Found module soundtouch.so with build-id: a66cdba14a48ece4eb68ec896d6c440faaf1d8cf
Found module elastique3.so with build-id: 5fe8d6773ff434a9808c83f620d13a2b982cf27d
Found module libblkid.so.1 with build-id: f03a24e92c9852272bd0049b5bcb7ed6cf0e664f
Found module libdatrie.so.1 with build-id: 6fe3b6ece2c8e7d11869fa051375128d8f808f58
Found module liblzma.so.5 with build-id: 8b615460aa230708c5183f16bede67aa0437d95e
Found module libzstd.so.1 with build-id: 4b10444c1560ebc574af4d5f488b7408b22d450e
Found module libpangoft2-1.0.so.0 with build-id: 52a846673f7bf9e8acdd0ae9a825926c9cfc5920
Found module libresolv.so.2 with build-id: c915c72668282861a813f7ea3c0780f37b681dc0
Found module libmount.so.1 with build-id: ff9a1d99d35cf640d0bfdaba294854372672c29b
Found module libthai.so.0 with build-id: 3fdce1a7db2b94d9168eea540dbf5ff5caa3b8ad
Found module libpixman-1.so.0 with build-id: 341f793dcada3a48a306a793d265a517e3f2e7d6
Found module libxcb-shm.so.0 with build-id: fb797f299a446f559a95afcc168227482cc800d1
Found module libxcb-render.so.0 with build-id: a37bdb37744b508be9dd29fd9ccb9bb0170d43e5
Found module libXrender.so.1 with build-id: 97e0b9ab6ba96ebc86527cc2b3c3078aad8616b3
Found module libffi.so.7 with build-id: de60e99f39569d11d09160bbdcd486cedc87d2b6
Found module libtiff.so.5 with build-id: e8d89a0fb0847641ddb75c5f03fa89d68155a75d
Found module libjpeg.so.8 with build-id: 5d102b1a7291a621bba049969d25ead0ccecc6cc
Found module libgmodule-2.0.so.0 with build-id: 34cabbd12d9baf397a0255f174e4c96165bc329b
Found module libXinerama.so.1 with build-id: dbb6adece34ea2766d3efcd628af8f9757344dd6
Found module libXrandr.so.2 with build-id: d4e869b5c72541e1de8f96b456248987ea52d51b
Found module libXcomposite.so.1 with build-id: f1bb5ffb6203ab2907ac044a204ce3902a79f1c1
Found module libXfixes.so.3 with build-id: 0a05c7e8714522bfbdd7c0027c3e2a94965664b0
Found module libXdamage.so.1 with build-id: a1d867e093c16944b2c0083be98050ef35c9e5c2
Found module libXcursor.so.1 with build-id: eb6315bcd7526aaf51b0a1307efdc587cea0a152
Found module libwayland-egl.so.1 with build-id: 1c761f5ec5429abb88e4f6ff71815358e58c393c
Found module libwayland-cursor.so.0 with build-id: a8b45436314425ee9a92efaff68bd2b79f870e77
Found module libwayland-client.so.0 with build-id: 58038363d7ea1fd5e6532f6e5f90b1a3ce09388a
Found module libxkbcommon.so.0 with build-id: 1f1bc7527e57c886c3df5803068122e1971d4724
Found module libpangocairo-1.0.so.0 with build-id: 2554be0474a6ee311b6e9aa4fd79a244167cdcfd
Found module libgio-2.0.so.0 with build-id: 3338d7168eab6039416e1b6dbb7ea3ef213cd129
Found module libepoxy.so.0 with build-id: b6357fc6b748c512f90339433d74502b9d0621dc
Found module libcairo-gobject.so.2 with build-id: abbf5a8a182ea1b8b7d68540df5c2e25c0bdae0c
Found module libfribidi.so.0 with build-id: e29e3b231f961d49e628d43ddd1237a8364f788c
Found module libpango-1.0.so.0 with build-id: 5deae7c16592ea404754114e8ae56ddf9cf4ca7e
Found module libcairo.so.2 with build-id: 06820af9cf79c2deb207d9533a61caf04e67a8ad
Found module libgobject-2.0.so.0 with build-id: 0eaa1a0f88089b3dcf33eedf51105a54beeeea9a
Found module libgdk_pixbuf-2.0.so.0 with build-id: ca4beb15a30de8d8767f7bca8222038c61b58b36
Found module libgdk-3.so.0 with build-id: 386cb304b5cff36ea3ce3c67b09b9097a12da877
Found module libpcre.so.1 with build-id: 845483dd0acba86de9f0313102bebbaf3ce52767
Found module libbrotlicommon.so.1 with build-id: f68934f94312f770550ebc6c5acfd6359b098b07
Found module libglib-2.0.so.0 with build-id: 1fe1592d097fa28822c23e96d9f357583b48424d
Found module libgraphite2.so.3 with build-id: 47761dc11e553f519cde97ed9ee985be12ccdae2
Found module libbrotlidec.so.1 with build-id: f871e6f204ab8d48099915126ba01be989a8000f
Found module libharfbuzz.so.0 with build-id: f954dfb80265c0dd2484e766282305a739b8239d
Found module libpng16.so.16 with build-id: 2dc0bce07f199bf983c07a05fb95a6f4af83a9b3
Found module libbz2.so.1.0 with build-id: 919597c477c9b2cb9cdbb7745ed6494ac0e6da60
Found module libz.so.1 with build-id: 81bf6e728a6d6f5b105b0f8b25f6c614ce10452a
Found module libXdmcp.so.6 with build-id: 8ca0792d23c8b8b4c0864297512349292bea5955
Found module libXau.so.6 with build-id: 1c67764663e07bec24d8951e5fd93f4d165979ff
Found module libexpat.so.1 with build-id: 8850138eae6d9d4d43c5c4b2ac48393bc4279037
Found module libfreetype.so.6 with build-id: 65e7f4a1e5557b0ceeaa433e5356f857fe9c669b
Found module libXext.so.6 with build-id: d70f24beb4fad748d6becffdcc13e51be0a2ebfa
Found module libxcb.so.1 with build-id: 0d1ef11740a5daad2ee331e812a51aa6574af222
Found module libfontconfig.so.1 with build-id: 1103a641395c7d3b42e49b793d3a9ea927c77bf6
Found module libXi.so.6 with build-id: 16603be937a02a7e61b0b0395d064be7efd86f49
Found module libX11.so.6 with build-id: e9192497aa39fab51358826d1a1b5fb77edc5081
Found module libSwell.so with build-id: 47d80db31f71409e91a86d2ccf89c68981ad5794
Found module librt.so.1 with build-id: 75484da2d6f1515189eefa076e0a40328834cd16
Found module ld-linux-x86-64.so.2 with build-id: 040cc3dd10461562f177df39e3be2f3704258c3c
Found module libc.so.6 with build-id: 4b406737057708c0e4c642345a703c47a61c73dc
Found module libgcc_s.so.1 with build-id: 7f8508bb914546ada778809b64b99d234337d835
Found module libm.so.6 with build-id: 2b8fd1f869ecab4e0b55e92f2f151897f6818acf
Found module libstdc++.so.6 with build-id: 8ab0e57054dd1dcba681f217016afc6a4e639783
Found module libasound.so.2 with build-id: 9288c92ff737b1999761df2018fcd0e7cbf46d5a
Found module libdl.so.2 with build-id: 5abc547e7b0949f89f3c0e21ab0c8331a7440a8a
Found module libpthread.so.0 with build-id: 07c8f95b4f3251d08550217ad8a1f31066229996
Found module reaper with build-id: 6b69018b16ded7062fd144f7f994321d7f0f9482
Stack trace of thread 32386:
#0  0x00007fac5d4286c1 __dynamic_cast (libstdc++.so.6 + 0xa46c1)
#1  0x00007fac389fa33e n/a (libsparta_binauraliser.so + 0x12333e)
#2  0x00007fac38a9b013 n/a (libsparta_binauraliser.so + 0x1c4013)
#3  0x00007fac38a91393 n/a (libsparta_binauraliser.so + 0x1ba393)
#4  0x00007fac3892dcf4 n/a (libsparta_binauraliser.so + 0x56cf4)
#5  0x00007fac38abae42 n/a (libsparta_binauraliser.so + 0x1e3e42)
#6  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#7  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31735:
#0  0x00007fac5d15592e epoll_wait (libc.so.6 + 0xfe92e)
#1  0x00007fac5b6fe2e1 n/a (libspa-support.so + 0x132e1)
#2  0x00007fac5b6f4df4 n/a (libspa-support.so + 0x9df4)
#3  0x00007fac5ada98bd n/a (libpipewire-0.3.so.0 + 0x438bd)
#4  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#5  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31746:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x00000000006969ae n/a (reaper + 0x2969ae)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31747:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x00000000006969ae n/a (reaper + 0x2969ae)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31749:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x00000000006969ae n/a (reaper + 0x2969ae)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31751:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x00000000006969ae n/a (reaper + 0x2969ae)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31748:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x00000000006969ae n/a (reaper + 0x2969ae)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31752:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x00000000006969ae n/a (reaper + 0x2969ae)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31750:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x00000000006969ae n/a (reaper + 0x2969ae)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31738:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x000000000069645e n/a (reaper + 0x29645e)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31740:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x000000000069645e n/a (reaper + 0x29645e)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31741:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x000000000069645e n/a (reaper + 0x29645e)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31739:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x000000000069645e n/a (reaper + 0x29645e)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31742:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x000000000069645e n/a (reaper + 0x29645e)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31744:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x000000000069645e n/a (reaper + 0x29645e)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31743:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x000000000069645e n/a (reaper + 0x29645e)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31745:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x000000000069645e n/a (reaper + 0x29645e)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 32388:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698842 pthread_cond_clockwait (libpthread.so.0 + 0xf842)
#2  0x00007fac38abac4a n/a (libsparta_binauraliser.so + 0x1e3c4a)
#3  0x00007fac38a91207 n/a (libsparta_binauraliser.so + 0x1ba207)
#4  0x00007fac38abae42 n/a (libsparta_binauraliser.so + 0x1e3e42)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 32387:
#0  0x00007fac5d14ab2f __poll (libc.so.6 + 0xf3b2f)
#1  0x00007fac38a983bf n/a (libsparta_binauraliser.so + 0x1c13bf)
#2  0x00007fac38ac6aa8 n/a (libsparta_binauraliser.so + 0x1efaa8)
#3  0x00007fac38abae42 n/a (libsparta_binauraliser.so + 0x1e3e42)
#4  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#5  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31730:
#0  0x00007fac5d1ba5e0 __memmove_avx_unaligned_erms (libc.so.6 + 0x1635e0)
#1  0x00007fac5cb0465b n/a (libfreetype.so.6 + 0x1765b)
#2  0x00007fac5cb083dd n/a (libfreetype.so.6 + 0x1b3dd)
#3  0x00007fac5cb0f362 n/a (libfreetype.so.6 + 0x22362)
#4  0x00007fac5cb00c61 FT_Load_Glyph (libfreetype.so.6 + 0x13c61)
#5  0x00007fac5cdde363 n/a (libSwell.so + 0x44363)
#6  0x00007fac5cdc20e7 n/a (libSwell.so + 0x280e7)
#7  0x00007fac5cdcb318 n/a (libSwell.so + 0x31318)
#8  0x00007fac5cde07b6 n/a (libSwell.so + 0x467b6)
#9  0x00007fac5cde85ea n/a (libSwell.so + 0x4e5ea)
#10 0x00007fac5c6b9643 n/a (libgdk-3.so.0 + 0x3c643)
#11 0x00007fac5c6c0fc2 n/a (libgdk-3.so.0 + 0x43fc2)
#12 0x00007fac5c6c582b n/a (libgdk-3.so.0 + 0x4882b)
#13 0x00007fac5c6c5a29 n/a (libgdk-3.so.0 + 0x48a29)
#14 0x00007fac5c60d1c0 g_signal_emit_valist (libgobject-2.0.so.0 + 0x301c0)
#15 0x00007fac5c60d330 g_signal_emit (libgobject-2.0.so.0 + 0x30330)
#16 0x00007fac5c6bd179 n/a (libgdk-3.so.0 + 0x40179)
#17 0x00007fac5c6aa5dc n/a (libgdk-3.so.0 + 0x2d5dc)
#18 0x00007fac5c85fa84 n/a (libglib-2.0.so.0 + 0x54a84)
#19 0x00007fac5c85f3e5 g_main_context_dispatch (libglib-2.0.so.0 + 0x543e5)
#20 0x00007fac5c8b3749 n/a (libglib-2.0.so.0 + 0xa8749)
#21 0x00007fac5c85cbc1 g_main_context_iteration (libglib-2.0.so.0 + 0x51bc1)
#22 0x00007fac5cdea30a n/a (libSwell.so + 0x5030a)
#23 0x00007fac5cdcb662 n/a (libSwell.so + 0x31662)
#24 0x0000000000415666 n/a (reaper + 0x15666)
#25 0x00007fac5d07eb25 __libc_start_main (libc.so.6 + 0x27b25)
#26 0x000000000041ae0a _start (reaper + 0x1ae0a)

Stack trace of thread 31736:
#0  0x00007fac5d15592e epoll_wait (libc.so.6 + 0xfe92e)
#1  0x00007fac5b6fe2e1 n/a (libspa-support.so + 0x132e1)
#2  0x00007fac5b6f4df4 n/a (libspa-support.so + 0x9df4)
#3  0x00007fac5ade7fdf n/a (libpipewire-0.3.so.0 + 0x81fdf)
#4  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#5  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31737:
#0  0x00007fac5d11da95 clock_nanosleep@@GLIBC_2.17 (libc.so.6 + 0xc6a95)
#1  0x00007fac5d122c77 __nanosleep (libc.so.6 + 0xcbc77)
#2  0x00007fac5d14da99 usleep (libc.so.6 + 0xf6a99)
#3  0x00007fac58cbc125 n/a (reaper_video.so + 0x2d125)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 32389:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698270 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf270)
#2  0x00007fac126c197c n/a (iris_dri.so + 0x1c897c)
#3  0x00007fac126bb058 n/a (iris_dri.so + 0x1c2058)
#4  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#5  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)
okt 06 19:03:41 bent systemd[1]: [email protected]: Deactivated successfully.
okt 06 19:03:41 bent audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@3-32411-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
okt 06 19:03:41 bent systemd[1]: [email protected]: Consumed 1.100s CPU time.
okt 06 19:03:41 bent audit: BPF prog-id=38 op=UNLOAD
okt 06 19:03:41 bent audit: BPF prog-id=37 op=UNLOAD
okt 06 19:03:41 bent audit: BPF prog-id=36 op=UNLOAD
okt 06 19:03:41 bent kernel: audit: type=1131 audit(1633539821.869:142): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@3-32411-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
okt 06 19:03:41 bent kernel: audit: type=1334 audit(1633539821.875:143): prog-id=38 op=UNLOAD
okt 06 19:03:41 bent kernel: audit: type=1334 audit(1633539821.875:144): prog-id=37 op=UNLOAD
okt 06 19:03:41 bent kernel: audit: type=1334 audit(1633539821.875:145): prog-id=36 op=UNLOAD

madskjeldgaard avatar Oct 06 '21 17:10 madskjeldgaard

Hey! I've now merged the develop branch with master (so it now uses libmysofa by default, i.e. no netcdf dependency, only zlib), does this solve the problem?

Thanks a lot for looking into it. When building from source from latest master branch, binaurailser for example does show up when scanned and is able to be added. But this and all other plugins when built from source on any of my manjaro/arch linux systems makes reaper crash after a few seconds after adding the plugins. Reaper outputs no info generally that is useful except it says there is a segmentation fault. But looking in my system's log (journalctl) I see this coredump which may or may not be helpful?

okt 06 19:03:41 bent systemd-coredump[32412]: [🡕] Process 31730 (reaper) of user 1000 dumped core.

Found module /opt/REAPER/UserPlugins/reaper_sws-x86_64.so with build-id: e4dfa5fc22cfd94b4567ae705eb85c4103624584
Found module linux-vdso.so.1 with build-id: 04e407363d5e7347b8a11d6f355f789bb18cf43c
Found module libmkl_vml_avx2.so without build-id.
Found module libmkl_avx2.so with build-id: 1698e50fa523321bfa2f985523e42dc8c7a7d758
Found module libmkl_intel_lp64.so with build-id: 9e846a02ba0457e1f22d7166aea9bd7a756a1a19
Found module libmkl_intel_thread.so with build-id: 375e72dd9f8aeea1c6ca295cf464bd3d7fe431a1
Found module libiomp5.so with build-id: e86a3bdf5bc6c08b170726dbf5e273a04f4b9f3a
Found module libmkl_core.so with build-id: e1dde6388228d5291f1c467869f9bb4122033a59
Found module libncursesw.so.6 with build-id: 4118a7b0a2a0de8f6359df5b61c6c59a9e13a4d5
Found module libedit.so.0 with build-id: 4b0babfcad161c2ad0af6e59e2493258db23a331
Found module libvulkan.so.1 with build-id: 07b49771f04f350af7587839fcec8b52fa4f3164
Found module libdrm_nouveau.so.2 with build-id: 90ddb582b57a61a46d1ebf6c993675f70dac7443
Found module libdrm_amdgpu.so.1 with build-id: a89ceb7c9082e5276f39023716eb4d194e75f6b8
Found module libelf.so.1 with build-id: cc912d9cef94d907317afba5edd9176e9828e776
Found module libdrm_radeon.so.1 with build-id: f6eef9ddb9d1db72080e709ce423f6bad7ea06f7
Found module libsensors.so.5 with build-id: dc8b2c1c0d8525411aca188ea3cc3fb86d381d30
Found module libLLVM-12.so with build-id: d1f4954a30a9c39d86e0b944607e0ca8020d651e
Found module iris_dri.so with build-id: 61aafa97fd156291d5b7c94a3bfb5b05abdd0d81
Found module libxcb-xfixes.so.0 with build-id: a6b197ace5b9b59f913f5969eb419a88d1194f47
Found module libxshmfence.so.1 with build-id: 8876d9ccf620858795724ca24b9e567585a77cec
Found module libxcb-sync.so.1 with build-id: dda14591103b01b1311906053bf1ca9e82ade35c
Found module libxcb-present.so.0 with build-id: 68f5465258750e2397b1333b3ffc01ee33caa4e1
Found module libxcb-dri3.so.0 with build-id: 9407a2480e09dc5a1dd9d9a0652fa8d32b328c91
Found module libXxf86vm.so.1 with build-id: 01e8243d0c6c971fa9e743e6e53d606b1cb76f6e
Found module libxcb-dri2.so.0 with build-id: 2dd6e65129a809dab828a1d26215a3f7a363fcc8
Found module libX11-xcb.so.1 with build-id: 0db4f94d8ae31b8dc9a83f825a9171656f1e532c
Found module libxcb-glx.so.0 with build-id: 8ad115382ad874165523dc5b4488c99d73bbc3c4
Found module libglapi.so.0 with build-id: 57828fb70af7c1f2aa70b096d748851a1fd39a9c
Found module libGLX_mesa.so.0 with build-id: 71ea03043e73b18e4464477cb9dff4dfeeb19e95
Found module libsz.so.2 with build-id: c114ff6d6bb52989ad7099aacac51780e5ef418e
Found module libGLX.so.0 with build-id: 0f40ceaa036edc65147e9559b94e0219472493fc
Found module libGLdispatch.so.0 with build-id: 195b34c1bb271f3b1162c897cfbcfb859e656b93
Found module libhdf5.so.200 with build-id: 553f354452b0af3e7232580b8dff9e0c6584830b
Found module libhdf5_hl.so.200 with build-id: 2b0926fbab5318a556eb524497edb6e78099ff60
Found module libGL.so.1 with build-id: 8b3028bab286029945569a0dfcf695f0f61d9c3b
Found module libnetcdf.so.18 with build-id: f68d6c8120acfeaaa265d3b0750d24b669671124
Found module libmkl_rt.so with build-id: 51140e3db27c6bfd1ce06b309298adcc495575f4
Found module libsparta_binauraliser.so with build-id: 8da7a28150aece5dd7058efee6d884799bd5ef36
Found module libtag.so.1 with build-id: a0120d53322aad9f647bf5ed623fd3402023b631
Found module libkeyutils.so.1 with build-id: ac405ddd17be10ce538da3211415ee50c8f8df79
Found module libkrb5support.so.0 with build-id: adf65240a4d2aba772d7a0772b4d015469934113
Found module libcom_err.so.2 with build-id: eb61ef71c8b97846db759fb89a115405cff6dd30
Found module libk5crypto.so.3 with build-id: eb8220b8f36675aac769450be4cb6bb7f97ec38a
Found module libkrb5.so.3 with build-id: 72d26767c5cb1097db75a5f5bff88860233c902b
Found module libgssapi_krb5.so.2 with build-id: e6e098ad51ce7bdd3dbe902d7b0f69a90f8a9e08
Found module libssl.so.1.1 with build-id: 959cd8f1dd43fc31aeb93caac4eda87c907ef18b
Found module libpsl.so.5 with build-id: 0229a201aaf5652186c9fdc192ebe52baf19d7f1
Found module libssh2.so.1 with build-id: a4adfe44cc7ebd295b3b783361acc3dcfcea1d50
Found module libnghttp2.so.14 with build-id: 660cdb29aee27feeecd69ea1a7dd7a6331015f61
Found module libsqlite3.so.0 with build-id: b5c21727dd6a9dcb95e6e57c0767158fddcb3245
Found module libcurl.so.4 with build-id: b861a63711a5c2915474adc6fed2e18fdf176b4b
Found module reaper_flac.so with build-id: 27f514146741320f9ca943321b9e7307667c200c
Found module reaper_wavpack.so with build-id: 174efa6da9c63e22b1d5302314c685ec4c44d629
Found module reaper_ddp.so with build-id: 1cb844a8e44daf968df73567018cacb76ddfe2f9
Found module reaper_ogg.so with build-id: effd5172f8022b2413c558be101ed748f8db0cad
Found module reaper_mp3dec.so with build-id: ed394a16c7b5e437685c7068f91365172ab09fb8
Found module reaper_midi.so with build-id: 9ab441228f08193637e37ff49ae9ff9b8091ae96
Found module reaper_opus.so with build-id: f9eff4bbef462ae733f470d8213daaa67412041c
Found module reaper_wave.so with build-id: 102c48d903952f1c3db5180c1774e2de66ec67a0
Found module reaper_cd.so with build-id: 252d1c423fee65aeda2925a2255daa57bbc15c53
Found module reaper_explorer.so with build-id: 80605043fcb2c4a25e871794d8658cfd13ca9b52
Found module reaper_csurf.so with build-id: e16152570402b62e8d560f2eb5d618862b31c1a0
Found module libi420_rgb_sse2_plugin.so with build-id: 2997c5ff4a22da42c05c6c41f02a54b5fcbffe57
Found module libi420_yuy2_sse2_plugin.so with build-id: 56f94af0103c002592147442c2a97aeccc459721
Found module librv32_plugin.so with build-id: bd4f5c410af5ec8696aef05f0a38f7c53d73aeda
Found module libi422_yuy2_plugin.so with build-id: ecffd452a7956c51881a9bb7264ddacb13c0ffa3
Found module libyuy2_i422_plugin.so with build-id: b082ce6dbf9529d0b996f189a507c00ee1cc0e18
Found module libi420_rgb_mmx_plugin.so with build-id: 504edbbe1eafb4d0ae4f9a6d2495baaf7a739347
Found module libi420_rgb_plugin.so with build-id: a0b9a9b893806c1aab913906140fdf5091f8d083
Found module libi420_nv12_plugin.so with build-id: 9d5f11577607366730373ba08c7472e44bb9a211
Found module libi420_yuy2_mmx_plugin.so with build-id: d5ee2fa4621f662dd6cd5d8612b1ead862626e36
Found module libi422_i420_plugin.so with build-id: 9c8dae7886e6e373b0b86c7271f6526e33a57eb1
Found module libchain_plugin.so with build-id: b791209e3abb9ef683263297ae1e315b664a3a4f
Found module libyuy2_i420_plugin.so with build-id: fdb6d4a6820ff3b9e65209b2772758babf4e3448
Found module libswscale_plugin.so with build-id: 669f5b551c77e18a44fabb47155457dfc03cd1d8
Found module libi422_yuy2_mmx_plugin.so with build-id: a882ebbe2f0f114b7cb2e1de144cebbab1f6c0ee
Found module libi422_yuy2_sse2_plugin.so with build-id: 9944476045836fdc8cc46134c09d06425a744632
Found module libgrey_yuv_plugin.so with build-id: 354e0808066c58b97fa51a34cf97dac7f750d253
Found module libi420_yuy2_plugin.so with build-id: ea74f231933db8066f766a44e0b5e77bfd164dfc
Found module libi420_10_p010_plugin.so with build-id: 8e036e837144df544ad265d7f8400e747139156b
Found module libyuvp_plugin.so with build-id: 1f182e443747181fedfc4f8895df40f2cfa97f6d
Found module libpsychedelic_plugin.so with build-id: 6ca48c4c9c38fac57473aa44778edb75e6a6e29e
Found module libanaglyph_plugin.so with build-id: 1982d6896d7d6f32680807eaff1ee197112519e3
Found module libadjust_plugin.so with build-id: ea28520445fff156ab7affb0cdfdfcd10db2f24d
Found module libsepia_plugin.so with build-id: a9fe08ceed12d4a9f089e70fe403c155c329a623
Found module libmotionblur_plugin.so with build-id: 5446d5e1bb82784d05b0d7672602e6b0d2e51b93
Found module libfps_plugin.so with build-id: 9d7f1be5ec5b7fd56947f3d22ff24b1893b993db
Found module libtransform_plugin.so with build-id: 53b5341e306c16c8d0d375f358fd67ba7e8dc609
Found module libblendbench_plugin.so with build-id: 7d8fd48ed583da83b9271a6964eb5cce439b4146
Found module libgrain_plugin.so with build-id: e73c4fe419be151fc73b42195d673a3e060e5b5f
Found module libwave_plugin.so with build-id: 7cf1f206f959f06b2dadc0414a52993cd640c3e0
Found module libscale_plugin.so with build-id: a350dd1862d47e42ecd3fbe06d8c1d5ba5160420
Found module libpostproc.so.55 with build-id: 6a094ab4ec34dcaa1b69797530bf0b317021d66b
Found module libpostproc_plugin.so with build-id: 763c2263371e288189ea0b3a5cc2eec8fbaa86cd
Found module libextract_plugin.so with build-id: cb5d4060f4869186f26d298f93d7060cdb9f6e8c
Found module libbluescreen_plugin.so with build-id: 89ff6a9f42f9ae81a1047579631bc953bbb5102e
Found module liberase_plugin.so with build-id: d6a7650b8528aebec7495c564057dd154a4e0500
Found module libgradient_plugin.so with build-id: 4f68573a99ae5c2d794fc45ea978a8c81b44b4b6
Found module libinvert_plugin.so with build-id: a504f29905aca0c8bb6c040f3e8012f9042be582
Found module libgaussianblur_plugin.so with build-id: 4df47a88391200ff868abc24b95692d75ad2b475
Found module libdeinterlace_plugin.so with build-id: dd5c91c5a2d17dbcabff6a393a115c4ee5f56e8f
Found module libmagnify_plugin.so with build-id: 5a5469c0dd83a04dad2fcf09a4165f46a771cdb4
Found module libball_plugin.so with build-id: 372c208f5065fb2aa7ee5f0494d99fc0507800dd
Found module libhqdn3d_plugin.so with build-id: a809997af6d7ae80e79857a828bb856c441a1af7
Found module libmotiondetect_plugin.so with build-id: 0ff1f9fee52384d68dcbe8794290ff9320067359
Found module liboldmovie_plugin.so with build-id: 7de7c5eb7aab65f31bd3205a373c17f7535b4706
Found module libcanvas_plugin.so with build-id: 554374c8d18f390ff71c7fa44752dbaba2c28329
Found module librotate_plugin.so with build-id: 0b449545551290f932626c3d9a5efa544f1aae6f
Found module libcolorthres_plugin.so with build-id: 682ebe8079549cb317c62df20d5cbbcee4b88b5e
Found module libripple_plugin.so with build-id: 7d22083616354a49665fb9db6bdc4d2f5ff9e571
Found module libedgedetection_plugin.so with build-id: cbba81c4b741b11fa97bc271752bbe328f5ac4dc
Found module libsharpen_plugin.so with build-id: 6b3d4fba03f3a97e2e03c2cb2de2b1f51577adbf
Found module libgradfun_plugin.so with build-id: 69202bfa4199cf45b6a74556eaa25aefaaf98934
Found module libscene_plugin.so with build-id: 0de46936496a346f231d938811c245fe1286889e
Found module libblend_plugin.so with build-id: e916ead82d7a62c52c9992401331d3d0b7f0c652
Found module libcroppadd_plugin.so with build-id: b731f07fb0d1a16ceb7f3e32e4442c566f957274
Found module libmirror_plugin.so with build-id: 64f26ed8b6c393393f66284a96fac34bf45f7550
Found module libantiflicker_plugin.so with build-id: 38271286c3884b75d53d6b89c9770e56a80a8909
Found module libpuzzle_plugin.so with build-id: 505352ddaefbae0bb0d57eb679f0f901159d1cb3
Found module libposterize_plugin.so with build-id: b65999fd611d8b1f89574e080c91f11864b14675
Found module libalphamask_plugin.so with build-id: 457acc0415b3f64284cfed40fc4df0bf51f746f0
Found module libvhs_plugin.so with build-id: dbe0c05cd220d4f0cb0f6b2197ed79c41ae5d3b4
Found module libfreeze_plugin.so with build-id: 506e2cd4aab432095adf779027b4deac629822e9
Found module libaribb24.so.0 with build-id: 32ee163090f59a8e8e58b4a42b8ff8d9eed76fab
Found module libdvbpsi.so.10 with build-id: 92338eca7f8d19dba627aff3a7f4b471c9b02055
Found module libts_plugin.so with build-id: 30ab523ba52acf130495c0d87f755c651bed4d9d
Found module libdirectory_demux_plugin.so with build-id: 4921284d5dc9618a796207a552d9c12593e09157
Found module libps_plugin.so with build-id: 0d516ec6bf24aa63bebea2ff18c0b1ee090a7a8c
Found module libnsc_plugin.so with build-id: 68b56a43731d9cd6f14d3659d1f7d527541ebb2c
Found module libh26x_plugin.so with build-id: c5e70ad5d903cb217b2fdad5d0a9620895a3ea46
Found module libes_plugin.so with build-id: b2cea557700a837c95aee4703ae92a84b789ccc5
Found module libmjpeg_plugin.so with build-id: f0081fe82a217ee2da5b4a82cc538ff40aeeee59
Found module libcaf_plugin.so with build-id: 38e97323d5eb77816caaa3be1bf0befafe91e049
Found module libnsv_plugin.so with build-id: 761f2489c43198f539a5a76deddcc5e7915855bb
Found module libvobsub_plugin.so with build-id: 9257a5d6b6aee830ea372246ab77d40ec154f635
Found module libdemux_cdg_plugin.so with build-id: a78c7097f81cebdafd4eaa95600cad34d45f7188
Found module libimage_plugin.so with build-id: 96722de98345ca9a6c1e325a6e5d3e00ac9386fe
Found module libdiracsys_plugin.so with build-id: c05df088a10d4c8c9d0746c35caa79178b1d542f
Found module libmp4_plugin.so with build-id: 3baa432770af52f3bed5012f2e8b70b00a4db983
Found module libmpcdec.so.6 with build-id: 0794d516f1da996f22be7c54da384c6a6365d34e
Found module libmpc_plugin.so with build-id: 4b52162b0f0f9091cb344001d8633b22cedc4632
Found module libvoc_plugin.so with build-id: 8791b6f12d8b31feda8d3d45a2142f563ac57776
Found module libmatroska.so.7 with build-id: ac778b14bd45b11f1b773beedad248b243b9b794
Found module libebml.so.5 with build-id: 19efec1fe1e0abcb78e74a31b2bb1754745f5dbb
Found module libmkv_plugin.so with build-id: dedb61b6c91862f7a3566c5e6c4f8072a769ebfd
Found module libsubtitle_plugin.so with build-id: b8e82ecae2caf6fda71cbb4033e7d34d9de97746
Found module libplaylist_plugin.so with build-id: 2a0409aa04c75a576d642c5e72b5999b6c9a4318
Found module libau_plugin.so with build-id: 19eaa6bc1696d1a7d97c329747a1ee617a06bdeb
Found module libavformat_plugin.so with build-id: c2696f0f9a73a310a006f8b1df306defcd591e62
Found module libogg_plugin.so with build-id: c204606ee6f1ad72ce2802770d9e2de8f91d820c
Found module libnoseek_plugin.so with build-id: 28cd3247a60493ed411e689c01478bf509da1a1e
Found module libpva_plugin.so with build-id: 89051240d64ad2230062f231d857efb94e47d48c
Found module libsmf_plugin.so with build-id: 58b64b140cadc8b086f78b8111d1e20667615603
Found module libavi_plugin.so with build-id: 0d11d7d6d1d0d039c9c05f44961c71dd68b9b092
Found module libdemuxdump_plugin.so with build-id: f7b9be4a5868fd1a24734eda15be610654fea4c2
Found module libasf_plugin.so with build-id: 12dd7ff3bba843c85fef7c55159cc813fa191de4
Found module libdemux_stl_plugin.so with build-id: 54872001f5dafa6e28dbba67af9e200435a51278
Found module libvc1_plugin.so with build-id: e0acadb528441060a9982761397def281b6d0317
Found module librawaud_plugin.so with build-id: d88d0f12eb8654c0c3562e9687fdd2b3783b046d
Found module libdemux_chromecast_plugin.so with build-id: dbdd8d5e574c81bce21f141593dc8c57d4db23e4
Found module libmod_plugin.so with build-id: 69066f78d059c6f8c419aa5f3c2780ce45cf2b1d
Found module libtta_plugin.so with build-id: 081ada50b704b22b17740423933029ae8e6ffdec
Found module libwav_plugin.so with build-id: fe17cd00209dcedc78c03357ff7e9f956a462bad
Found module libxa_plugin.so with build-id: 68f8b84d5844f2ea2b81227a50de64bb5a309b01
Found module libadaptive_plugin.so with build-id: a72ae296d4cfaec4baf6532bef71b1fb22370ec7
Found module librawdv_plugin.so with build-id: 9cc80aa8f7f0473d5f0706f8eeb6716d7e9fe5ae
Found module libflacsys_plugin.so with build-id: c06400d463018a112370d00915933f8c2f2b0171
Found module libaiff_plugin.so with build-id: ad3653d4ad6721c95dd9786a27ec5afd29c1dfd3
Found module libty_plugin.so with build-id: 8a1dc2ff10cf78563ad1c8be067a86db30d49de1
Found module libnuv_plugin.so with build-id: fd3bf9f0272182cb163390fea169dd57f3c4ede3
Found module libreal_plugin.so with build-id: 4c4f7ea0211446e177082798d1bc0e42a6165603
Found module librawvid_plugin.so with build-id: 83cbd316b9747214a764a3b54f6fdec3f08e8dae
Found module libmpgv_plugin.so with build-id: 449e03482c7c7ba1727b4566db45f13e429ccae7
Found module libvlc.so.5 with build-id: f2f767f174284406eaa2b1b9a4bdd166d16ccd56
Found module libavcodec_plugin.so with build-id: 01a48c9674ad8739d6ea8e735c3185bd8822cebf
Found module libidn.so.12 with build-id: a03952cbdf12d9d512b58a73b3b9e9bd418da682
Found module libvlccore.so.9 with build-id: 27bdab86dc5672580a6ff0bef95c0de5871a4d40
Found module libswscale.so.5 with build-id: 77e3bd5b047eaa9b39b8f4729aa764adc5e0f35d
Found module libcrypto.so.1.1 with build-id: 6d23f0a3f354825868d044684fad31d482cc9210
Found module libhogweed.so.6 with build-id: 2d70cff7b1841b4d9ca4e8e7726cd4b944c07fdc
Found module libnettle.so.8 with build-id: 9a878e513c02007598fcf1e2e286c2203f13536e
Found module libtasn1.so.6 with build-id: 4df18bd1f13772f0956191e137eb00d9bd6238c5
Found module libunistring.so.2 with build-id: 015ac6d6bcb60b7d8bea31a80d1941b06e8636ab
Found module libidn2.so.0 with build-id: 1ce2b50ad9f9821c2c629b521cf5a3c99593d332
Found module libp11-kit.so.0 with build-id: 5314ec746546ada6f442b6fdfae15eab9f6d3cdc
Found module libssh.so.4 with build-id: 8490056688e60790230f9d990c439b181236e9b6
Found module libsrt.so.1.4 with build-id: 63c1df3cc035c493ede3570e560f93991486d082
Found module libgnutls.so.30 with build-id: 8c87466eacaec0041a370df713d0fd200358c94c
Found module libgmp.so.10 with build-id: e58d34ab389d1b649c24195c2d145e3ff2e58290
Found module libbluray.so.2 with build-id: ebaa74ef4d549c1d3f01fafb8625045d286b8940
Found module libmodplug.so.1 with build-id: b00dcb12e7d2d5882b4fa414295eba449875dae4
Found module libavformat.so.58 with build-id: 86c1844cfba35a65a52085e6ccfe9ca07093c729
Found module libicudata.so.69 with build-id: 0ab994a49ef1848499c4af333b3266f28432a922
Found module libicuuc.so.69 with build-id: 5cf18c56e2f64efdac32cf61fb9c0c48e9bb1797
Found module libgomp.so.1 with build-id: 1cb25691b8e34e1ce54698066bce0fb29f5cf9fa
Found module libmvec.so.1 with build-id: 9aa05e22565568b778a97933527b3c64bdb8418b
Found module libogg.so.0 with build-id: ca0cae30a809f10db1f16e54a23b4e5ff7b2c54c
Found module libxml2.so.2 with build-id: b9441ffabb52b50c290152592f17cd78a381d493
Found module libsoxr.so.0 with build-id: 9e49936ed807c1e52705b88d5d71706fe11d9ed1
Found module libxvidcore.so.4 with build-id: 43bc390a7842a7ca3a0302e93442ea561d7f013a
Found module libx265.so.199 with build-id: 22130b9b0d2aa957b148b0fdeb27e3fd04f0fb58
Found module libx264.so.161 with build-id: a23dfea0b501cbfb2501c5bfe6c40b602e2767cc
Found module libvorbisenc.so.2 with build-id: 28ed815b8b1d322e6bf2bfdce4b0af2789b74335
Found module libvorbis.so.0 with build-id: ad0a6c1af8f219b4e314090b6e8847223d424cbe
Found module libtheoradec.so.1 with build-id: 19d321fd5455c7b7611ca9602a804b496124e06f
Found module libtheoraenc.so.1 with build-id: cde750f0621140f313e4ef4e5f212e662f24a38b
Found module libSvtAv1Enc.so.0 with build-id: 3ebe5abcc88d5855fde0b2645844f80f03982902
Found module libspeex.so.1 with build-id: 39721dbe21b62978562c2943279f6dffbffe8946
Found module librav1e.so.0 with build-id: 2e9e70e2433e4d2955a870f2de730172729fbe4f
Found module libopus.so.0 with build-id: 649d3ddab8764d7caf73648004a35cb13e23a5e1
Found module libopenjp2.so.7 with build-id: 0a329c12468c33c92ecbc3968f4dc9c79cc5db96
Found module libopencore-amrnb.so.0 with build-id: a3d78948c85fa235e66549119b2f130e69af7b70
Found module libmp3lame.so.0 with build-id: 48c901805551a3dd58d02502c4cd67f6aa848107
Found module libgsm.so.1 with build-id: 1cc6240f7eaedaaac302bc7c0f64ebbeae596f22
Found module libaom.so.3 with build-id: 96dd5026ad7503076a2b7b9c1b94f442d446121f
Found module librsvg-2.so.2 with build-id: 4dc74baf658575bd661ee40a060a497e9f6b4875
Found module libopencore-amrwb.so.0 with build-id: 28da8ed3dfca59280e835c46bd40da295dae99e2
Found module libdav1d.so.5 with build-id: 82862181dbe48302fde94240f68e17fb6f9a03c7
Found module libwebp.so.7 with build-id: 87e81472aa7ff3ed1061cfc13d6960dbe00c35ab
Found module libwebpmux.so.3 with build-id: 4e17ff5fa40f00cda51d08d9edd48d442d3044e2
Found module libvpx.so.6 with build-id: ffb0245ae4799fc843384d31eee517ce8c8805d2
Found module libswresample.so.3 with build-id: a9728c9e65dd1e3e82293a186e42b3ac4eef6f56
Found module libavcodec.so.58 with build-id: 1275d2e02c81a70a2a30ee2f11a60de9ef76e1a3
Found module libmfx.so.1 with build-id: 791cadc6e88448b8b74c55f52f7fbdf52af2376d
Found module libdrm.so.2 with build-id: 3aeff5403ca8d7589eabc05752eb613937f454a1
Found module libvdpau.so.1 with build-id: 96ac4ef0ce4b2bdbe091782d97eafadd6e4cea90
Found module libva-x11.so.2 with build-id: e6a0ffef32570ba034a3724e735ba0fa90d39eee
Found module libva.so.2 with build-id: d0042003bbdf0c10b26dbc25c80cb06eb64b4f5c
Found module libva-drm.so.2 with build-id: 5ac46263a883c725bfed65d98ff2e3162fd464ad
Found module libavutil.so.56 with build-id: 519676d43a87a9c3f38323f8d67eff209e7f819c
Found module reaper_video.so with build-id: 775546f79f1605e5b6bf733e3719327ee973a11a
Found module libpipewire-module-metadata.so with build-id: 7c47b686c2417bd8155540d916283490c9a523e7
Found module libpipewire-module-client-node.so with build-id: 534b800fc282b8c13a1d7ee8416447f767a21498
Found module libpipewire-module-protocol-native.so with build-id: 9e4632943505580107fda6c14cb6b491ef9cd9da
Found module libpipewire-module-rt.so with build-id: 33fe7e482d68ee1a371115b28704a9365c9c09e4
Found module libnss_files.so.2 with build-id: 1a36dfc01d3a1010b2ee79766a24a8090a3266d5
Found module libdbus-1.so.3 with build-id: 74f2ab9c60512f3a93c932c3f627564d42e0b11e
Found module libspa-dbus.so with build-id: 879c070e8997cc3eebac4bdf926920dc2dc24eea
Found module libgpg-error.so.0 with build-id: ba85170c2d9343ea05eea8fa2048c212ff4ef552
Found module libgcrypt.so.20 with build-id: db45f5d5e0f7af1e77324fea1885f974619ad268
Found module libcap.so.2 with build-id: e56ad9da369b1a7ba6c62d8d31c5a779f07fbbb1
Found module liblz4.so.1 with build-id: e63600ab23b2f6997f42fac2fa56e1f02ce159a1
Found module libsystemd.so.0 with build-id: f776aaa16b4e2ba7056d01d928e4b2726ffe2b8b
Found module libspa-journal.so with build-id: 43625cd7ba3fa1c7fdbb1cf1fb3dff1d2733b30e
Found module libspa-support.so with build-id: 72a9a0bd243c4bd7d7e00ed76cfe12979ca177ce
Found module libpipewire-0.3.so.0 with build-id: dc97b36efe993325533f45b7e400e14530ad981b
Found module libjack.so.0 with build-id: 0ddd09e2a780c2fa21d0c0d160794da952f5d274
Found module jsfx.so with build-id: ddde1c0865d7b54e25cdd93dd5ba4e1dbd64aa52
Found module rubberband.so with build-id: bb9340f73a73e0f5fd90ba6baa3ae22c6bfa7e56
Found module soundtouch.so with build-id: a66cdba14a48ece4eb68ec896d6c440faaf1d8cf
Found module elastique3.so with build-id: 5fe8d6773ff434a9808c83f620d13a2b982cf27d
Found module libblkid.so.1 with build-id: f03a24e92c9852272bd0049b5bcb7ed6cf0e664f
Found module libdatrie.so.1 with build-id: 6fe3b6ece2c8e7d11869fa051375128d8f808f58
Found module liblzma.so.5 with build-id: 8b615460aa230708c5183f16bede67aa0437d95e
Found module libzstd.so.1 with build-id: 4b10444c1560ebc574af4d5f488b7408b22d450e
Found module libpangoft2-1.0.so.0 with build-id: 52a846673f7bf9e8acdd0ae9a825926c9cfc5920
Found module libresolv.so.2 with build-id: c915c72668282861a813f7ea3c0780f37b681dc0
Found module libmount.so.1 with build-id: ff9a1d99d35cf640d0bfdaba294854372672c29b
Found module libthai.so.0 with build-id: 3fdce1a7db2b94d9168eea540dbf5ff5caa3b8ad
Found module libpixman-1.so.0 with build-id: 341f793dcada3a48a306a793d265a517e3f2e7d6
Found module libxcb-shm.so.0 with build-id: fb797f299a446f559a95afcc168227482cc800d1
Found module libxcb-render.so.0 with build-id: a37bdb37744b508be9dd29fd9ccb9bb0170d43e5
Found module libXrender.so.1 with build-id: 97e0b9ab6ba96ebc86527cc2b3c3078aad8616b3
Found module libffi.so.7 with build-id: de60e99f39569d11d09160bbdcd486cedc87d2b6
Found module libtiff.so.5 with build-id: e8d89a0fb0847641ddb75c5f03fa89d68155a75d
Found module libjpeg.so.8 with build-id: 5d102b1a7291a621bba049969d25ead0ccecc6cc
Found module libgmodule-2.0.so.0 with build-id: 34cabbd12d9baf397a0255f174e4c96165bc329b
Found module libXinerama.so.1 with build-id: dbb6adece34ea2766d3efcd628af8f9757344dd6
Found module libXrandr.so.2 with build-id: d4e869b5c72541e1de8f96b456248987ea52d51b
Found module libXcomposite.so.1 with build-id: f1bb5ffb6203ab2907ac044a204ce3902a79f1c1
Found module libXfixes.so.3 with build-id: 0a05c7e8714522bfbdd7c0027c3e2a94965664b0
Found module libXdamage.so.1 with build-id: a1d867e093c16944b2c0083be98050ef35c9e5c2
Found module libXcursor.so.1 with build-id: eb6315bcd7526aaf51b0a1307efdc587cea0a152
Found module libwayland-egl.so.1 with build-id: 1c761f5ec5429abb88e4f6ff71815358e58c393c
Found module libwayland-cursor.so.0 with build-id: a8b45436314425ee9a92efaff68bd2b79f870e77
Found module libwayland-client.so.0 with build-id: 58038363d7ea1fd5e6532f6e5f90b1a3ce09388a
Found module libxkbcommon.so.0 with build-id: 1f1bc7527e57c886c3df5803068122e1971d4724
Found module libpangocairo-1.0.so.0 with build-id: 2554be0474a6ee311b6e9aa4fd79a244167cdcfd
Found module libgio-2.0.so.0 with build-id: 3338d7168eab6039416e1b6dbb7ea3ef213cd129
Found module libepoxy.so.0 with build-id: b6357fc6b748c512f90339433d74502b9d0621dc
Found module libcairo-gobject.so.2 with build-id: abbf5a8a182ea1b8b7d68540df5c2e25c0bdae0c
Found module libfribidi.so.0 with build-id: e29e3b231f961d49e628d43ddd1237a8364f788c
Found module libpango-1.0.so.0 with build-id: 5deae7c16592ea404754114e8ae56ddf9cf4ca7e
Found module libcairo.so.2 with build-id: 06820af9cf79c2deb207d9533a61caf04e67a8ad
Found module libgobject-2.0.so.0 with build-id: 0eaa1a0f88089b3dcf33eedf51105a54beeeea9a
Found module libgdk_pixbuf-2.0.so.0 with build-id: ca4beb15a30de8d8767f7bca8222038c61b58b36
Found module libgdk-3.so.0 with build-id: 386cb304b5cff36ea3ce3c67b09b9097a12da877
Found module libpcre.so.1 with build-id: 845483dd0acba86de9f0313102bebbaf3ce52767
Found module libbrotlicommon.so.1 with build-id: f68934f94312f770550ebc6c5acfd6359b098b07
Found module libglib-2.0.so.0 with build-id: 1fe1592d097fa28822c23e96d9f357583b48424d
Found module libgraphite2.so.3 with build-id: 47761dc11e553f519cde97ed9ee985be12ccdae2
Found module libbrotlidec.so.1 with build-id: f871e6f204ab8d48099915126ba01be989a8000f
Found module libharfbuzz.so.0 with build-id: f954dfb80265c0dd2484e766282305a739b8239d
Found module libpng16.so.16 with build-id: 2dc0bce07f199bf983c07a05fb95a6f4af83a9b3
Found module libbz2.so.1.0 with build-id: 919597c477c9b2cb9cdbb7745ed6494ac0e6da60
Found module libz.so.1 with build-id: 81bf6e728a6d6f5b105b0f8b25f6c614ce10452a
Found module libXdmcp.so.6 with build-id: 8ca0792d23c8b8b4c0864297512349292bea5955
Found module libXau.so.6 with build-id: 1c67764663e07bec24d8951e5fd93f4d165979ff
Found module libexpat.so.1 with build-id: 8850138eae6d9d4d43c5c4b2ac48393bc4279037
Found module libfreetype.so.6 with build-id: 65e7f4a1e5557b0ceeaa433e5356f857fe9c669b
Found module libXext.so.6 with build-id: d70f24beb4fad748d6becffdcc13e51be0a2ebfa
Found module libxcb.so.1 with build-id: 0d1ef11740a5daad2ee331e812a51aa6574af222
Found module libfontconfig.so.1 with build-id: 1103a641395c7d3b42e49b793d3a9ea927c77bf6
Found module libXi.so.6 with build-id: 16603be937a02a7e61b0b0395d064be7efd86f49
Found module libX11.so.6 with build-id: e9192497aa39fab51358826d1a1b5fb77edc5081
Found module libSwell.so with build-id: 47d80db31f71409e91a86d2ccf89c68981ad5794
Found module librt.so.1 with build-id: 75484da2d6f1515189eefa076e0a40328834cd16
Found module ld-linux-x86-64.so.2 with build-id: 040cc3dd10461562f177df39e3be2f3704258c3c
Found module libc.so.6 with build-id: 4b406737057708c0e4c642345a703c47a61c73dc
Found module libgcc_s.so.1 with build-id: 7f8508bb914546ada778809b64b99d234337d835
Found module libm.so.6 with build-id: 2b8fd1f869ecab4e0b55e92f2f151897f6818acf
Found module libstdc++.so.6 with build-id: 8ab0e57054dd1dcba681f217016afc6a4e639783
Found module libasound.so.2 with build-id: 9288c92ff737b1999761df2018fcd0e7cbf46d5a
Found module libdl.so.2 with build-id: 5abc547e7b0949f89f3c0e21ab0c8331a7440a8a
Found module libpthread.so.0 with build-id: 07c8f95b4f3251d08550217ad8a1f31066229996
Found module reaper with build-id: 6b69018b16ded7062fd144f7f994321d7f0f9482
Stack trace of thread 32386:
#0  0x00007fac5d4286c1 __dynamic_cast (libstdc++.so.6 + 0xa46c1)
#1  0x00007fac389fa33e n/a (libsparta_binauraliser.so + 0x12333e)
#2  0x00007fac38a9b013 n/a (libsparta_binauraliser.so + 0x1c4013)
#3  0x00007fac38a91393 n/a (libsparta_binauraliser.so + 0x1ba393)
#4  0x00007fac3892dcf4 n/a (libsparta_binauraliser.so + 0x56cf4)
#5  0x00007fac38abae42 n/a (libsparta_binauraliser.so + 0x1e3e42)
#6  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#7  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31735:
#0  0x00007fac5d15592e epoll_wait (libc.so.6 + 0xfe92e)
#1  0x00007fac5b6fe2e1 n/a (libspa-support.so + 0x132e1)
#2  0x00007fac5b6f4df4 n/a (libspa-support.so + 0x9df4)
#3  0x00007fac5ada98bd n/a (libpipewire-0.3.so.0 + 0x438bd)
#4  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#5  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31746:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x00000000006969ae n/a (reaper + 0x2969ae)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31747:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x00000000006969ae n/a (reaper + 0x2969ae)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31749:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x00000000006969ae n/a (reaper + 0x2969ae)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31751:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x00000000006969ae n/a (reaper + 0x2969ae)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31748:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x00000000006969ae n/a (reaper + 0x2969ae)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31752:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x00000000006969ae n/a (reaper + 0x2969ae)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31750:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x00000000006969ae n/a (reaper + 0x2969ae)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31738:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x000000000069645e n/a (reaper + 0x29645e)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31740:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x000000000069645e n/a (reaper + 0x29645e)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31741:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x000000000069645e n/a (reaper + 0x29645e)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31739:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x000000000069645e n/a (reaper + 0x29645e)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31742:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x000000000069645e n/a (reaper + 0x29645e)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31744:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x000000000069645e n/a (reaper + 0x29645e)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31743:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x000000000069645e n/a (reaper + 0x29645e)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31745:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
#2  0x00007fac5cda541b n/a (libSwell.so + 0xb41b)
#3  0x000000000069645e n/a (reaper + 0x29645e)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 32388:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698842 pthread_cond_clockwait (libpthread.so.0 + 0xf842)
#2  0x00007fac38abac4a n/a (libsparta_binauraliser.so + 0x1e3c4a)
#3  0x00007fac38a91207 n/a (libsparta_binauraliser.so + 0x1ba207)
#4  0x00007fac38abae42 n/a (libsparta_binauraliser.so + 0x1e3e42)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 32387:
#0  0x00007fac5d14ab2f __poll (libc.so.6 + 0xf3b2f)
#1  0x00007fac38a983bf n/a (libsparta_binauraliser.so + 0x1c13bf)
#2  0x00007fac38ac6aa8 n/a (libsparta_binauraliser.so + 0x1efaa8)
#3  0x00007fac38abae42 n/a (libsparta_binauraliser.so + 0x1e3e42)
#4  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#5  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31730:
#0  0x00007fac5d1ba5e0 __memmove_avx_unaligned_erms (libc.so.6 + 0x1635e0)
#1  0x00007fac5cb0465b n/a (libfreetype.so.6 + 0x1765b)
#2  0x00007fac5cb083dd n/a (libfreetype.so.6 + 0x1b3dd)
#3  0x00007fac5cb0f362 n/a (libfreetype.so.6 + 0x22362)
#4  0x00007fac5cb00c61 FT_Load_Glyph (libfreetype.so.6 + 0x13c61)
#5  0x00007fac5cdde363 n/a (libSwell.so + 0x44363)
#6  0x00007fac5cdc20e7 n/a (libSwell.so + 0x280e7)
#7  0x00007fac5cdcb318 n/a (libSwell.so + 0x31318)
#8  0x00007fac5cde07b6 n/a (libSwell.so + 0x467b6)
#9  0x00007fac5cde85ea n/a (libSwell.so + 0x4e5ea)
#10 0x00007fac5c6b9643 n/a (libgdk-3.so.0 + 0x3c643)
#11 0x00007fac5c6c0fc2 n/a (libgdk-3.so.0 + 0x43fc2)
#12 0x00007fac5c6c582b n/a (libgdk-3.so.0 + 0x4882b)
#13 0x00007fac5c6c5a29 n/a (libgdk-3.so.0 + 0x48a29)
#14 0x00007fac5c60d1c0 g_signal_emit_valist (libgobject-2.0.so.0 + 0x301c0)
#15 0x00007fac5c60d330 g_signal_emit (libgobject-2.0.so.0 + 0x30330)
#16 0x00007fac5c6bd179 n/a (libgdk-3.so.0 + 0x40179)
#17 0x00007fac5c6aa5dc n/a (libgdk-3.so.0 + 0x2d5dc)
#18 0x00007fac5c85fa84 n/a (libglib-2.0.so.0 + 0x54a84)
#19 0x00007fac5c85f3e5 g_main_context_dispatch (libglib-2.0.so.0 + 0x543e5)
#20 0x00007fac5c8b3749 n/a (libglib-2.0.so.0 + 0xa8749)
#21 0x00007fac5c85cbc1 g_main_context_iteration (libglib-2.0.so.0 + 0x51bc1)
#22 0x00007fac5cdea30a n/a (libSwell.so + 0x5030a)
#23 0x00007fac5cdcb662 n/a (libSwell.so + 0x31662)
#24 0x0000000000415666 n/a (reaper + 0x15666)
#25 0x00007fac5d07eb25 __libc_start_main (libc.so.6 + 0x27b25)
#26 0x000000000041ae0a _start (reaper + 0x1ae0a)

Stack trace of thread 31736:
#0  0x00007fac5d15592e epoll_wait (libc.so.6 + 0xfe92e)
#1  0x00007fac5b6fe2e1 n/a (libspa-support.so + 0x132e1)
#2  0x00007fac5b6f4df4 n/a (libspa-support.so + 0x9df4)
#3  0x00007fac5ade7fdf n/a (libpipewire-0.3.so.0 + 0x81fdf)
#4  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#5  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 31737:
#0  0x00007fac5d11da95 clock_nanosleep@@GLIBC_2.17 (libc.so.6 + 0xc6a95)
#1  0x00007fac5d122c77 __nanosleep (libc.so.6 + 0xcbc77)
#2  0x00007fac5d14da99 usleep (libc.so.6 + 0xf6a99)
#3  0x00007fac58cbc125 n/a (reaper_video.so + 0x2d125)
#4  0x00007fac5cda5adb n/a (libSwell.so + 0xbadb)
#5  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#6  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)

Stack trace of thread 32389:
#0  0x00007fac5d69e8ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
#1  0x00007fac5d698270 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf270)
#2  0x00007fac126c197c n/a (iris_dri.so + 0x1c897c)
#3  0x00007fac126bb058 n/a (iris_dri.so + 0x1c2058)
#4  0x00007fac5d692259 start_thread (libpthread.so.0 + 0x9259)
#5  0x00007fac5d1555e3 __clone (libc.so.6 + 0xfe5e3)
okt 06 19:03:41 bent systemd[1]: [email protected]: Deactivated successfully.
okt 06 19:03:41 bent audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@3-32411-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
okt 06 19:03:41 bent systemd[1]: [email protected]: Consumed 1.100s CPU time.
okt 06 19:03:41 bent audit: BPF prog-id=38 op=UNLOAD
okt 06 19:03:41 bent audit: BPF prog-id=37 op=UNLOAD
okt 06 19:03:41 bent audit: BPF prog-id=36 op=UNLOAD
okt 06 19:03:41 bent kernel: audit: type=1131 audit(1633539821.869:142): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@3-32411-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
okt 06 19:03:41 bent kernel: audit: type=1334 audit(1633539821.875:143): prog-id=38 op=UNLOAD
okt 06 19:03:41 bent kernel: audit: type=1334 audit(1633539821.875:144): prog-id=37 op=UNLOAD
okt 06 19:03:41 bent kernel: audit: type=1334 audit(1633539821.875:145): prog-id=36 op=UNLOAD

Wait, sorry, it seems this is still using my system's netcdf. Let me try and remove that and build again.

madskjeldgaard avatar Oct 06 '21 17:10 madskjeldgaard

@leomccormack how do I build this without netcdf? Cmake complains that NETCDF_LIBRARY not found

madskjeldgaard avatar Oct 06 '21 18:10 madskjeldgaard

@madskjeldgaard Hey! If you pull the latest Spatial_Audio_Framework (master branch), clear your CMakeCache (rm -r build), and reconfigure CMake, it should not longer require NETCDF by default, only ZLIB : )

(That is, unless you add -DSAF_ENABLE_NETCDF=1 during config)

leomccormack avatar Oct 28 '21 12:10 leomccormack

@madskjeldgaard Hey! If you pull the latest Spatial_Audio_Framework (master branch), clear your CMakeCache (rm -r build), and reconfigure CMake, it should not longer require NETCDF by default, only ZLIB : )

(That is, unless you add -DSAF_ENABLE_NETCDF=1 during config)

thanks for looking into this! I just tried running the usual commands and it still complains about a lack of netcdf.

	cd "$srcdir/$pkgname"

	git submodule update --init --recursive

	# Get VST2 SDK
	./audio_plugins/install-vst2_sdk.sh &&\

	# Build
	mkdir -p build &&\
	cmake -S . -B build \
		-DSAF_ENABLE_SOFA_READER_MODULE=1 \
		-DSAF_PERFORMANCE_LIB=SAF_USE_INTEL_MKL_LP64 \
		-DINTEL_MKL_HEADER_PATH="/opt/intel/mkl/include" \
		-DINTEL_MKL_LIB="/opt/intel/mkl/lib/intel64/libmkl_rt.so" \
		-DSAF_USE_FFTW=1 \
		-DCMAKE_INSTALL_PREFIX="$pkgdir/usr/lib/vst"
		# -DJUCE_COPY_PLUGIN_AFTER_BUILD=ON \
		# -DSAF_ENABLE_SIMD=1
	cd build
	make

Or do I need to manually download spatial audio framework and link to it in cmake?

madskjeldgaard avatar Oct 28 '21 13:10 madskjeldgaard

Ah, you may need to cd into the spatial audio framework and pull the latest commits

leomccormack avatar Oct 28 '21 13:10 leomccormack

Ah, you may need to cd into the spatial audio framework and pull the latest commits

Ah okay, got it built and installed now. It still does not work though. I used the flags above but still get a segfault.

One thing I learned though is that if you scan the plugins in Ardour you get a tiny teeny wee bit of info:

[Info]: Scanning: /usr/lib/vst/libsparta_ambiBIN.so
[ERROR]: Could not load VST2 plugin '/usr/lib/vst/libsparta_ambiBIN.so': libnetcdf.so.15: cannot open shared object file: No such file or directory
[WARNING]: Cannot open VST2 module '/usr/lib/vst/libsparta_ambiBIN.so'
Scan Failed.

madskjeldgaard avatar Oct 28 '21 20:10 madskjeldgaard

I'll try again with this flag:

-DSAF_ENABLE_NETCDF=0 

madskjeldgaard avatar Oct 28 '21 20:10 madskjeldgaard

I'll try again with this flag:

-DSAF_ENABLE_NETCDF=0 

They still dont work in Reaper, but seems they dont crash Ardour at least.

madskjeldgaard avatar Oct 28 '21 21:10 madskjeldgaard