mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-24 00:02:52 +00:00
avutil/buffer_internal: leave the buffer pool entries volatile
Theres no reason to remove the volatile keyword in a release branch Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
f783259fdb
commit
0e216ed407
@ -69,12 +69,12 @@ typedef struct BufferPoolEntry {
|
||||
void (*free)(void *opaque, uint8_t *data);
|
||||
|
||||
AVBufferPool *pool;
|
||||
struct BufferPoolEntry *next;
|
||||
struct BufferPoolEntry * volatile next;
|
||||
} BufferPoolEntry;
|
||||
|
||||
struct AVBufferPool {
|
||||
AVMutex mutex;
|
||||
BufferPoolEntry *pool;
|
||||
BufferPoolEntry * volatile pool;
|
||||
|
||||
/*
|
||||
* This is used to track when the pool is to be freed.
|
||||
|
Loading…
Reference in New Issue
Block a user