summaryrefslogtreecommitdiff
path: root/ext/libvpx
Commit message (Collapse)AuthorAgeFilesLines
* Remove libvpx submoduleSreerenj Balachandran2016-01-196-1077/+0
| | | | | We will be using upstream codecparsers always. No more internal libvpx !
* build: libvpx: Add missing source fileSreerenj Balachandran2015-11-241-0/+1
|
* build: libvpx: update the sources listsVíctor Manuel Jáquez Leal2015-11-192-53/+504
| | | | | | | | | | | | `make dist` broke since commit f06798 (libvpx: Update the submodule to libvpx-1.4.0) because the sources.frag does not contain all the module sources. This patch updates thoroughly the sources. Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com> https://bugzilla.gnome.org/show_bug.cgi?id=755525
* build: Remove disable-md5 option for libvpx buildSreerenj Balachandran2015-10-191-1/+0
| | | | | The configure option --disable-md5 was provided in libvpx-1.3.0 which has been removed in 1.4.0.
* libvpx: Update the submodule to libvpx-1.4.0Sreerenj Balachandran2015-10-191-0/+0
| | | | libvpx git commit: c74bf6d889992c3cabe017ec353ca85c323107cd
* build: don't build in parallel libvpxVíctor Manuel Jáquez Leal2015-06-041-0/+4
| | | | This fixes the distcheck -j XX target.
* build: use git.mkVíctor Manuel Jáquez Leal2015-05-181-2/+1
| | | | | | | | | | | This patch handles dinamically the gitignore files with git.mk[1]. Removed the automake variable MAINTAINERCLANFILES in most of the Makefile.am files since now it is handled by the top one. 1. https://github.com/behdad/git.mk/blob/master/git.mk https://bugzilla.gnome.org/show_bug.cgi?id=749321
* build: fix make distcheckVíctor Manuel Jáquez Leal2015-05-131-2/+12
| | | | | | | | | | | | | | | This patch fixes several issues found when running the `make distcheck` target: - In commit c561b8da, the update of gstcompat.h in Makefile.am was forgotten. - In commit c5756a91 add the simple_encoder_source_h in EXTRA_DIST was forgotten. - vpx.build.stamp is not generated at all, only vpx.configure.stamp. - The make target distcleancheck failed because some autogenerated files were not handled with the DISTCLEANFILES variable. Note: `make distcheck -jXX` is not currently supported.
* vp8: allow compilation without the built-in libvpx.Gwenole Beauchesne2014-04-211-1/+1
| | | | | | | The built-in libvpx serves multiple purposes, among which the most important ones could be: track the most up-to-date, and optimized, range decoder; allow for future hybrid implementations (non-VLD); and have a completely independent range decoder implementation.
* vp8: fix compilation with built-in libvpx.Gwenole Beauchesne2014-04-192-41/+35
| | | | | | Apply correct patch from fd.o #722760 to fix several issues: update the license terms to LGPLv2.1+, fix dependencies to built-in libvpx and fix make dist.
* vp8: use range decoder from libvpx.Gwenole Beauchesne2014-04-186-0/+619
Add libvpx submodule that tracks the upstream version 1.3.0. This is needed to build a libgstcodecparsers_vpx.so library with all symbols placed into the GSTREAMER namespace.