Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKacper Michajłow <kasper93@gmail.com>2017-08-14 02:45:28 +0300
committerKacper Michajłow <kasper93@gmail.com>2017-08-15 23:23:00 +0300
commit2034ddd99b0ec26270999fbb11f1fb03202d27ae (patch)
treee76e7c050405f350938714485410cfb6c5414995
parentb3d0f81b0e4a5b175ef42351f3fb63a5bf2866c1 (diff)
build_ffmpeg.sh: Use yasm for now to avoid MSBuild issue.
See https://github.com/Microsoft/msbuild/issues/2424 Also sync build options with upstream.
-rwxr-xr-xsrc/thirdparty/LAVFilters/build_ffmpeg.sh9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/thirdparty/LAVFilters/build_ffmpeg.sh b/src/thirdparty/LAVFilters/build_ffmpeg.sh
index ce76275f8..e595c178e 100755
--- a/src/thirdparty/LAVFilters/build_ffmpeg.sh
+++ b/src/thirdparty/LAVFilters/build_ffmpeg.sh
@@ -72,13 +72,6 @@ configure() {
--enable-muxer=spdif \
--disable-bsfs \
--enable-bsf=extract_extradata,vp9_superframe \
- --disable-hwaccels \
- --enable-hwaccel=h264_dxva2 \
- --enable-hwaccel=hevc_dxva2 \
- --enable-hwaccel=vc1_dxva2 \
- --enable-hwaccel=wmv3_dxva2 \
- --enable-hwaccel=mpeg2_dxva2 \
- --enable-hwaccel=vp9_dxva2 \
--disable-cuda \
--disable-cuvid \
--disable-nvenc \
@@ -109,7 +102,7 @@ configure() {
EXTRA_LDFLAGS="${EXTRA_LDFLAGS} -L../../../thirdparty/lib32"
fi
- sh ../../../ffmpeg/configure --extra-ldflags="${EXTRA_LDFLAGS}" --extra-cflags="${EXTRA_CFLAGS}" ${OPTIONS}
+ sh ../../../ffmpeg/configure --x86asmexe=yasm --extra-ldflags="${EXTRA_LDFLAGS}" --extra-cflags="${EXTRA_CFLAGS}" ${OPTIONS}
}
build() {