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-01-20lavu: add pthread asserts if ASSERT_LEVEL>1Clément Bœsch
2015-10-15Merge commit 'c53e796f8b69799b7ad6d28fbab981d37edf1bc9'Hendrik Leppkes
* commit 'c53e796f8b69799b7ad6d28fbab981d37edf1bc9': thread: Provide no-op variants for pthread_once Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
2015-10-14thread: Provide no-op variants for pthread_onceLuca Barbato
2014-12-14thread: use "" instead of <> for including the w32pthreads wrapperAnton Khirnov
Found-by: Dave Yeo <dave.r.yeo@gmail.com>
2014-11-29avutil/buffer: Move USE_ATOMICS to thread.h to avoid it becoming out of sync ↵Michael Niedermayer
with it Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-11-29libavutil/threads.h: correct an include to be localDave Yeo
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-11-29libavutil/thread.h: Support OS/2 threadsDave Yeo
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-11-28Merge commit '2443e522f0059176ff8717c9c753eb6fe7e7bbf1'Michael Niedermayer
* commit '2443e522f0059176ff8717c9c753eb6fe7e7bbf1': lavu: add wrappers for the pthreads mutex API Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-11-27lavu: add wrappers for the pthreads mutex APIAnton Khirnov
Also add no-op fallbacks when threading is disabled. This helps keeping the code clean if Libav is compiled for targets without threading. Since we assume that no threads of any kind are used in such configurations, doing nothing is ok by definition. Based on a patch by wm4 <nfxjfg@googlemail.com>.