blob: 363101e1a4949e7756981947335cb88f6ab1c8a8 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "Libav-based GStreamer 1.x plugin"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05002HOMEPAGE = "http://gstreamer.freedesktop.org/"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05003SECTION = "multimedia"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05004
Patrick Williamsc124f4f2015-09-15 14:41:29 -05005LICENSE = "GPLv2+ & LGPLv2+ & ( (GPLv2+ & LGPLv2.1+) | (GPLv3+ & LGPLv3+) )"
6LICENSE_FLAGS = "commercial"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05007
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05008DEPENDS = "gstreamer1.0 gstreamer1.0-plugins-base zlib bzip2 xz"
9
10inherit autotools pkgconfig upstream-version-is-even
Patrick Williamsc124f4f2015-09-15 14:41:29 -050011
12# CAUTION: Using the system libav is not recommended. Since the libav API is changing all the time,
13# compilation errors (and other, more subtle bugs) can happen. It is usually better to rely on the
14# libav copy included in the gst-libav package.
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050015PACKAGECONFIG ??= "orc yasm"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050016
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050017PACKAGECONFIG[gpl] = "--enable-gpl,--disable-gpl,"
18PACKAGECONFIG[libav] = "--with-system-libav,,libav"
19PACKAGECONFIG[orc] = "--enable-orc,--disable-orc,orc"
20PACKAGECONFIG[yasm] = "--enable-yasm,--disable-yasm,yasm-native"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050021
22GSTREAMER_1_0_DEBUG ?= "--disable-debug"
23
24LIBAV_EXTRA_CONFIGURE = "--with-libav-extra-configure"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050025
26LIBAV_EXTRA_CONFIGURE_COMMON_ARG = "--target-os=linux \
27 --cc='${CC}' --as='${CC}' --ld='${CC}' --nm='${NM}' --ar='${AR}' \
28 --ranlib='${RANLIB}' \
29 ${GSTREAMER_1_0_DEBUG} \
30 --cross-prefix='${HOST_PREFIX}'"
31
Patrick Williamsc124f4f2015-09-15 14:41:29 -050032LIBAV_EXTRA_CONFIGURE_COMMON = \
33'${LIBAV_EXTRA_CONFIGURE}="${LIBAV_EXTRA_CONFIGURE_COMMON_ARG}"'
34
35EXTRA_OECONF = "${LIBAV_EXTRA_CONFIGURE_COMMON}"
36
37FILES_${PN} += "${libdir}/gstreamer-1.0/*.so"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050038FILES_${PN}-dev += "${libdir}/gstreamer-1.0/*.la"
39FILES_${PN}-staticdev += "${libdir}/gstreamer-1.0/*.a"
40
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050041# http://errors.yoctoproject.org/Errors/Details/20493/
42ARM_INSTRUCTION_SET_armv4 = "arm"
43ARM_INSTRUCTION_SET_armv5 = "arm"
44
45# ffmpeg/libav disables PIC on some platforms (e.g. x86-32)
46INSANE_SKIP_${PN} = "textrel"