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

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMuhammad Faiz <mfcc64@gmail.com>2017-07-12 02:42:23 +0300
committerMuhammad Faiz <mfcc64@gmail.com>2017-07-19 11:50:07 +0300
commita3d3cfa65c01123edf46d22c3fab7ef1bb428b37 (patch)
tree209ff56753daa8af1d416df3d946a3ae1035776a /libavutil/Makefile
parent5c9dcd5c484f56fb9fb5d277256439f0becce12c (diff)
avutil: merge slice threading implementation from avcodec and avfilter
Rework it to improve performance. Now mutex is not shared by workers, instead each worker has its own mutex and condition variable. This reduces lock contention between workers. Also use atomic variable for counter. The interface also allows execute to run special function on main thread, requested by Ronald. Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
Diffstat (limited to 'libavutil/Makefile')
-rw-r--r--libavutil/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile
index b2662c843e..e45871fd11 100644
--- a/libavutil/Makefile
+++ b/libavutil/Makefile
@@ -142,6 +142,7 @@ OBJS = adler32.o \
samplefmt.o \
sha.o \
sha512.o \
+ slicethread.o \
spherical.o \
stereo3d.o \
threadmessage.o \