[packages] ffmpeg: disable ASM for all targets, bump revision number
[openwrt/svn-archive/archive.git] / multimedia / ffmpeg / Makefile
1 #
2 # Copyright (C) 2006-2011 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=ffmpeg
11 PKG_VERSION:=0.8.2
12 PKG_RELEASE:=4
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=http://ffmpeg.org/releases/
16 PKG_MD5SUM:=967d481c98161582d149aced6e3b2f31
17
18 FFMPEG_CUSTOM_ENCODERS:= \
19 ac3 \
20 jpegls \
21 mpeg1video \
22 mpeg2video \
23 mpeg4 \
24 pcm_s16be \
25 pcm_s16le \
26 png \
27 vorbis \
28 zlib \
29
30 FFMPEG_CUSTOM_DECODERS:= \
31 aac \
32 ac3 \
33 atrac3 \
34 flac \
35 gif \
36 h264 \
37 jpegls \
38 mp2 \
39 mp3 \
40 mpeg1video \
41 mpeg2video \
42 mpeg4 \
43 mpegvideo \
44 pcm_s16be \
45 pcm_s16le \
46 png \
47 vorbis \
48 wmav1 \
49 wmav2 \
50 zlib \
51
52 FFMPEG_CUSTOM_MUXERS:= \
53 ac3 \
54 ffm \
55 h264 \
56 mp3 \
57 mp4 \
58 mpeg1video \
59 mpeg2video \
60 mpegts \
61 ogg \
62 rtp \
63
64 FFMPEG_CUSTOM_DEMUXERS:= \
65 aac \
66 ac3 \
67 avi \
68 flac \
69 ffm \
70 h264 \
71 matroska \
72 mov \
73 mp3 \
74 mpegps \
75 mpegts \
76 mpegvideo \
77 ogg \
78 rm \
79 rtsp \
80 sdp \
81 v4l2 \
82
83 FFMPEG_CUSTOM_PARSERS:= \
84 aac \
85 ac3 \
86 h264 \
87 mpegaudio \
88 mpeg4video \
89 mpegvideo \
90
91 FFMPEG_CUSTOM_PROTOCOLS:= \
92 file http pipe rtp tcp udp
93
94 FFMPEG_MINI_ENCODERS:= \
95
96 FFMPEG_MINI_DECODERS:= \
97 aac \
98 ac3 \
99 atrac3 \
100 flac \
101 h263 \
102 h264 \
103 jpegls \
104 mp3 \
105 mpeg1video \
106 mpeg2video \
107 mpeg4 \
108 mpegvideo \
109 png \
110 wmav1 \
111 wmav2 \
112
113 FFMPEG_MINI_MUXERS:= \
114 ffm \
115
116 FFMPEG_MINI_DEMUXERS := \
117 aac \
118 ac3 \
119 asf \
120 avi \
121 ffm \
122 flac \
123 h264 \
124 matroska \
125 mov \
126 mp3 \
127 mpegts \
128 mpegvideo \
129 rtsp \
130
131 FFMPEG_MINI_PARSERS:= \
132 ac3 \
133 flac \
134 h263 \
135 h264 \
136 mpeg4video \
137 mpegaudio \
138
139 FFMPEG_MINI_PROTOCOLS := \
140 file http rtp tcp udp \
141
142 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
143
144 PKG_CONFIG_DEPENDS:= \
145 $(patsubst %,CONFIG_FFMPEG_CUSTOM_ENCODER_%,$(FFMPEG_CUSTOM_ENCODERS)) \
146 $(patsubst %,CONFIG_FFMPEG_CUSTOM_DECODER_%,$(FFMPEG_CUSTOM_DECODERS)) \
147 $(patsubst %,CONFIG_FFMPEG_CUSTOM_MUXER_%,$(FFMPEG_CUSTOM_DEMUXERS)) \
148 $(patsubst %,CONFIG_FFMPEG_CUSTOM_DEMUXER_%,$(FFMPEG_CUSTOM_DEMUXERS)) \
149 $(patsubst %,CONFIG_FFMPEG_CUSTOM_PARSER_%,$(FFMPEG_CUSTOM_PARSERS)) \
150 $(patsubst %,CONFIG_FFMPEG_CUSTOM_PROTOCOL_%,$(FFMPEG_CUSTOM_PROTOCOLS))
151
152 include $(INCLUDE_DIR)/package.mk
153
154 define Package/ffmpeg/Default
155 TITLE:=FFmpeg
156 URL:=http://ffmpeg.mplayerhq.hu/
157 endef
158
159 define Package/ffmpeg/Default/description
160 FFmpeg is a a software package that can record, convert and stream digital
161 audio and video in numerous formats.
162 endef
163
164
165 define Package/ffmpeg
166 $(call Package/ffmpeg/Default)
167 SECTION:=multimedia
168 CATEGORY:=Multimedia
169 TITLE+= program
170 DEPENDS+= +libpthread +libffmpeg
171 VARIANT:=full
172 endef
173
174 define Package/ffmpeg/description
175 $(call Package/ffmpeg/Default/description)
176 .
177 This package contains the FFmpeg command line tool.
178 endef
179
180
181 define Package/ffprobe
182 $(call Package/ffmpeg/Default)
183 SECTION:=multimedia
184 CATEGORY:=Multimedia
185 TITLE+= CLI media identifier
186 DEPENDS+= +libffmpeg
187 VARIANT:=full
188 endef
189
190 define Package/ffprobe/description
191 $(call Package/ffmpeg/Default/description)
192 .
193 This package contains the FFprobe command line tool.
194 endef
195
196
197 define Package/ffserver
198 $(call Package/ffserver/Default)
199 SECTION:=multimedia
200 CATEGORY:=Multimedia
201 TITLE+= streaming server
202 DEPENDS+= +libpthread +libffmpeg
203 VARIANT:=full
204 endef
205
206 define Package/ffserver/description
207 $(call Package/ffmpeg/Default/description)
208 .
209 This package contains the FFmpeg streaming server.
210 endef
211
212
213 define Package/libffmpeg/Default
214 $(call Package/ffmpeg/Default)
215 SECTION:=libs
216 CATEGORY:=Libraries
217 TITLE+= libraries
218 DEPENDS+= +libpthread +zlib
219 PROVIDES:= libffmpeg
220 endef
221
222
223 define Package/libffmpeg-custom
224 $(call Package/libffmpeg/Default)
225 TITLE+= (mini)
226 DEPENDS+= @DEVEL
227 VARIANT:=custom
228 MENU:=1
229 endef
230
231 define Package/libffmpeg-custom/config
232 source "$(SOURCE)/Config.in"
233 endef
234
235 define Package/libffmpeg-custom/description
236 $(call Package/ffmpeg/Default/description)
237 .
238 This package contains customized FFmpeg shared libraries.
239 endef
240
241
242 define Package/libffmpeg-full
243 $(call Package/libffmpeg/Default)
244 TITLE+= (full)
245 DEPENDS+= @BUILD_PATENTED +alsa-lib
246 VARIANT:=full
247 endef
248
249 define Package/libffmpeg-full/description
250 $(call Package/ffmpeg/Default/description)
251 .
252 This package contains full-featured FFmpeg shared libraries.
253 endef
254
255
256 define Package/libffmpeg-mini
257 $(call Package/libffmpeg/Default)
258 TITLE+= (mini)
259 DEPENDS+= @BUILD_PATENTED
260 VARIANT:=mini
261 endef
262
263 define Package/libffmpeg-mini/description
264 $(call Package/ffmpeg/Default/description)
265 .
266 This package contains minimal-featured FFmpeg shared libraries.
267 endef
268
269
270 FFMPEG_CONFIGURE:= \
271 CFLAGS="$(TARGET_CFLAGS) $(TARGET_CPPFLAGS) $(FPIC)" \
272 LDFLAGS="$(TARGET_LDFLAGS)" \
273 PKG_CONFIG="pkg-config" \
274 ./configure \
275 --enable-cross-compile \
276 --cross-prefix="$(TARGET_CROSS)" \
277 --arch="$(ARCH)" \
278 --target-os=linux \
279 --prefix="/usr" \
280 --enable-shared \
281 --enable-static \
282 --disable-debug \
283 \
284 --enable-gpl \
285 --enable-version3 \
286 \
287 --disable-asm \
288 --disable-doc \
289 --disable-dxva2 \
290 --enable-pthreads \
291 --disable-optimizations \
292 --enable-small \
293 --disable-stripping \
294 --enable-zlib \
295
296 ifeq ($(BUILD_VARIANT),custom)
297
298 FFMPEG_ENABLE= \
299 $(foreach c, $(2), \
300 $(if $($(3)_$(c)),--enable-$(1)="$(c)") \
301 )
302
303 FFMPEG_CONFIGURE+= \
304 --disable-ffmpeg \
305 --disable-ffplay \
306 --disable-ffprobe \
307 --disable-ffserver \
308 --disable-avfilter \
309 --disable-postproc \
310 --disable-swscale \
311 --disable-everything \
312 $(call FFMPEG_ENABLE,encoder,$(FFMPEG_CUSTOM_ENCODERS),CONFIG_FFMPEG_ENCODER) \
313 $(call FFMPEG_ENABLE,decoder,$(FFMPEG_CUSTOM_DECODERS),CONFIG_FFMPEG_DECODER) \
314 $(call FFMPEG_ENABLE,muxer,$(FFMPEG_CUSTOM_MUXERS),CONFIG_FFMPEG_MUXER) \
315 $(call FFMPEG_ENABLE,demuxer,$(FFMPEG_CUSTOM_DEMUXERS),CONFIG_FFMPEG_DEMUXER) \
316 $(call FFMPEG_ENABLE,parser,$(FFMPEG_CUSTOM_PARSERS),CONFIG_FFMPEG_PARSER) \
317 $(call FFMPEG_ENABLE,protocol,$(FFMPEG_CUSTOM_PROTOCOLS),CONFIG_FFMPEG_PROTOCOL) \
318
319 endif
320
321 ifeq ($(BUILD_VARIANT),mini)
322
323 FFMPEG_ENABLE= \
324 $(foreach c, $(2), \
325 --enable-$(1)="$(c)" \
326 )
327
328 FFMPEG_CONFIGURE+= \
329 --disable-ffmpeg \
330 --disable-ffplay \
331 --disable-ffprobe \
332 --disable-ffserver \
333 --disable-avfilter \
334 --disable-postproc \
335 --disable-swscale \
336 --disable-everything \
337 $(call FFMPEG_ENABLE,encoder,$(FFMPEG_MINI_ENCODERS)) \
338 $(call FFMPEG_ENABLE,decoder,$(FFMPEG_MINI_DECODERS)) \
339 $(call FFMPEG_ENABLE,muxer,$(FFMPEG_MINI_MUXERS)) \
340 $(call FFMPEG_ENABLE,demuxer,$(FFMPEG_MINI_DEMUXERS)) \
341 $(call FFMPEG_ENABLE,parser,$(FFMPEG_MINI_PARSERS)) \
342 $(call FFMPEG_ENABLE,protocol,$(FFMPEG_MINI_PROTOCOLS)) \
343
344 endif
345
346 ifneq ($(CONFIG_TARGET_x86),)
347 TARGET_CFLAGS += -fomit-frame-pointer
348 endif
349
350 define Build/Configure
351 ( cd $(PKG_BUILD_DIR); $(FFMPEG_CONFIGURE) )
352 endef
353
354 define Build/Compile
355 $(MAKE) -C $(PKG_BUILD_DIR) \
356 DESTDIR="$(PKG_INSTALL_DIR)" \
357 all install
358 endef
359
360 ifeq ($(BUILD_VARIANT),full)
361 define Build/InstallDev
362 $(INSTALL_DIR) $(1)/usr/include
363 $(CP) $(PKG_INSTALL_DIR)/usr/include/lib{avcodec,avdevice,avfilter,avformat,avutil,postproc,swscale} $(1)/usr/include/
364 $(INSTALL_DIR) $(1)/usr/lib
365 $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{avcodec,avdevice,avfilter,avformat,avutil,postproc,swscale}.{a,so*} $(1)/usr/lib/
366 $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
367 $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/lib{avcodec,avdevice,avfilter,avformat,avutil,postproc,swscale}.pc $(1)/usr/lib/pkgconfig/
368 endef
369 endif
370
371 define Package/ffmpeg/install
372 $(INSTALL_DIR) $(1)/usr/bin
373 $(CP) $(PKG_INSTALL_DIR)/usr/bin/ffmpeg $(1)/usr/bin/
374 endef
375
376 define Package/ffprobe/install
377 $(INSTALL_DIR) $(1)/usr/bin
378 $(CP) $(PKG_INSTALL_DIR)/usr/bin/ffprobe $(1)/usr/bin/
379 endef
380
381 define Package/ffserver/install
382 $(INSTALL_DIR) $(1)/usr/bin
383 $(CP) $(PKG_INSTALL_DIR)/usr/bin/ffserver $(1)/usr/bin/
384 endef
385
386 define Package/libffmpeg-custom/install
387 $(INSTALL_DIR) $(1)/usr/lib
388 $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{avcodec,avdevice,avformat,avutil}.so.* $(1)/usr/lib/
389 endef
390
391 define Package/libffmpeg-full/install
392 $(INSTALL_DIR) $(1)/usr/lib
393 $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{avcodec,avdevice,avfilter,avformat,avutil,postproc,swscale}.so.* $(1)/usr/lib/
394 endef
395
396 define Package/libffmpeg-mini/install
397 $(INSTALL_DIR) $(1)/usr/lib
398 $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{avcodec,avdevice,avformat,avutil}.so.* $(1)/usr/lib/
399 endef
400
401 $(eval $(call BuildPackage,ffmpeg))
402 $(eval $(call BuildPackage,ffprobe))
403 $(eval $(call BuildPackage,ffserver))
404 $(eval $(call BuildPackage,libffmpeg-custom))
405 $(eval $(call BuildPackage,libffmpeg-full))
406 $(eval $(call BuildPackage,libffmpeg-mini))