- 16 Mar, 2014 1 commit
-
-
Vittorio Giovara authored
Drop the mpegvideo dependency for svq3 in configure.
-
- 14 Mar, 2014 3 commits
-
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Diego Biurrun authored
Group checks into logical groups and sort alphabetically within those groups unless checks have close coupling. Keep closely coupled checks together.
-
- 13 Mar, 2014 9 commits
-
-
Diego Biurrun authored
SPARC is no longer being used in any multimedia-related fields and the VIS optimizations only represent a maintenance burden.
-
Diego Biurrun authored
-
Diego Biurrun authored
Previously, it was an implicit dependency through mpegvideo. Change this, as implicit dependencies can cause all sorts of trouble.
-
Diego Biurrun authored
ffv1 does not use any part of the dsputil framework.
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Diego Biurrun authored
-
- 12 Mar, 2014 2 commits
-
-
Luca Barbato authored
It should work best for debian stable and people not installing the .pc file.
-
Diego Biurrun authored
-
- 11 Mar, 2014 2 commits
-
-
Luca Barbato authored
Should be used only to pass extra flags to pkgconf invocation, e.g. --static. Signed-off-by:
Luca Barbato <lu_zero@gentoo.org>
-
Luca Barbato authored
-
- 10 Mar, 2014 3 commits
-
-
Diego Biurrun authored
Sort lists of components. Add some whitespace where it helps readability. Consistently use double instead of single quotes around component lists.
-
Luca Barbato authored
The current release of version 1 uses libopenjpeg1.
-
Anton Khirnov authored
The values of {FLT,DBL}_{MAX,MIN} macros on some systems (older musl libc, some BSD flavours) are not exactly representable, i.e. (double)DBL_MAX == DBL_MAX is false This violates (at least some interpretations of) the C99 standard and breaks code (e.g. in vf_fps) like double f = DBL_MAX; [...] if (f == DBL_MAX) { // f has not been changed yet [....] }
-
- 08 Mar, 2014 2 commits
-
-
Janne Grunau authored
Not guaranteed to be in nanosecond resolution. On iOS 7 the duration of one tick is 125/3 ns which is still more than an order of magnitude better then microseconds. Replace decicycles with the neutral UNITS. Decicycles is strange but tenths of a nanosecond and unspecific "deci"-ticks for mach_absolute_time is just silly.
-
Pierre Lejeune authored
Bug-Id: 387 CC: libav-stable@libav.org
-
- 06 Mar, 2014 3 commits
-
-
Derek Buitenhuis authored
Signed-off-by:
Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
Diego Biurrun authored
The SVQ3 decoder reuses large parts of the H.264 decoder so it makes no sense to enable the former but not the latter. Also drop unnecessary h263.o object from SVQ3 decoder object list.
-
Diego Biurrun authored
This avoids checking inline/external assembly dependencies for x86 extensions that do not play a role in inline/external assembly.
-
- 05 Mar, 2014 1 commit
-
-
Reinhard Tartler authored
The s390 architecture requires shared libraries to be built in PIC mode. Otherwise applications will get wrong relocations at run-time, leading to confusing segmentation faults. CC: libav-stable@libav.org
-
- 04 Mar, 2014 1 commit
-
-
Vittorio Giovara authored
strtok_r is not needed any more, so remove it from configure.
-
- 28 Feb, 2014 7 commits
-
-
Anton Khirnov authored
-
Diego Biurrun authored
A threading type might be detected originally, but later disabled if one of its dependencies is unavailable. This makes sure that the threading support item in the configure output is right for setups where w32threads are available but native atomics aren't. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Diego Biurrun authored
Almost all of the code is shared so there is little point in enabling one decoder/encoder without the other.
-
Diego Biurrun authored
Almost all of the code is shared so there is little point in enabling one decoder without the other.
-
Diego Biurrun authored
These codecs compile all of the MJPEG code anyway, so there is little point in not enabling the MJPEG decoder directly. This also simplifies the dependency declarations for the MJPEG codec family.
-
Diego Biurrun authored
This codec compiles all of the SP5X code anyway, so there is little point in not enabling the decoder directly. This also simplifies the dependency declaration for the AMV decoder.
-
Christophe Gisquet authored
The vector dequantization has a test in a loop preventing effective SIMD implementation. By moving it out of the loop, this loop can be DSPized. Therefore, modify the current DSP implementation. In particular, the DSP implementation no longer has to handle null loop sizes. The decode_hf implementations have following timings: For x86 Arrandale: C SSE SSE2 SSE4 win32: 260 162 119 104 win64: 242 N/A 89 72 The arm NEON optimizations follow in a later patch as external asm. The now unused check for the y modifier in arm inline asm is removed from configure.
-
- 26 Feb, 2014 1 commit
-
-
Anton Khirnov authored
-
- 25 Feb, 2014 1 commit
-
-
Anton Khirnov authored
Based on a patch by Andrew Kelley <superjoe30@gmail.com> Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-
- 24 Feb, 2014 1 commit
-
-
Derek Buitenhuis authored
Framerate is now a sane rational instead of an integer, and inputDepth is changed to what it actually is. Signed-off-by:
Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
- 23 Feb, 2014 3 commits
-
-
James Almer authored
Based on x264 code Signed-off-by:
James Almer <jamrial@gmail.com>
-
James Almer authored
Signed-off-by:
James Almer <jamrial@gmail.com>
-
Janne Grunau authored
Moving cpunop from the HAVE_LIST to the ARCH_EXT_LIST_X86 has the side effect of enabling it. The semantics of the check have to be changed from enable if successful to disable if unsuccessful. This was missing in 2b0bb699 causing build errors with nasm.
-