Warning: No entry point found in /usr/lib/vapoursynth/libbestsource.so
this error keeps showing up in both encoding and VapourSynth-Editor
the funny part is that it shows up even when I use FFMS2 as a source
It's in the wrong directory. Did you manually copy the built library rather than execute ninja -C build install? libbestsource and bestsource would be installed to different directory.
It's in the wrong directory. Did you manually copy the built library rather than execute
ninja -C build install? libbestsource and bestsource would be installed to different directory.
i used officially repo package from arch
Report to the responsible maintainer then.
thanks. What i should include in my report exactly?
Tell the maintainer to remove --libdir /usr/lib/vapoursynth from their build script. Otherwise the API library would be incorrectly installed to plugin directory and got autoloaded.
You can also drop a link to this issue in your report for their reference.
@HolyWu You need to give the library a proper soname and version it if you expect people to install it in /usr/lib and have ldconfig be happy.
Edit: Looks like it does have a soname now, it didn't at the beginning, which is why I had to install it elsewhere. Removing the flag then. Thanks.