summaryrefslogtreecommitdiffstats
path: root/package/multimedia
Commit message (Collapse)AuthorAgeFilesLines
...
* mplayer: not supported on sh2/sh2agilles.talis@gmail.com2013-02-091-1/+2
| | | | | | | | | | | mplayer configure script says that sh2a is not supported. Fixes: http://autobuild.buildroot.org/results/0e530fd99c4b37782208ee0549be500220643999/ Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libsndfile: Add dependency on BR2_LARGEFILERyan Mallon2013-02-054-2/+13
| | | | | | | | | | | | | | | | | | | libsndfile requires sizeof(sf_count_t) == 8, where sf_count_t is a typedef alias for off_t. This is not true by default for all tool-chains, which leads to a runtime assert failure in binaries compiled against libsndfile. See: http://permalink.gmane.org/gmane.comp.audio.libsndfile.devel/229 Add a dependency on BR2_LARGEFILE for libsndfile, and a comment if BR2_LARGEFILE is not selected. [Thomas: rebased patch, added more propagation of the new BR2_LARGEFILE dependency to gst-plugins-good and mpd.] Signed-off-by: Ryan Mallon <rmallon@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* mpd: bump to version 0.17.3Gustavo Zacarias2013-01-281-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Yavta: new packagePatrick Gerber2013-01-221-0/+1
| | | | | | [Peter: License is GPLv2+, move out of package/multimedia] Signed-off-by: Patrick Gerber <kpa_info@yahoo.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lame: add license informationGustavo Zacarias2013-01-211-0/+2
| | | | | | [Peter: License is LGPLv2+] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* packages: remove all := signsThomas Petazzoni2013-01-202-8/+9
| | | | | | | | | | | Finally get rid of all := used for variable definitions in packages, as we suggest in our manual and during the review of new packages. While I was at it, I also sometimes added a few missing new lines between the header and the first variable definition. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gst-fsl-plugins: new packageArnout Vandecappelle (Essensium/Mind)2013-01-146-0/+259
| | | | | Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gst-plugins-good: add wavpack + gdkpixbuf optionsPeter Korsgaard2013-01-142-0/+22
| | | | | | Based on patch by Bogdan Radulescu <bogdan_radulescu99@yahoo.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gst-plugins-bad: add faad optionPeter Korsgaard2013-01-142-0/+11
| | | | | | Based on patch by Bogdan Radulescu <bogdan_radulescu99@yahoo.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gst-plugins-bad: sort suboptions alphabeticallyPeter Korsgaard2013-01-141-6/+6
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* wavpack: fix the iconv breakage ghostGustavo Zacarias2013-01-091-1/+1
| | | | | | | | | | Fix missing comma in DEPENDENCIES, causing to pull in libiconv when it wasn't necessary and causing other packages to go crazy on (e)glibc toolchains which don't need it with libiconv being present. Fixes: http://autobuild.buildroot.org/results/e0ce086a33a1db6fee77f43356e4e94ed6941f17 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> 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>
* gst-plugins-base: make alsa plug-in configurableSven Neumann2013-01-052-2/+7
| | | | | | | | | | | | It may be desirable not to use the alsa sink for playback even though alsa-lib is installed. So make this a configuration option. This also takes care of selecting the proper options for alsa-lib (BR2_PACKAGE_ALSA_LIB_MIXER and BR2_PACKAGE_ALSA_LIB_PCM). [Peter: fix indentation] Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gst-plugins-bad: rsvg support needs C++ (but no longer GTK+)Peter Korsgaard2013-01-011-1/+4
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* wavpack: fix broken link on newer binutilsGustavo Zacarias2012-12-291-4/+5
| | | | | | | | | | | Newer versions of binutils (2.22+) default to --no-copy-dt-needed hence all the used libraries must be explicitly named. This is accounted for in the source configure script but not in the compiled form so we just need to autoreconf it. [Peter: add comment why autoconf is needed] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pulseaudio: needs threadsGustavo Zacarias2012-12-233-2/+5
| | | | | | | | Fixes: http://autobuild.buildroot.net/results/4d6a5793e475683fbc58ccaf03cf7816233a5052/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ffmpeg: make ARM optimizations explicitGustavo Zacarias2012-12-211-2/+9
| | | | | | | | | | | | | | The ffmpeg configure script tries to autodetermine ARM optimizations by building a small code snippet with AS. If AS allows higher-level (>generic) assembly instructions then it passes and enables the relevant optimization path. Some toolchains allow/default to more than generic asm and then fail when the real code is built. Fixes: http://autobuild.buildroot.net/results/b6e1225a07a58cc7544e37bc55675be71e2b5088/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* mplayer: prevent selection on Microblaze and AArch64Thomas Petazzoni2012-12-201-3/+2
| | | | | | | | | | | | | MPlayer wants to have some "support" for each architecture, and for now, it doesn't know about Microblaze and AArch64, so prevent the selection of MPlayer on those architectures. For Microblaze, fixes: http://autobuild.buildroot.org/results/4e6e0d15694345ded649c92251cc2173dc45fe7c/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: use BR2_ARM_CPU_HAS_NEONPeter Korsgaard2012-12-132-3/+2
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* 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>