-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.template
58 lines (44 loc) · 3.39 KB
/
README.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# vs-plugin-build
[VapourSynth](https://www.vapoursynth.com/) plugin build system for Linux/macOS. It is recommended to use [vsrepo](https://github.com/vapoursynth/vsrepo/) to install the plugins.
Currently most plugins included are simple to compile (no dependencies and standard build system). Other plugins will be added over time (feel free to open pull requests).
## Plugin compatibility
Default requirements:
- linux-glibc-x86_64 (Linux 64-Bit): libc6 at least 2.17, Linux Kernel at least 3.2.101 (compiled with GCC 11)
- darwin-x86_64 (Intel Mac): At least OS X 10.11 El Capitan
- darwin-aarch64 (Apple Silicon Mac): At least macOS 11 Big Sur
If a plugin has higher or other requirements this is shown in the list.
## Plugin list
For each category the number of currently available plugins in this repo and the total number of plugins in vsrepo is given.
For a nice list of all plugins (and scripts/wheels) with more details, see the [VapourSynth Database](https://vsdb.top/vsrepogui).
|Name | Linux (x86_64) | macOS (Intel) |macOS (Apple Silicon)|
|------------------------------------------------------------|------------------|---------------|---------------------|{PLUGIN_GENERATED_LIST}
## Plugin issues
Not all plugins with build definitions in the repository build correctly on all platforms at the moment:
### linux-glibc-x86_64
*currently all plugins can be build*
### darwin-x86_64
- Bilateral: Linking failure (unknown option: `-Bsymbolic`)
- IT: Linking failure (unknown option: `-Bsymbolic`)
- JincResize: Crash during test
- MiniDeen: Compile failure (error: argument to `'__builtin_ia32_vec_set_v8hi' must be a constant integer'`)
- NoiseGen: Crash during test
- SmoothUV: Compile failure (error: argument to `'__builtin_ia32_vec_set_v8hi' must be a constant integer'`)
### darwin-aarch64
- Bilateral: configure failure
- DeblockPP7: Uses x86 intrinsics
- DeCross: Only x86 supported
- DeLogo: configure failure (`fatal error: 'vapoursynth/VapourSynth.h' file not found`)
- DePan: configure failure (`fatal error: 'vapoursynth/VapourSynth.h' file not found`)
- IT: configure failure
- JincResize: Crash during test
- NoiseGen: Crash during test
- SmoothUV: Only x86 supported
- TDeintMod: Uses x86 intrinsics
- TemporalSoften2: Only x86 supported
- TIVTC: Only x86 supported
- Yadifmod: Uses x86 intrinsics
### Howto fix build issues:
These are a few ideas how to fix build issues on Darwin/macOS:
- Configure or linking failures: These can most likely be fixed by using a newer (better) build system like meson. Creating a meson.build File for a plugin is very easy, see [here](https://github.com/dubhater/vapoursynth-mvtools/blob/master/meson.build) for an example (with nasm and dependencies).
- Only x86 supported / x86 intrinsics: [sse2neon](https://github.com/DLTcollab/sse2neon) can be used to convert SSE intrinsics to NEON. *sse2neon can also be used to convert SSE code to NEON for plugins that can already be build on aarch64 (Apple Silicon) to improve performance.*
If you like to help fixing these issues it is recommended that you open an issue on the plugin repository (or create an pull request that fixes the issue there) with the hope the author will release a new version with a fix. If the plugin is unmaintained (or the maintainer does not respond) you can may open an issue here, so the patch can be included in the build system (less desirable option).