diff options
author | Muhammad Faiz <mfcc64@gmail.com> | 2017-07-12 06:42:23 +0700 |
---|---|---|
committer | Muhammad Faiz <mfcc64@gmail.com> | 2017-07-19 15:50:07 +0700 |
commit | a3d3cfa65c01123edf46d22c3fab7ef1bb428b37 (patch) | |
tree | 209ff56753daa8af1d416df3d946a3ae1035776a /libavutil/version.h | |
parent | 5c9dcd5c484f56fb9fb5d277256439f0becce12c (diff) | |
download | ffmpeg-a3d3cfa65c01123edf46d22c3fab7ef1bb428b37.tar.gz |
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/version.h')
-rw-r--r-- | libavutil/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/version.h b/libavutil/version.h index f752ddb044..d4f9335a2f 100644 --- a/libavutil/version.h +++ b/libavutil/version.h @@ -80,7 +80,7 @@ #define LIBAVUTIL_VERSION_MAJOR 55 -#define LIBAVUTIL_VERSION_MINOR 67 +#define LIBAVUTIL_VERSION_MINOR 68 #define LIBAVUTIL_VERSION_MICRO 100 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ |