aboutsummaryrefslogtreecommitdiffstats
path: root/package/multimedia/gstreamer
Commit message (Collapse)AuthorAgeFilesLines
* gstreamer: update for gstreamer1Spenser Gilliland2013-06-201-0/+3
| | | | | | [Peter: fix long line, trailing space, Gstreamer/GStreamer] Signed-off-by: Spenser Gilliland <spenser@gillilanding.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Fix package headersJerzy Grzegorek2013-06-071-1/+0
| | | | | Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Normalize separator size to 80Alexandre Belloni2013-06-061-2/+2
| | | | | Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Fix package headers to comply with coding styleAlexandre Belloni2013-06-061-0/+1
| | | | | Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gstreamer: needs threads support in toolchainPeter Korsgaard2013-05-031-2/+3
| | | | | | Indirectly fixes http://autobuild.buildroot.net/results/453ac64daf384702512ac68f1779f375e337332d/build-end.log Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gstreamer: add missing dependencies on host-flex and host-bisonThomas Petazzoni2013-03-251-1/+1
| | | | | | | | Fixes: http://autobuild.buildroot.org/results/f9f32bfd44a3f74ec30fc61594bf6eb04f80f872/build-end.log. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gstreamer: provide necessary config value for AArch64Thomas Petazzoni2013-01-061-0/+3
| | | | | | | | | | | Provide the as_cv_unaligned_access value for the AArch64 architecture. Fixes: http://autobuild.buildroot.net/results/5d6d76451a00d79e1bdfe87b6ced61807666cc48/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gstreamer: Added option to disable plugin registry.Tim Sheridan2012-11-302-4/+13
| | | | | | | | | | The plugin registry can take a while to be generated when GStreamer is initialized. Turning it off can speed up up GStreamer application launch times. Default behaviour is unchanged. Signed-off-by: Tim Sheridan <tim.sheridan@imgtec.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* packages: switch to host-pkgconfGustavo Zacarias2012-10-291-1/+1
| | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* all packages: rename XXXTARGETS to xxx-packageArnout Vandecappelle (Essensium/Mind)2012-07-171-1/+1
| | | | | | | | | | | | | Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* gstreamer: bump versionPeter Korsgaard2012-03-141-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: remove useless arguments from AUTOTARGETSThomas Petazzoni2011-09-291-1/+1
| | | | | | | | | | Thanks to the pkgparentdir and pkgname functions, we can rewrite the AUTOTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gstreamer: bump versionPeter Korsgaard2011-09-291-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gstreamer: add option to disable gst_debug tracing functionalityPeter Korsgaard2011-09-272-1/+12
| | | | | | | Shrinks gst library sizes with ~1MB (depending on the amount of plugins enabled). Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/multimedia: apply libtool patch where possiblePeter Korsgaard2011-02-171-1/+0
| | | | | | | | | | Now that we have libtool-2.2.x patch support, we can get rid of a bunch of _LIBTOOL_PATH = NO, fixing (potential) cross link issues. Notice: libmad/libid3tag/madplay/taglib not changed, as they use a very old 1.5 version, where our buildroot-libtool-v1.5.patch doesn't apply. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gstreamer: update to the latest gstreamer +plugins packagesFelipe Contreras2011-02-042-37/+1
| | | | | | | | | liboil is not needed not used any more. orc _can_ be used instead, but it's not needed. [Peter: get rid of liboil selects] Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gstreamer: remove unnecessary featureFelipe Contreras2011-01-242-14/+2
| | | | | | | | | | | | On 0.10.11 the binary-registry was added, on 0.10.12 the libxml2 dependency was dropped when binary-registry was used, on 0.10.18 the binary-registry was made default, and on 0.10.23 it was the only option. So, libxml2 is not needed any more for the registry. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gstreamer: remove --disable-registry from configure optionsLionel Landwerlin2010-06-081-1/+0
| | | | | | | | | --disable-registry has no dependency on libxml2 and should not be linked to BR2_PACKAGE_GSTREAMER_LIBXML2. If we want to disable registry then we should add another option. Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: gettext needs WCHAR supportPeter Korsgaard2010-05-251-0/+4
| | | | | | | | gettext needs WCHAR support in the toolchain, and as libglib2 depends on gettext and lots of stuff depends on libglib2, quite a lot of packages needs to have their dependencies adjusted. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* get rid of broken nios2 supportPeter Korsgaard2010-03-301-3/+0
| | | | | | | Has been marked as broken for more than 1 year, with no indication that anyone cares, and it needs a bunch of special handling. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gstreamer: fix unaligned detection for x86-64Peter Korsgaard2010-01-181-0/+36
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* host-pkgconfig is now host-pkg-configThomas Petazzoni2009-12-151-1/+1
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* gstreamer: update to new upstream release 0.10.25Sven Neumann2009-10-071-1/+1
| | | | | Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gstreamer: Bump version to 0.10.23.Will Newton2009-06-161-1/+1
| | | | | | Closes #391. Signed-off-by: Will Newton <will.newton@gmail.com>
* gstreamer: Allow libxml2 dependency to be configured.Will Newton2009-06-162-2/+15
| | | | | | | | | | gstreamer uses libxml2 to support the plugin registry and pipeline load/save features. This change allows the user to build gstreamer without libxml2 which saves a large amount of space on the target. Closes #373. Signed-off-by: Will Newton <will.newton@gmail.com>
* package/multimedia/gstreamer: bump versionPeter Korsgaard2009-04-292-44/+2
| | | | Patch by Sven Neumann <s.neumann@raumfeld.com>, closes #101.
* pkgconfig: add pkgconfig package for targetPeter Korsgaard2009-03-182-2/+1
| | | | | | | | | | | | | The host versions shouldn't be visible in Kconfig, so remove the reference to BR2_PACKAGE_PKGCONFIG everywhere and prefix the host targets with host-. At the same time add pkgconfig for the target (E.G. for development) and let BR2_PACKAGE_PKGCONFIG control that package. Notice: all defconfigs in the tree have been updated, but make sure to disable the pkgconfig package (unless you want it) if you use an external config, otherwise you'll end up with pkgconfig and glib2 in the target.
* Getting rid of a bit more configure options that's been centralized.Thomas Lundquist2009-01-181-2/+0
|
* Finish the gtk-doc stuff and start on the smae thing with LARGEFILE and NLS.Thomas Lundquist2009-01-181-3/+1
|
* package/multimedia/gstreamer/gstreamer.mk: Fix missing \Daniel Laird2009-01-141-1/+1
| | | | | | | Fix stupid typo. Signed-off-by: Daniel Laird <daniel.j.laird@nxp.com>
* package/multimedia/gstreamerDaniel Laird2009-01-141-0/+2
| | | | | | | | | | package/multimedia/gst-plugins-*: I do not want docs installed in rootfs. Stop it installing the docs in the ROOTFS by using the same fix as has been applied to cairo. Signed-off-by: Daniel Laird <daniel.j.laird@nxp.com>
* buildroot: get rid of s390 supportPeter Korsgaard2009-01-121-3/+0
| | | | | As discussed on the list. It isn't supported by uclibc, so I strongly doubt anyone has been using it.
* gstreamer: add new multimedia package gstreamerHans-Christian Egtvedt2008-12-083-0/+85
gstreamer is powerful framework for streaming media.