Add ContinuityFixer
This commit is contained in:
parent
ca8ec63e7d
commit
eeaa32a13b
13
Dockerfile
13
Dockerfile
|
@ -44,6 +44,19 @@ RUN cd /tmp \
|
|||
&& cd .. \
|
||||
&& rm -rf VapourSynth-DCTFilter
|
||||
|
||||
|
||||
RUN cd /tmp \
|
||||
&& git clone --depth=1 https://github.com/MonoS/VS-ContinuityFixer \
|
||||
&& cd VS-ContinuityFixer \
|
||||
&& sed -i \
|
||||
-e 's/VapourSynth\.h/vapoursynth\/VapourSynth.h/' \
|
||||
-e 's/VSHelper\.h/vapoursynth\/VSHelper.h/' \
|
||||
continuity.cpp \
|
||||
&& g++ -shared -fPIC -O2 -msse2 -mfpmath=sse continuity.cpp -o continuity.so \
|
||||
&& cp continuity.so /usr/lib/x86_64-linux-gnu/vapoursynth/ \
|
||||
&& cd .. \
|
||||
&& rm -rf VS-ContinuityFixer
|
||||
|
||||
# Double speed for getnative
|
||||
RUN cd /tmp/ \
|
||||
&& git clone --depth=1 https://github.com/BluBb-mADe/vapoursynth-descale \
|
||||
|
|
Reference in a new issue