diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2012-12-02 14:34:50 -0800 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-03-08 07:32:36 +0100 |
commit | 65f1d45dcc71186ede72fff950996099d23359bd (patch) | |
tree | 6abb05fb0478c14c82dfc60262e05d50acda5287 /libavutil/Makefile | |
parent | eae0879d961b78717dd2a0899809ad22819ae9e3 (diff) | |
download | ffmpeg-65f1d45dcc71186ede72fff950996099d23359bd.tar.gz |
lavu: add support for atomic operations.
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>
Diffstat (limited to 'libavutil/Makefile')
-rw-r--r-- | libavutil/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index 465b2fc207..4406b1386d 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -54,6 +54,7 @@ BUILT_HEADERS = avconfig.h OBJS = adler32.o \ aes.o \ + atomic.o \ audio_fifo.o \ avstring.o \ base64.o \ @@ -100,6 +101,7 @@ SKIPHEADERS = old_pix_fmts.h TESTPROGS = adler32 \ aes \ + atomic \ avstring \ base64 \ blowfish \ |