Skip to content

Commit

Permalink
fix ffmpeg and mpv dependencies
Browse files Browse the repository at this point in the history
ffmpeg: n5.1.2
mpv: v0.35.0
  • Loading branch information
jmir1 committed Jan 3, 2023
1 parent 0dd14c3 commit 6f6f1b1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions buildscripts/include/depinfo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ v_fribidi=1.0.12
v_freetype=2-12-1
v_mbedtls=2.28.2
v_libxml2=2.10.3
v_ffmpeg=n5.1.2
v_mpv=v0.35.0


## Dependency tree
Expand Down
4 changes: 2 additions & 2 deletions buildscripts/include/download-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ fi
[ ! -d dav1d ] && git clone https://code.videolan.org/videolan/dav1d.git

# ffmpeg
[ ! -d ffmpeg ] && git clone https://github.com/FFmpeg/FFmpeg ffmpeg
[ ! -d ffmpeg ] && git clone https://github.com/FFmpeg/FFmpeg -b $v_ffmpeg ffmpeg

# freetype2
[ ! -d freetype2 ] && git clone git://git.sv.nongnu.org/freetype/freetype2.git -b VER-$v_freetype
Expand Down Expand Up @@ -55,6 +55,6 @@ if [ ! -d lua ]; then
fi

# mpv
[ ! -d mpv ] && git clone https://github.com/mpv-player/mpv
[ ! -d mpv ] && git clone https://github.com/mpv-player/mpv -b $v_mpv

cd ..
2 changes: 1 addition & 1 deletion buildscripts/scripts/ffmpeg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ cpuflags=
--enable-{jni,mediacodec,mbedtls,libdav1d,libxml2} --disable-vulkan \
--disable-static --enable-shared --enable-{gpl,version3} \
--disable-{stripping,doc,programs} \
--disable-devices --enable-encoder=mjpeg,png
--disable-devices

make -j$cores
make DESTDIR="$prefix_dir" install

0 comments on commit 6f6f1b1

Please sign in to comment.