summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-multimedia/libav/libpostproc_git.bb46
1 files changed, 46 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/libav/libpostproc_git.bb b/meta/recipes-multimedia/libav/libpostproc_git.bb
new file mode 100644
index 0000000000..88891db09b
--- /dev/null
+++ b/meta/recipes-multimedia/libav/libpostproc_git.bb
@@ -0,0 +1,46 @@
1SUMMARY = "FFmpeg derived postprocessing library"
2HOMEPAGE = "http://git.videolan.org/?p=libpostproc.git;a=summary"
3SECTION = "libs"
4DEPENDS = "libav"
5LICENSE = "GPLv2+"
6LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
7
8# because it depends on libav which has commercial flag
9LICENSE_FLAGS = "commercial"
10
11PV = "52.3.0+git${SRCPV}"
12
13SRCREV = "811db3b957dfde24aef2d0f82e297e5bf552d873"
14SRC_URI = "git://github.com/lu-zero/postproc;protocol=https"
15
16S = "${WORKDIR}/git"
17
18inherit autotools lib_package pkgconfig
19
20FULL_OPTIMIZATION_armv7a = "-fexpensive-optimizations -fomit-frame-pointer -O4 -ffast-math"
21BUILD_OPTIMIZATION = "${FULL_OPTIMIZATION}"
22
23EXTRA_FFCONF_armv7a = "--cpu=cortex-a8"
24EXTRA_FFCONF ?= ""
25
26EXTRA_OECONF = " \
27 --enable-shared \
28 --enable-pthreads \
29 --enable-gpl \
30 --enable-postproc \
31 \
32 --cross-prefix=${TARGET_PREFIX} \
33 --prefix=${prefix} \
34 \
35 --arch=${TARGET_ARCH} \
36 --target-os="linux" \
37 --enable-cross-compile \
38 --extra-cflags="${TARGET_CFLAGS} ${HOST_CC_ARCH}${TOOLCHAIN_OPTIONS}" \
39 --extra-ldflags="${TARGET_LDFLAGS}" \
40 --sysroot="${STAGING_DIR_TARGET}" \
41 ${EXTRA_FFCONF} \
42"
43
44do_configure() {
45 ${S}/configure ${EXTRA_OECONF}
46}