3 # Determine whether to recommend/use the HEAD revision of FFmpeg (unreleased)
4 # or a specific revision based upon whether the last digit of our version
5 # is even or odd. An odd MLT version number always represents unreleased.
7 micro_version=$(echo $version | cut -d . -f 3)
8 odd_version=$(($micro_version % 2))
9 [ "$odd_version" -eq "1" ] && svn_rev="HEAD"
14 FFMPEG/avformat options:
16 --avformat-svn - Obtain ffmpeg from Subversion
17 --avformat-svn-extra - Add extra configure options for --avformat-svn
18 --avformat-shared=path - Link against a shared installation of ffmpeg (default)
19 --avformat-static=path - Link against a static ffmpeg dev tree
20 --avformat-ldextra=libs - Provide additional libs to link with
21 --avformat-suffix=suff - Specify a custom suffix for an ffmpeg shared build
22 --avformat-swscale - Use ffmpeg libswcale instead of img_convert
23 --avformat-no-codecs - Disable the producer and consumer to avoid the FFmpeg codecs
24 --avformat-no-filters - Disable the filters to make a codecs+muxers-only plugin
26 NOTE: The recommended version of FFmpeg is SVN-r$svn_rev.
46 [ -d /usr/lib/lib64 ] && export LIBDIR=lib64 || export LIBDIR=lib
56 export shared_ffmpeg=$(pkg-config --variable=prefix libavformat)
59 export svn_ffmpeg_extra=
60 export avformat_suffix=
68 --avformat-static=* ) static_ffmpeg="${i#--avformat-static=}" ;;
69 --avformat-shared=* ) shared_ffmpeg="${i#--avformat-shared=}" ;;
70 --avformat-ldextra=* ) extra_libs="${i#--avformat-ldextra=}" ;;
71 --avformat-svn ) svn_ffmpeg=true ;;
72 --avformat-svn-extra=* ) svn_ffmpeg_extra="${i#--avformat-svn-extra=}" ;;
73 --avformat-cvs ) svn_ffmpeg=true ;;
74 --avformat-suffix=* ) avformat_suffix="${i#--avformat-suffix=}" ;;
75 --avformat-swscale ) swscale=true ;;
76 --avformat-swscaler ) swscale=true ;;
77 --avformat-no-codecs ) codecs=false ;;
78 --avformat-no-filters ) filters=false ;;
82 if [ "$svn_ffmpeg" != "" ]
84 if [ "$gpl" = "true" ]
86 enable_gpl="--enable-gpl"
87 if [ "$swscale" != "" ]
89 [ "$svn_rev" -eq "17887" ] && enable_swscale="--enable-swscale"
90 echo "SWSCALE=1" >> config.mak
92 elif [ "$swscale" != "" ]
95 echo "ERROR ERROR ERROR ERROR ERROR ERROR"
96 echo "--enable-gpl is required to use --avformat-swscale with --avformat-svn!"
103 echo "Checking out ffmpeg/avformat revision $svn_rev - no password required"
105 if [ "$svn_rev" -eq "17887" ]; then
106 svn checkout -r $svn_rev svn://svn.mplayerhq.hu/ffmpeg/branches/0.5 ffmpeg
108 svn checkout -r $svn_rev svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg
111 [ -d "ffmpeg" ] && ( cd ffmpeg ; ./configure $enable_gpl $enable_swscale $svn_ffmpeg_extra )
112 #[ ! -f "ffmpeg/ffmpeg.patch" ] && ( cd ffmpeg ; cp ../ffmpeg.patch . ; patch -p0 < ffmpeg.patch )
113 echo "CFLAGS+=-I`pwd`/ffmpeg -I`pwd`/ffmpeg/libavformat -I`pwd`/ffmpeg/libavcodec -I`pwd`/ffmpeg/libavutil -I`pwd`/ffmpeg/libavdevice -I`pwd`/ffmpeg/libswscale" >> config.mak
114 echo "LDFLAGS+=-L`pwd`/ffmpeg/libavformat -L`pwd`/ffmpeg/libavcodec -L`pwd`/ffmpeg/libavutil -L`pwd`/ffmpeg/libavdevice -L`pwd`/ffmpeg/libswscale" >> config.mak
115 [ $targetos = "Darwin" ] &&
116 echo "LDFLAGS+=-single_module" >> config.mak
117 echo "LOCAL_FFMPEG=1" >> config.mak
118 echo "LDFLAGS+=-Wl,-Bsymbolic" >> config.mak
119 extra_libs="$extra_libs -lz -lbz2"
120 elif [ "$static_ffmpeg" != "" ]
122 if [ -d "$static_ffmpeg" ]
124 echo "CFLAGS+=-I$static_ffmpeg/libavformat -I$static_ffmpeg/libavcodec -I$static_ffmpeg/libavutil -I$static_ffmpeg/libavdevice" >> config.mak
125 echo "LDFLAGS+=-L$static_ffmpeg/libavformat -L$static_ffmpeg/libavcodec -L$static_ffmpeg/libavutil -L$static_ffmpeg/libavdevice" >> config.mak
126 [ $targetos = "Darwin" ] &&
127 echo "LDFLAGS+=-single_module" >> config.mak
128 if [ "$swscale" != "" ]
130 echo "CFLAGS+=-I$static_ffmpeg/libswscale" >> config.mak
131 echo "LDFLAGS+=-L$static_ffmpeg/libswscale" >> config.mak
132 echo "SWSCALE=1" >> config.mak
134 echo "LDFLAGS+=-Wl,-Bsymbolic" >> config.mak
135 extra_libs="$extra_libs -lz"
137 echo "avformat: Invalid path specified: $static_ffmpeg"
138 touch ../disable-avformat
141 elif [ "$shared_ffmpeg" != "" ]
143 echo "PREFIX=$shared_ffmpeg" >> config.mak
144 echo "CFLAGS+=$(pkg-config --cflags libavformat) $TMP_CFLAGS" >> config.mak
145 echo "LDFLAGS+=$(pkg-config --libs libavformat)" >> config.mak
146 [ -d "$shared_ffmpeg/include/ffmpeg/libavformat" ] &&
147 echo "CFLAGS+=-I$shared_ffmpeg/include/ffmpeg/libavformat -I$shared_ffmpeg/include/ffmpeg/libavcodec" >> config.mak
148 [ -d "$shared_ffmpeg/include/libavformat" ] &&
149 echo "CFLAGS+=-I$shared_ffmpeg/include/libavformat -I$shared_ffmpeg/include/libavcodec" >> config.mak
150 if [ "$swscale" != "" ]
152 [ -d "$shared_ffmpeg/include/ffmpeg/libswscale" ] &&
153 echo "CFLAGS+=-I$shared_ffmpeg/include/ffmpeg/libswscale" >> config.mak
154 [ -d "$shared_ffmpeg/include/libswscale" ] &&
155 echo "CFLAGS+=-I$shared_ffmpeg/include/libswscale" >> config.mak
156 echo "SWSCALE=1" >> config.mak
159 echo "avformat: No build environment found. "
160 echo " Try configuring mlt with --avformat-svn."
161 touch ../disable-avformat
165 echo "EXTRA_LIBS=$extra_libs" >> config.mak
166 echo "AVFORMAT_SUFFIX=$avformat_suffix" >> config.mak
167 [ "$codecs" = "true" ] && echo "CODECS=1" >> config.mak
168 [ "$filters" = "true" ] && echo "FILTERS=1" >> config.mak