[FFmpeg-cvslog] avcodec/refstruct: Allow to share pools
Andreas Rheinhardt
git at videolan.org
Wed Nov 1 22:02:52 EET 2023
ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Tue Aug 16 14:04:27 2022 +0200| [0c44f63b0282e2e830d5bf479016984cff69221a] | committer: Andreas Rheinhardt
avcodec/refstruct: Allow to share pools
To do this, make FFRefStructPool itself refcounted according
to the RefStruct API.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0c44f63b0282e2e830d5bf479016984cff69221a
---
libavcodec/refstruct.c | 34 +++++++++++++++++++++-------------
libavcodec/refstruct.h | 5 ++++-
2 files changed, 25 insertions(+), 14 deletions(-)
diff --git a/libavcodec/refstruct.c b/libavcodec/refstruct.c
index 861f847dd7..7597f6d0ee 100644
--- a/libavcodec/refstruct.c
+++ b/libavcodec/refstruct.c
@@ -210,7 +210,7 @@ static void pool_free(FFRefStructPool *pool)
ff_mutex_destroy(&pool->mutex);
if (pool->free_cb)
pool->free_cb(pool->opaque);
- av_free(pool);
+ av_free(get_refcount(pool));
}
static void pool_free_entry(FFRefStructPool *pool, RefCount *ref)
@@ -301,13 +301,22 @@ void *ff_refstruct_pool_get(FFRefStructPool *pool)
return ret;
}
-void ff_refstruct_pool_uninit(FFRefStructPool **poolp)
+/**
+ * Hint: The content of pool_unref() and refstruct_pool_uninit()
+ * could currently be merged; they are only separate functions
+ * in case we would ever introduce weak references.
+ */
+static void pool_unref(void *ref)
{
- FFRefStructPool *pool = *poolp;
- RefCount *entry;
+ FFRefStructPool *pool = get_userdata(ref);
+ if (atomic_fetch_sub_explicit(&pool->refcount, 1, memory_order_acq_rel) == 1)
+ pool_free(pool);
+}
- if (!pool)
- return;
+static void refstruct_pool_uninit(FFRefStructOpaque unused, void *obj)
+{
+ FFRefStructPool *pool = obj;
+ RefCount *entry;
ff_mutex_lock(&pool->mutex);
ff_assert(!pool->uninited);
@@ -321,11 +330,6 @@ void ff_refstruct_pool_uninit(FFRefStructPool **poolp)
pool_free_entry(pool, entry);
entry = next;
}
-
- if (atomic_fetch_sub_explicit(&pool->refcount, 1, memory_order_acq_rel) == 1)
- pool_free(pool);
-
- *poolp = NULL;
}
FFRefStructPool *ff_refstruct_pool_alloc(size_t size, unsigned flags)
@@ -340,11 +344,13 @@ FFRefStructPool *ff_refstruct_pool_alloc_ext_c(size_t size, unsigned flags,
void (*free_entry_cb)(FFRefStructOpaque opaque, void *obj),
void (*free_cb)(FFRefStructOpaque opaque))
{
- FFRefStructPool *pool = av_mallocz(sizeof(*pool));
+ FFRefStructPool *pool = ff_refstruct_alloc_ext(sizeof(*pool), 0, NULL,
+ refstruct_pool_uninit);
int err;
if (!pool)
return NULL;
+ get_refcount(pool)->free = pool_unref;
pool->size = size;
pool->opaque = opaque;
@@ -371,7 +377,9 @@ FFRefStructPool *ff_refstruct_pool_alloc_ext_c(size_t size, unsigned flags,
err = ff_mutex_init(&pool->mutex, NULL);
if (err) {
- av_free(pool);
+ // Don't call ff_refstruct_uninit() on pool, as it hasn't been properly
+ // set up and is just a POD right now.
+ av_free(get_refcount(pool));
return NULL;
}
return pool;
diff --git a/libavcodec/refstruct.h b/libavcodec/refstruct.h
index 9a22e5dca7..c64ad62b6b 100644
--- a/libavcodec/refstruct.h
+++ b/libavcodec/refstruct.h
@@ -289,6 +289,9 @@ void *ff_refstruct_pool_get(FFRefStructPool *pool);
* @param poolp pointer to a pointer to either NULL or a pool to be freed.
* `*poolp` will be set to NULL.
*/
-void ff_refstruct_pool_uninit(FFRefStructPool **poolp);
+static inline void ff_refstruct_pool_uninit(FFRefStructPool **poolp)
+{
+ ff_refstruct_unref(poolp);
+}
#endif /* AVCODEC_REFSTRUCT_H */
More information about the ffmpeg-cvslog
mailing list