summaryrefslogtreecommitdiff
path: root/meta/recipes-multimedia/gstreamer
Commit message (Collapse)AuthorAgeFilesLines
* meta: Replace bb.data.expand(xxx, d) -> d.expand(xxx)Richard Purdie2012-03-051-4/+4
| | | | | | | | sed \ -e 's:bb.data.\(expand([^,()]*\), *\([^) ]*\) *):\2.\1):g' \ -i `grep -ril bb.data.expand *` Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta: Convert getVar/getVarFlag(xxx, 1) -> (xxx, True)Richard Purdie2012-03-051-2/+2
| | | | | | | | | | | | Using "1" with getVar is bad coding style and "True" is preferred. This patch is a sed over the meta directory of the form: sed \ -e 's:\(\.getVar([^,()]*, \)1 *):\1True):g' \ -e 's:\(\.getVarFlag([^,()]*, [^,()]*, \)1 *):\1True):g' \ -i `grep -ril getVar *` Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gst-plugins-base: depend on libx11 and libxv conditionallyAndreas Oberritter2012-02-231-1/+2
| | | | | | | | | * gst-plugins-base currently doesn't build if x11 is unavailable, due to unconditional dependencies on libx11 and libxv. However, they are not required to build gst-plugins-base. Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
* recipes: bump PR to rebuild .la files without libz.laMartin Jansa2012-02-215-5/+5
| | | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* zlib: Upgrade 1.2.5 -> 1.2.6Khem Raj2012-02-102-1/+3
| | | | | | | | | | | | | | | | | | | | | | Dont use autotools, it really not so autoconf like. the configure script gets updated with every release of zlib and we overwrite that. Instead use the upstream provided configure copyright year was changed in zlib.h which caused change in LIC_FILE_CHECKSUM fix.inverted.LFS.logic.patch is already applied upstream so drop it Drop the configure.ac and Makefile.am scripts since we do not autoreconf anymore and do not inherit autotools anymore Bump PR for depending recipes so a rebuild it ensues so that they dont depend on .la anymore and add missing dependencies discovered during incremental build Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gstreamer: refactor packages for staticdevSaul Wold2012-01-243-7/+9
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* Add LICENSE_FLAGS to packages mentioned in COMMERCIAL_LICENSETom Zanussi2012-01-243-0/+3
| | | | | | | | | | | | | | | | Per-recipe LICENSE_FLAGS replace the global COMMERCIAL_LICENSE list; add LICENSE_FLAGS varables to each the recipes mentioned in that list: - lame - gst-fluendo-mp3 - gst-openmax - gst-plugins-ugly - libmad - libomxil - mpeg2dec - qmmp Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
* gst-openmax: refactor packages for staticdevSaul Wold2012-01-191-2/+3
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* gst-ffmpeg: upgrade to 0.10.13Shane Wang2012-01-023-7/+32
| | | | | | | | | This patch is to upgrade gst-ffmpeg to 0.10.13. Some license files are changed because the folder "ffmpeg" disappears, and those license files under "libav" are the same. LICENSE is different because the word "ffmpeg" is changed into "libav" under the libav folder. Again, gst-ffmpeg tar ball contains library libav itself. So the configure needs to disable yasm for x86. Signed-off-by: Shane Wang <shane.wang@intel.com>
* gst-fluendo-mpegdemux: upgrade to 0.10.69Shane Wang2012-01-021-2/+2
| | | | Signed-off-by: Shane Wang <shane.wang@intel.com>
* gst-fluendo-mp3: upgrade to 0.10.16Shane Wang2012-01-021-2/+2
| | | | Signed-off-by: Shane Wang <shane.wang@intel.com>
* gst-plugins-bad: upgrade to 0.10.22Shane Wang2012-01-021-4/+3
| | | | | | | This patch is to upgrade gst-plugins-bad to 0.10.22. One of the license files is removed because the file doesn't exist any more. Signed-off-by: Shane Wang <shane.wang@intel.com>
* gst-plugins-ugly: upgrade to 0.10.18Shane Wang2012-01-021-3/+3
| | | | Signed-off-by: Shane Wang <shane.wang@intel.com>
* gst-fluendo.inc: remove unneccessary hackNitin A Kamble2011-12-121-4/+0
| | | | | | | | | | This fixes bug: [YOCTO #1403] the custom definition of CC was causing build isuses with x32 toolchain. And also I found out that the hack is not neccessary anymore. the affected gst-fluendo-mpegdemux recipe builds fine without the CC hack. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
* gst-plugins-good: bump PR for gdbm SOVERSION changeMartin Jansa2011-12-011-1/+1
| | | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gst-plugins-ugly: bump PR to rebuild after libid3tag fixMartin Jansa2011-11-301-1/+1
| | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* getVar/setVar cleanupsRichard Purdie2011-11-261-3/+3
| | | | | | | Complete the bb.data.getVar/setVar replacements with accesses directly to the data store object. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* Convert to use direct access to the data store (instead of bb.data.*Var*())Richard Purdie2011-11-101-6/+6
| | | | | | | | | | | | | | | This is the result of running the following over the metadata: sed \ -e 's:bb.data.\(setVar([^,()]*,[^,()]*\), *\([^ )]*\) *):\2.\1):g' \ -e 's:bb.data.\(setVarFlag([^,()]*,[^,()]*,[^,()]*\), *\([^) ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,()]*\), *\([^(), ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,()]*,[^,()]*\), *\([^(), ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,()]*,[^,()]*\), *\([^() ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,()]*\), *\([^) ]*\) *):\2.\1):g' \ -i `grep -ril bb.data *` Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* recipes: bump PR after python upgradeMartin Jansa2011-10-311-0/+2
| | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* gst-plugins-good: correctly handle gconf schemaJoshua Lock2011-10-241-2/+4
| | | | | | | | Add the shipped gconf schema to the gconfelements package and inherit the gconf class so that schema processing is handled via post* scripts. Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gst-plugins-good: update to 0.10.30Joshua Lock2011-10-201-2/+2
| | | | Signed-off-by: Joshua Lock <josh@linux.intel.com>
* gst-plugins-good: add pulseaudio to DEPENDSPaul Eggleton2011-10-171-2/+2
| | | | | | | | This explicitly enables the pulseaudio plugin rather than it being built if pulseaudio happens to have been built first. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gst-plugins-base: update to 0.10.35Paul Eggleton2011-10-172-3/+3
| | | | | Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gstreamer: upgrade to 0.10.35Martin Jansa2011-10-105-4/+2
| | | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gst-plugins: partially sync packaging with OE .devKoen Kooi2011-08-066-20/+40
| | | | | | | | | | | | | | | | | | | | | | | | | Gst-plugins get 2 extra packages: ${PN}-apps: helper apps in ${bindir} ${PN}-meta: meta package that will drag in all plugins, libs and apps ${PN} generates And all libs are split out and run through debian style renaming if enabled. The packaging include was split out to be reused by external plugins (e.g. gst-plugin-gl, gst-fluendo-*). The new package list looks like: libgstapp-0.10-0_0.10.32-r1_armv7a.ipk libgstfft-0.10-0_0.10.32-r1_armv7a.ipk [..] gst-plugins-base-videorate_0.10.32-r1_armv7a.ipk gst-plugins-base-videoscale_0.10.32-r1_armv7a.ipk [..] gst-plugins-base-meta_0.10.32-r1_armv7a.ipk [..] gst-plugins-base-apps_0.10.32-r1_armv7a.ipk Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* Drop PRIORITY variableRichard Purdie2011-07-014-4/+0
| | | | | | | | | | | | | | As discussed on the mailing list, this variable isn't useful and if wanted would be better implemented by distros using pn-X overrides. This patch executes: find . -regex ".*\.\(bb\|inc\)$" | xargs sed -i '/^PRIORITY = ".*"$/d' against the tree removing the referenced. Thanks to Phil Blundell for the command. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gstreamer: Add missing debug files.Mark Hatle2011-06-231-2/+2
| | | | Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
* gnome-vfs: remove gnome-vfs as it is deprecated in favour of GVFS and GIOZhai Edwin2011-06-222-5/+3
| | | | | | Remove unnecessary dependency via configure option and make oprofileui use GIO Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
* gst-plugins-base: Add tremor to DEPENDSSaul Wold2011-05-241-1/+1
| | | | | | gst-plugins-base requires the libvorbisidec library which is part of tremor Signed-off-by: Saul Wold <sgw@linux.intel.com>
* gst-openmax: Add patch for GCC 4.6.0Saul Wold2011-05-182-2/+22
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* recipes: add Upstream-Status for multiple recipesDongxiao Xu2011-05-121-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | hostap: add upstream status for hostap-fw-load.patch lrzsz: add upstream status for lrzsz's patches bluez: add upstream status for bluez's patches bluez-dtl1-workaround: add upstream status for COPYING.patch libgsmd: add upstream status for gsm's patches. gypsy: add upstream status for gypsy's patch libpcap: add upstream status for libpcap's patches ppp: add upstream status for ppp's patches libtelepathy: add upstream status for libtelepathy's patches telepathy-python: add upstream status for telepahty-python's patches wireless-tools: add upstream status for wireless-tools's patches wpa-supplicant: add upstream status for wpa-supplicant zeroconf: add upstream status for zeroconf's patch glibc: add upstream status for glibc's patches dpkg: add upstream status for dpkg's patches makedevs: add upstream status for makedevs's patch opkg: add upstream status for opkg's patches opkg-utils: add upstream status for opkg-utils's patch minicom: add upstream status for minicom patches rpcbind: add upstream status for rpcbind's patch which: add upstream status for which's patch clutter-gst: add upstream status for clutter-gst's patches flac: add upstream status for flac's patches gst-ffmpeg: add upstream status for gst-ffmpeg's patch liba52: add upstream status for liba52's patch libid3tag: add upstream status for libid3tag libmusicbrainz: add upstream status for libmusicbrainz's patch pulseaudio: add upstream status for pulseaudio patches db: add upstream status for db's patch neon: add upstream status for neon's patch taglib: add upstream status for taglib's patches libetpan: add upstream status for libetpan's patch libopensync: add upstream status for libopensync's patches libopensync-plugin-evolution2: add upstream status for its patch libopensync-plugin-syncml: add upstream status for its patch libsyncml: add upstream status for libsyncml's patch empathy: add upstream status for empathy's patch wv: add upstream status for wv's patch xournal: add upstream status for xournal's patch Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* gst-fluendo-mpegdemux: upgrade to version 0.10.67Dongxiao Xu2011-04-281-2/+2
| | | | Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* Replace POKYBASE with COREBASERichard Purdie2011-04-201-2/+2
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gst-plugins-ugly: upgrade to version 0.10.17Dongxiao Xu2011-04-181-0/+3
| | | | Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* gst-plugins-bad: upgrade to version 0.10.21Dongxiao Xu2011-04-181-3/+3
| | | | Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* gst-plugins-good: upgrade to version 0.10.28Dongxiao Xu2011-04-181-3/+3
| | | | Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* gst-plugins-base: upgrade to version 0.10.32Dongxiao Xu2011-04-182-3/+5
| | | | Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* gstreamer: upgrade to vesion 0.10.32Dongxiao Xu2011-04-185-2/+6
| | | | Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* gst-plugins-good: add dependency on libsoup-2.4Saul Wold2011-04-121-2/+2
| | | | | | | | When souphttpsrc was added to gst-meta-base, the corresponding dependency on libsoup was not added to gst-plugins-good, this resolves that. Signed-off-by: Saul Wold <sgw@linux.intel.com>
* gst-meta-base: Support http/https remote streamsDongxiao Xu2011-04-061-2/+3
| | | | | | | | | Add libgstsouphttpsrc library to support remote stream playing via http/https protocols. This solves the mp4 playing issue by regel from mediatomb file server. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* gstreamer_0.10.31.bb: inherit gettext class instead of adding gettext to ↵Khem Raj2011-04-041-2/+2
| | | | | | DEPENDS directly Signed-off-by: Khem Raj <raj.khem@gmail.com>
* Update SRC_URIs to use BPN instead of PNRichard Purdie2011-03-143-3/+3
| | | | | | [YOCTO #860] Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gst-plugins-good: remove dependency on halPaul Eggleton2011-03-102-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | On Tuesday 08 March 2011 18:55:44 Richard Purdie wrote: > > Saul Wold (3): > > gst-plugins: Added hal to DEPENDS > > attr: Added ncurses to depends > > lsb-live image: add lsb-live and lsb-sdk-live image types > > Merged. I'd like to drop the hal dependency if someone can send me a > patch which disables it and everything works. Patch attached to do this (against oe-core) . Cheers, Paul From d6f52ebf89e8413f8e24bbc9ab58a0d0e5c45c09 Mon Sep 17 00:00:00 2001 From: Paul Eggleton <paul.eggleton@linux.intel.com> Date: Wed, 9 Mar 2011 01:21:25 +0000 Subject: [PATCH] gst-plugins-good: remove dependency on hal Disable hal usage at configure time to avoid dependency on hal (which is deprecated). Only affects "halelements" which is of no use without hal. Fixes [YOCTO #810] and reverts changes from c6b0c5720fa. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* gst-plugins-bad: add missing dependency librsvgDongxiao Xu2011-03-101-2/+2
| | | | | | | | | | | | | | | | | | Defaultly gst-plugins-bad will configured with option --enable-rsvg. Besides, it will check if librsvg really exists by certain configure code. Therefore there will be a certain race condition that, during librsvg's populate_sysroot, gst-plugins-bad's do_compile will find some header files are still not exists though its configure says the library is supported. Explicitly add librsvg as gst-plugins-bad's dependency could solve this issue. This fixes [YOCTO #831] Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* gst-plugins: Added hal to DEPENDSSaul Wold2011-03-061-1/+1
| | | | | | Fixes [YOCTO #810] Signed-off-by: Saul Wold <sgw@linux.intel.com>
* gstreamer: install the sound card driver of es1370Zhai Edwin2011-03-031-0/+3
| | | | | | | | | | When append "audio" to poky-qemu, emulated sound card like es1370 is exported to guest. This patch install the kernel driver in the poky-image-qemux86/x86_64 to use them. [BUGID #751] Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
* gst-meta-base: add uridecodebin library supportDongxiao Xu2011-02-221-1/+2
| | | | | | | | | | libowl-av tries to use playbin2 defaultly, which needs uridecodebin support from gst-plugins-base. This fixes both [BUGID #615] and [BUGID #616] CC: Edwin Zhai <edwin.zhai@intel.com> Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* gstreamer: reenable PARALLEL_MAKEDongxiao Xu2011-02-171-2/+0
| | | | Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* gst-plugins-base: add util-linux to DEPENDSPaul Eggleton2011-01-241-2/+2
| | | | | | | gst-plugins-base requires libuuid, so add util-linux to DEPENDS. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Qing He <qing.he@intel.com>
* gst-plugins-good: upgrade to version 0.10.26Dongxiao Xu2010-12-301-2/+2
| | | | | | upgrade from 0.10.25 to 0.10.26 Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>