| 206 | }; |
| 207 | |
| 208 | static void pool_free(AVRefStructPool *pool) |
| 209 | { |
| 210 | ff_mutex_destroy(&pool->mutex); |
| 211 | if (pool->free_cb) |
| 212 | pool->free_cb(pool->opaque); |
| 213 | av_free(get_refcount(pool)); |
| 214 | } |
| 215 | |
| 216 | static void pool_free_entry(AVRefStructPool *pool, RefCount *ref) |
| 217 | { |
no test coverage detected