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

build_ffmpeg.sh - github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c338519c6479d90e35645f6eac508acc395ee04 (plain)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#!/bin/sh

if [ "${1}" == "x64" ]; then
  arch=x86_64
  archdir=x64
else
  arch=x86
  archdir=Win32
fi

make_dirs() (
  if [ ! -d bin_${archdir}/lib ]; then
    mkdir -p bin_${archdir}/lib
  fi

  if [ ! -d bin_${archdir}d/lib ]; then
    mkdir -p bin_${archdir}d/lib
  fi
)

copy_libs() (
  cp lib*/*-lav-*.dll ../bin_${archdir}
  cp lib*/*.lib ../bin_${archdir}/lib
  cp lib*/*-lav-*.dll ../bin_${archdir}d
  cp lib*/*.lib ../bin_${archdir}d/lib
)

clean() (
  make distclean > /dev/null 2>&1
)

configure() (
  OPTIONS="
    --enable-shared \
    --enable-gpl \
    --enable-version3 \
    --enable-w32threads \
    --enable-runtime-cpudetect \
    --enable-demuxers \
    --disable-demuxer=matroska \
    --disable-filters \
    --enable-filter=yadif \
    --enable-filter=scale \
    --disable-protocols \
    --enable-protocol=file \
    --enable-protocol=mmsh \
    --enable-protocol=mmst \
    --enable-protocol=rtp \
    --enable-protocol=http \
    --disable-muxers \
    --enable-muxer=spdif \
    --enable-dxva2 \
    --disable-hwaccels \
    --enable-hwaccel=h264_dxva2 \
    --enable-hwaccel=vc1_dxva2 \
    --enable-hwaccel=wmv3_dxva2 \
    --enable-hwaccel=mpeg2_dxva2 \
    --enable-libspeex \
    --enable-libopencore-amrnb \
    --enable-libopencore-amrwb \
    --enable-libopus \
    --enable-avresample \
    --disable-avdevice \
    --disable-postproc \
    --disable-swresample \
    --disable-static \
    --disable-debug \
    --disable-encoders \
    --disable-bsfs \
    --disable-devices \
    --disable-ffplay \
    --disable-ffserver \
    --disable-ffmpeg \
    --disable-ffprobe \
    --build-suffix=-lav \
    --arch=${arch}"

  EXTRA_CFLAGS="-D_WIN32_WINNT=0x0502 -DWINVER=0x0502 -I../thirdparty/include -idirafter../common/includes/dxva2"
  EXTRA_LDFLAGS=""
  if [ "${arch}" == "x86_64" ]; then
    OPTIONS="${OPTIONS} --enable-cross-compile --cross-prefix=x86_64-w64-mingw32- --target-os=mingw32"
    EXTRA_LDFLAGS="${EXTRA_LDFLAGS} -L../thirdparty/lib64"
  else
    OPTIONS="${OPTIONS} --cpu=i686"
    EXTRA_CFLAGS="${EXTRA_CFLAGS} -mmmx -msse -mfpmath=sse"
    EXTRA_LDFLAGS="${EXTRA_LDFLAGS} -L../thirdparty/lib32"
  fi

  sh configure --extra-ldflags="${EXTRA_LDFLAGS}" --extra-cflags="${EXTRA_CFLAGS}" ${OPTIONS}
)

build() (
  make -j8
)

echo Building ffmpeg in GCC ${arch} Release config...

make_dirs

cd ffmpeg

clean

## run configure, redirect to file because of a msys bug
configure > config.out 2>&1
CONFIGRETVAL=$?

## show configure output
cat config.out

## Only if configure succeeded, actually build
if [ ${CONFIGRETVAL} -eq 0 ]; then
  build &&
  copy_libs
fi

cd ..