- 27 Jun, 2017 1 commit
-
-
wm4 authored
This also adds support to avconv (which is trivial due to the new hwaccel API being generic enough). The new decoder setup code in dxva2.c is significantly based on work by Steve Lhomme <robux4@gmail.com>, but with heavy changes/rewrites. Merges Libav commit f9e7a2f9. Also adds untested VP9 support. The check for DXVA2 COBJs is removed. Just update your MinGW to something newer than a 5 year old release. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
- 21 Jun, 2017 1 commit
-
-
Diego Biurrun authored
None of them are specific to the YASM assembler. (Cherry-picked from libav commit 39e208f4) Signed-off-by: James Almer <jamrial@gmail.com>
-
- 14 Jun, 2017 3 commits
-
-
Mark Thompson authored
(cherry picked from commit aa6b2e08)
-
Mark Thompson authored
(cherry picked from commit 62a1ef9f)
-
Mark Thompson authored
Not yet enabled for any hwaccels. (cherry picked from commit d2e6dd32) (cherry picked from commit 9203aac2)
-
- 12 Jun, 2017 1 commit
-
-
Paul B Mahol authored
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-
- 18 May, 2017 1 commit
-
-
James Almer authored
It's not used by anything, has dubious usefulness, the reasons for which it was introduced are no longer valid, and only serves to add complexity to the build system. Signed-off-by: James Almer <jamrial@gmail.com>
-
- 15 May, 2017 1 commit
-
-
Timo Rothenpieler authored
Original work by Yogender Gupta <ygupta@nvidia.com>
-
- 24 Apr, 2017 1 commit
-
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
- 14 Apr, 2017 1 commit
-
-
James Almer authored
Found-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: James Almer <jamrial@gmail.com>
-
- 01 Mar, 2017 2 commits
-
-
Carl Eugen Hoyos authored
-
Carl Eugen Hoyos authored
Fixes ticket #5546.
-
- 12 Jan, 2017 2 commits
-
-
Diego Biurrun authored
-
Diego Biurrun authored
-
- 22 Dec, 2016 3 commits
-
-
Diego Biurrun authored
This moves work from the configure to the Make stage where it can be parallelized and ensures that pkgconfig files are updated when library versions change. Bug-Id: 449
-
Diego Biurrun authored
This moves work from the configure to the Make stage where it can be parallelized and ensures that shared libraries are built with the right version number in the filename.
-
Diego Biurrun authored
This unclutters the top-level directory and groups related files together.
-
- 09 Dec, 2016 1 commit
-
-
Diego Biurrun authored
This makes naming more consistent and simplifies extralibs-related changes.
-
- 07 Dec, 2016 3 commits
-
-
Diego Biurrun authored
Otherwise builds without explicit target result in silent no-ops.
-
Diego Biurrun authored
-
Diego Biurrun authored
The library versions are stored in the config.mak file and are used to derive shared library names.
-
- 05 Dec, 2016 1 commit
-
-
Diego Biurrun authored
EXTRALIBS contains general and platform-specific extra libraries that should be part of all linker commands.
-
- 03 Dec, 2016 1 commit
-
-
Diego Biurrun authored
Supporting the system was a nice joke for the 9 release, but it has run its course. Nowadays Plan 9 receives no testing and has no practical usefulness.
-
- 27 Oct, 2016 1 commit
-
-
Diego Biurrun authored
Since avversion.h is a generated header it must be created before dependencies can be determined as a side effect of compilation. Otherwise Make stops and restarts the build process to generate avversion.h and produces related error messages.
-
- 21 Oct, 2016 1 commit
-
-
Anton Khirnov authored
It didn't take into account the new pattern used for bitstream filters and protocols.
-
- 17 Oct, 2016 2 commits
-
-
Diego Biurrun authored
The variable needs to be reset for each subdirectory.
-
Diego Biurrun authored
And move the asm recipe to the top-level Makefile next to the other local pattern rules for .o files.
-
- 10 Jun, 2016 1 commit
-
-
Timo Rothenpieler authored
-
- 29 May, 2016 3 commits
-
-
Diego Biurrun authored
Generate the files in a single postprocessing step w/o intermediate files.
-
Diego Biurrun authored
Split version files into one line per symbol/directive to allow compatibility with the Solaris linker without preprocessing and eliminate $ from version file templates to simplify the postprocessing shell command.
-
Diego Biurrun authored
-
- 27 May, 2016 1 commit
-
-
Diego Biurrun authored
-
- 19 Apr, 2016 1 commit
-
-
Anton Khirnov authored
-
- 07 Apr, 2016 1 commit
-
-
Diego Biurrun authored
Restore alphabetical order in lists, break overly long lines, do some prettyprinting, add some explanatory section comments, group parts together that belong together logically.
-
- 30 Mar, 2016 1 commit
-
-
Mark Thompson authored
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
- 22 Mar, 2016 1 commit
-
-
Michael Niedermayer authored
Testset provided by Justin Greer <justin@zencoder.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
- 06 Feb, 2016 2 commits
-
-
Andreas Cadhalpun authored
Otherwise the 'lcov -q --remove' run fails with the following error: lcov: ERROR: cannot write to coverage.info! Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
-
Andreas Cadhalpun authored
Or when building in-tree. Also don't try to remove src on distclean in these cases. Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
-
- 25 Jan, 2016 1 commit
-
-
Andreas Cadhalpun authored
If links don't work, fall back to using the full source path as was previously done. This should fix build failures with MSVC. Reviewed-by: Hendrik Leppkes <h.leppkes@gmail.com> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
-
- 21 Jan, 2016 1 commit
-
-
Andreas Cadhalpun authored
Previously the full source path was embedded inconsistently in the debug information between in-tree/out-of-tree builds. The 'vpath %.inc' becomes necessary for finding libavfilter/all_channel_layouts.inc in out-of-tree builds. The full source path is still embedded in the debug information, but it's now independent of whether building in-tree or out-of-tree. The biggest improvement of this patch is that gdb now always searches for the path relative to the source directory. It still also searches for the full path. Previously it searched only for the full path in out-of-tree builds, making the debug information generated by Debian's buildds rather hard to use. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
-