File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 29
29
sudo apt update
30
30
sudo apt install cmake
31
31
32
- - name : Install FFmpeg
33
- run : |
34
- git clone https://github.com/HomeOfAviSynthPlusEvolution/FFmpeg --branch custom-patches-for-lsmashsource --depth 1
35
- pushd FFmpeg
36
- ./configure --enable-gpl --enable-version3 --disable-static --enable-shared --disable-all --disable-autodetect --enable-avcodec --enable-avformat --enable-swresample --enable-swscale --disable-asm --disable-debug
37
- make -j2
38
- sudo make install -j2
39
- popd
40
- rm -rf FFmpeg
41
-
42
32
- name : Install obuparse
43
33
run : |
44
34
git clone https://github.com/dwbuiten/obuparse --depth 1
79
69
80
70
- name : Build AviSynth/VapourSynth plugin
81
71
run : |
72
+ pushd FFmpeg
73
+ ./configure --enable-gpl --enable-version3 --disable-static --enable-shared --disable-all --disable-autodetect --enable-avcodec --enable-avformat --enable-swresample --enable-swscale --disable-asm --disable-debug
74
+ make -j2
75
+ sudo make install -j2
76
+ popd
82
77
cmake_settings=(-S . -G Ninja -DENABLE_DAV1D=OFF -DENABLE_MFX=OFF -DENABLE_XML2=OFF -DENABLE_VPX=OFF -DENABLE_VULKAN=OFF)
83
78
if [[ "${{ matrix.os }}" == "macos-latest" ]]; then
84
79
cmake_settings+=(-DCMAKE_PREFIX_PATH=/opt/homebrew/opt/zlib)
Original file line number Diff line number Diff line change 1
1
[submodule "xxHash "]
2
2
path = xxHash
3
3
url = https://github.com/Cyan4973/xxHash
4
+ [submodule "FFmpeg "]
5
+ path = FFmpeg
6
+ url = https://github.com/HomeOfAviSynthPlusEvolution/FFmpeg
7
+ branch = custom-patches-for-lsmashsource
You can’t perform that action at this time.
0 commit comments