comparison src/ffmpeg.mk @ 4063:66b5ee0963d7

ffmpeg: update to 2.8.2 * src/ffmpeg.mk: update version, checksum, configure options.
author John D
date Sun, 29 Nov 2015 13:31:04 -0500
parents c4a341e3e014
children ced655daa7ad
comparison
equal deleted inserted replaced
4062:57bc5d4ff660 4063:66b5ee0963d7
1 # This file is part of MXE. 1 # This file is part of MXE.
2 # See index.html for further information. 2 # See index.html for further information.
3 3
4 PKG := ffmpeg 4 PKG := ffmpeg
5 $(PKG)_IGNORE := 5 $(PKG)_IGNORE :=
6 $(PKG)_VERSION := 2.7.2 6 $(PKG)_VERSION := 2.8.2
7 $(PKG)_CHECKSUM := b8175a9a729fc4bdbb3c196ffe84a2fca7977ff8 7 $(PKG)_CHECKSUM := 1952aeb9ec3f569514d8db4f30c195b765392639
8 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) 8 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
9 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.bz2 9 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.bz2
10 $(PKG)_URL := http://www.ffmpeg.org/releases/$($(PKG)_FILE) 10 $(PKG)_URL := http://www.ffmpeg.org/releases/$($(PKG)_FILE)
11 $(PKG)_URL_2 := http://launchpad.net/ffmpeg/main/$($(PKG)_VERSION)/+download/$($(PKG)_FILE) 11 $(PKG)_URL_2 := http://launchpad.net/ffmpeg/main/$($(PKG)_VERSION)/+download/$($(PKG)_FILE)
12 $(PKG)_DEPS := bzip2 lame libvpx opencore-amr sdl speex theora vorbis x264 xvidcore zlib 12 $(PKG)_DEPS := bzip2 gnutls lame libvpx opencore-amr sdl speex theora vorbis x264 xvidcore zlib
13 13
14 $(PKG)_CONFIG_OPTS := 14 $(PKG)_CONFIG_OPTS :=
15 15
16 define $(PKG)_UPDATE 16 define $(PKG)_UPDATE
17 $(WGET) -q -O- 'http://www.ffmpeg.org/download.html' | \ 17 $(WGET) -q -O- 'http://www.ffmpeg.org/download.html' | \
27 --enable-cross-compile \ 27 --enable-cross-compile \
28 --target-os=mingw32 \ 28 --target-os=mingw32 \
29 --arch=$(firstword $(subst -, ,$(TARGET))) \ 29 --arch=$(firstword $(subst -, ,$(TARGET))) \
30 --prefix='$(HOST_PREFIX)' \ 30 --prefix='$(HOST_PREFIX)' \
31 $(ENABLE_SHARED_OR_STATIC) \ 31 $(ENABLE_SHARED_OR_STATIC) \
32 --yasmexe='$(BUILD_TOOLS_PREFIX)/bin/yasm' \
32 --extra-libs='-mconsole' \ 33 --extra-libs='-mconsole' \
33 --disable-debug \ 34 --disable-debug \
34 --disable-doc \ 35 --disable-doc \
35 --enable-memalign-hack \ 36 --enable-memalign-hack \
37 --enable-avresample \
36 --enable-gpl \ 38 --enable-gpl \
37 --enable-version3 \ 39 --enable-version3 \
38 --disable-nonfree \
39 --disable-pthreads \ 40 --disable-pthreads \
40 --enable-w32threads \ 41 --enable-w32threads \
41 --enable-avisynth \ 42 --enable-avisynth \
43 --enable-gnutls \
42 --enable-libspeex \ 44 --enable-libspeex \
43 --enable-libtheora \ 45 --enable-libtheora \
44 --enable-libvorbis \ 46 --enable-libvorbis \
45 --enable-libmp3lame \ 47 --enable-libmp3lame \
46 --enable-libxvid \ 48 --enable-libxvid \