summaryrefslogtreecommitdiffstats
path: root/package/multimedia
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'next'Peter Korsgaard2012-12-022-4/+13
|\ | | | | | | Kickoff 2013.02 cycle
| * 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>
* | directfb: needs threads supportPeter Korsgaard2012-11-231-0/+1
|/ | | | | | Fixes http://autobuild.buildroot.net/results/237aaf7b036a98867de1df47d39d01ec4137efd3 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* alsa-utils: bump to version 1.0.26Gustavo Zacarias2012-11-171-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* packages: switch to host-pkgconfGustavo Zacarias2012-10-296-6/+6
| | | | | | 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>
* mpd: bump to version 0.17.2Gustavo Zacarias2012-10-221-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pulseaudio: fix X11 + !locale build issuePeter Korsgaard2012-10-061-0/+19
| | | | | | | | | | | | Fixes http://autobuild.buildroot.net/results/aa1072ee5115ce12f03d600b46ff980a9d20c45d/ Pulseaudio installs autostart .desktop files when X11 support is enabled, but the files are not created from the corresponding .desktop.in files when built with --disable-nls (which we add for !locale builds). Reported upstream at: https://bugs.freedesktop.org/show_bug.cgi?id=54658 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* mplayer: Only enable IPv6 if BR2_INET_IPV6 is setValentine Barshak2012-10-041-0/+3
| | | | | | | This fixes false positive IPv6 detection. Signed-off-by: Valentine Barshak <gvaxon@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* mplayer: Amend libmad selectionValentine Barshak2012-10-041-1/+1
| | | | | | | Do not set both --enable-mad and --disable-mad. Signed-off-by: Valentine Barshak <gvaxon@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* mplayer: Fix external libdvdread and libdvdnav supportValentine Barshak2012-10-041-0/+15
| | | | | | | | | This sets paths to dvdread-config and dvdnav-config, and configuration options to enable external libdvdread and libdvdnav support. Signed-off-by: Valentine Barshak <gvaxon@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gst-plugins-good: Add upstream patch to fix building with Linux 3.6Markos Chandras2012-10-041-0/+37
| | | | | Signed-off-by: Markos Chandras <markos.chandras@imgtec.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pulseaudio: bump versionPeter Korsgaard2012-09-301-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* mplayer: 1.1 version needs largefile supportPeter Korsgaard2012-09-261-0/+4
| | | | | | Fixes http://autobuild.buildroot.net/results/7d084a1a8fd484f2c6df82ccd7b9d8aeebe68c2d Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* alsa-lib: require thread supportThomas Petazzoni2012-09-202-2/+4
| | | | | | | | | | | | | | | | Some parts of alsa-lib correctly use threads only when available, but some other parts, especially certain PCM plugins, unconditionally require threads. While it would certainly be possible to fix alsa-lib to only use threads when available, it probably doesn't make much sense, since on an embedded system that has audio, we are probably powerful enough to enable thread support in the C library. Fixes: http://autobuild.buildroot.org/results/e14469be7f6171f4c8c0c09c8e32943819f7938b/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/pulseaudio: fix build-dependency on gettextYann E. MORIN2012-09-201-1/+1
| | | | | | | | | | | | | | | | | | | | In its Config.in, pulseaudio declares a dependency on gettext using the documented construct: select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT but in its .mk file, declares a dependency on the package: PULSEAUDIO_DEPENDENCIES = [...] $(if $(BR2_PACKAGE_GETTEXT),gettext) [...] instead of the documented: $(if $(BR2_NEEDS_GETTEXT),gettext) Fix that. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> CC: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Remove all references to libintlThomas Petazzoni2012-09-202-2/+2
| | | | | | | | | | | | | | | From now on, packages only need to select the BR2_PACKAGE_GETTEXT option and depend on the 'gettext' package to get the necessary i18n libraries installed on the target. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr> [yann.morin.1998@free.fr: remove BR2_PACKAGE_LIBINTL] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> CC: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* mplayer: not supported on sh4a/sh4aebThomas Petazzoni2012-09-201-0/+3
| | | | | | | | | | | | | | | | | The mplayer configure script says that sh4a is not supported, according to: http://autobuild.buildroot.org/results/c6457c2dea7c1df4d8e0f23995ebfb3285a85aed/build-end.log Apparently, sh4 is supported, but not sh4a, even though it seems that sh4a is a super-set of sh4. So it would probably not be too difficult to get mplayer to build/work for sh4a, but we don't have hardware to test this easily, and we can leave this work to the first developer who will need mplayer on sh4a: let's only support what the upstream package supports. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gst-plugin-bad: add musepack optionPeter Korsgaard2012-09-122-0/+11
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gst-plugins-bad: opus + jpegformat: unbreak non-debug buildPeter Korsgaard2012-09-121-0/+78
| | | | | | | | | | opus + jpegformat plugin builds fail when gstreamer is configured with --disable-gst-debug as they are checking the GST_DISABLE_DEBUG symbol instead of GST_DISABLE_GST_DEBUG. Submitted upstream as https://bugzilla.gnome.org/show_bug.cgi?id=683850 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gst-plugin-bad: add opus optionPeter Korsgaard2012-09-112-0/+11
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: add opus-toolsPeter Korsgaard2012-09-111-0/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Merge branch 'next'Peter Korsgaard2012-09-036-392/+9
|\ | | | | | | | | | | | | | | | | | | Conflicts: package/e2fsprogs/e2fsprogs.mk package/libfuse/libfuse.mk package/multimedia/mpd/mpd.mk package/smartmontools/smartmontools.mk Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| * mplayer: Update to version 1.1.Kelvin Cheung2012-08-214-390/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | Update to version 1.1 (r34994). remove --enable-largefiles configure option which was deleted in r33321. Discard mplayer-theora-fix.patch which is a backport of r34498 and r34503. Signed-off-by: Kelvin Cheung <keguang.zhang@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * mpd: bump to version 0.17.1Gustavo Zacarias2012-08-171-1/+1
| | | | | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * mpd: bump to version 0.17Gustavo Zacarias2012-08-121-1/+3
| | | | | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * mpg123: bump to version 1.14.4Gustavo Zacarias2012-08-121-1/+3
| | | | | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* | remove rest of the BR2_SOURCEFORGE_MIRROR referencesStefan Fröberg2012-08-287-7/+7
| | | | | | | | | | Signed-off-by: Stefan Fröberg <stefan.froberg@petroprogram.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* | faad2: add license infoDanomi Manchego2012-08-211-0/+2
| | | | | | | | | | Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* | alsa-utils: add license infoDanomi Manchego2012-08-211-0/+2
|/ | | | | Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* ffmpeg: bump to 0.8.12Luca Ceresoli2012-07-311-1/+1
| | | | | Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* all packages: rename XXXTARGETS to xxx-packageArnout Vandecappelle (Essensium/Mind)2012-07-1724-24/+24
| | | | | | | | | | | | | 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>
* faad2: fix frontend/faad linkingPeter Korsgaard2012-06-271-0/+2
| | | | | | Fixes http://autobuild.buildroot.net/results/84db857a6fc8e73483493e484f2cc5f4bf64f3d0 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gstreamer: add xorg supportSimon Dawson2012-06-243-6/+29
| | | | | | | | GStreamer requires xorg support in order for the ximagesink and xvimagesink plugins to be available. Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pulseaudio: fix build error on toolchains without C++ supportPeter Korsgaard2012-06-041-0/+15
| | | | | | | | | | | | | The optional webrtc echo canceller is written in C++, causing auto* to want to link module-echo-cancel.so with CXX even if webrtc ISN'T used. If we don't have C++ support enabled in BR, CXX will point to /bin/false, which makes configure think we aren't able to create C++ .so files (arguable true), breaking the build when it tries to install the .so workaround it by patching up the libtool invocations to use C mode instead. Fixes http://autobuild.buildroot.net/results/114e5bf0086f2394b36f17a70cb54b357a72413c Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Merge branch 'next'Peter Korsgaard2012-05-312-5/+8
|\ | | | | | | | | Conflicts: toolchain/kernel-headers/Config.in
| * mpg123: bump to version 1.14.2Gustavo Zacarias2012-05-231-1/+1
| | | | | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| * pulseaudio: add optional systemd supportPeter Korsgaard2012-05-201-1/+2
| | | | | | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| * pulseaudio: don't build man pages if not neededPeter Korsgaard2012-05-201-1/+2
| | | | | | | | | | | | No sense in building them if they are thrown away by target-finalize anyway. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| * pulseaudio: bump versionPeter Korsgaard2012-05-201-2/+3
| | | | | | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| * mpg123: bump to version 1.14.1Gustavo Zacarias2012-05-181-2/+2
| | | | | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | libmpeg2: move ARM patch to the correct directoryGustavo Zacarias2012-05-231-24/+0
|/ | | | | | | | | The patch was added after the multimedia category reorganization so it became unreachable. Move it to the final libmpeg2 package directory. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/multimedia: drop libraries, it's just applications nowGustavo Zacarias2012-05-051-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/multimedia: move audio libraries outGustavo Zacarias2012-05-0542-3868/+0
| | | | | | | | Move audio libraries out of the Audio and Video category into the Libraries/Audio one. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/multimedia: move multimedia libraries outGustavo Zacarias2012-05-0518-392/+0
| | | | | | | | Move multimedia libraries ouf of the Audio and Video category into the Libraries/Multimedia one. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libmpeg2: fix build breakage on lower ARM coresGustavo Zacarias2012-05-051-0/+24
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libdvdnav: change SITEGustavo Zacarias2012-05-011-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libdvdread: change SITEGustavo Zacarias2012-05-011-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* new package: bellagioQais Yousef2012-04-297-0/+122
| | | | | | | [Peter: needs C++, shouldn't force -Werror] Signed-off-by: Qais Yousef <qais.yousef@imgtec.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* mpd: add audiofile supportGustavo Zacarias2012-04-252-0/+12
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* audiofile: new packageGustavo Zacarias2012-04-253-0/+31
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>