| 214 | } |
| 215 | |
| 216 | static void pool_free_entry(AVRefStructPool *pool, RefCount *ref) |
| 217 | { |
| 218 | if (pool->free_entry_cb) |
| 219 | pool->free_entry_cb(pool->opaque, get_userdata(ref)); |
| 220 | av_free(ref); |
| 221 | } |
| 222 | |
| 223 | static void pool_return_entry(void *ref_) |
| 224 | { |
no test coverage detected