Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-05-11Merge commit 'd12b5b2f135aade4099f4b26b0fe678656158c13'Derek Buitenhuis
* commit 'd12b5b2f135aade4099f4b26b0fe678656158c13': build: Split test programs off into separate files Some conversions done by: James Almer <jamrial@gmail.com> Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2016-04-07build: Split test programs off into separate filesDiego Biurrun
This avoids spurious library rebuilds when only the test program code is changed and simplifies the build system.
2014-12-28avutil/atomic: reuse ret to avoid dereferencing twice the same value.Clément Bœsch
2014-02-20Merge commit '874c751cc5b99cd68932e21c2c3a0d21134207e0'Michael Niedermayer
* commit '874c751cc5b99cd68932e21c2c3a0d21134207e0': threads: Check w32threads dependencies at the configure stage Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-02-19threads: Check w32threads dependencies at the configure stageDiego Biurrun
Also add warning comment about threading implementations without matching atomics implementation to the atomics fallback implementation.
2013-12-20Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: atomics: cosmetics: Restructure ifdefs for greater clarity Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-12-20atomics: cosmetics: Restructure ifdefs for greater clarityDiego Biurrun
Also fix the #endif comment in a few places and #include config.h to avoid assuming it is #included implicitly.
2013-04-03Merge commit 'f9f6402e9c9ce3642df981b48507df3a2d956f65'Michael Niedermayer
* commit 'f9f6402e9c9ce3642df981b48507df3a2d956f65': configure: prettify atomics handling. Conflicts: configure Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-04-03configure: prettify atomics handling.Anton Khirnov
Add simpler names and a shorthand for native atomics (as opposed to pthreads fallback).
2013-03-20avutil/atomic: use av_assert0()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-03-12atomic: Check for __sync_val_compare_and_swap instead of __sync_synchronizeMartin Storsjö
Not all gcc configurations have an implementation of all the atomic operations, and some gcc configurations have some atomic builtins implemented but not all. Thus check for the most essential function, whose presence should indicate that all others are present as well, since it can be used to implement all the other ones. Signed-off-by: Martin Storsjö <martin@martin.st>
2013-03-08Merge commit '65f1d45dcc71186ede72fff950996099d23359bd'Michael Niedermayer
* commit '65f1d45dcc71186ede72fff950996099d23359bd': lavu: add support for atomic operations. Conflicts: configure Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-03-08atomic: Check for __sync_val_compare_and_swap instead of __sync_synchronizeMartin Storsjö
Not all gcc configurations have an implementation of all the atomic operations, and some gcc configurations have some atomic builtins implemented but not all. Thus check for the most essential function, whose presence should indicate that all others are present as well, since it can be used to implement all the other ones. Signed-off-by: Martin Storsjö <martin@martin.st>
2013-03-08lavu: add support for atomic operations.Ronald S. Bultje
These could be used for reference counting, or for keeping track of decoding progress in references in multithreaded decoders. Support is provided by gcc/msvc/suncc intrinsics, with a fallback using pthread mutexes. Signed-off-by: Anton Khirnov <anton@khirnov.net>