From 27079a426c9d3db918b158976e44b9b143d78e1c Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sun, 17 Jul 2016 22:24:35 +0200 Subject: buffer: convert to stdatomic --- libavutil/buffer_internal.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'libavutil/buffer_internal.h') diff --git a/libavutil/buffer_internal.h b/libavutil/buffer_internal.h index 64344d8262..90d68aacac 100644 --- a/libavutil/buffer_internal.h +++ b/libavutil/buffer_internal.h @@ -19,6 +19,7 @@ #ifndef AVUTIL_BUFFER_INTERNAL_H #define AVUTIL_BUFFER_INTERNAL_H +#include #include #include "buffer.h" @@ -40,7 +41,7 @@ struct AVBuffer { /** * number of existing AVBufferRef instances referring to this buffer */ - volatile int refcount; + atomic_uint refcount; /** * a callback for freeing the data @@ -85,7 +86,7 @@ struct AVBufferPool { * buffers have been released, then it's safe to free the pool and all * the buffers in it. */ - volatile int refcount; + atomic_uint refcount; int size; void *opaque; -- cgit v1.2.3