[FFmpeg-devel] [PATCH] buffer: use the atomic get instead of the add and fetch variant.

Clément Bœsch ubitux at gmail.com
Tue Mar 12 08:31:32 CET 2013


---
 libavutil/buffer.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavutil/buffer.c b/libavutil/buffer.c
index 21e102d..d268a7f 100644
--- a/libavutil/buffer.c
+++ b/libavutil/buffer.c
@@ -122,7 +122,7 @@ int av_buffer_is_writable(const AVBufferRef *buf)
     if (buf->buffer->flags & AV_BUFFER_FLAG_READONLY)
         return 0;
 
-    return avpriv_atomic_int_add_and_fetch(&buf->buffer->refcount, 0) == 1;
+    return avpriv_atomic_int_get(&buf->buffer->refcount) == 1;
 }
 
 int av_buffer_make_writable(AVBufferRef **pbuf)
-- 
1.8.1.5



More information about the ffmpeg-devel mailing list