* Mark the pool as being available for freeing. It will actually be freed * only once all the allocated buffers associated with the pool are released. * Thus it is safe to call this function while some of the allocated buffers * are still in use. * * It is illegal to try to get a new entry after this function has been called. * * @param poolp pointer to a pointer to either NULL or a pool to
| 290 | * `*poolp` will be set to NULL. |
| 291 | */ |
| 292 | static inline void av_refstruct_pool_uninit(AVRefStructPool **poolp) |
| 293 | { |
| 294 | av_refstruct_unref(poolp); |
| 295 | } |
| 296 | |
| 297 | #endif /* AVUTIL_REFSTRUCT_H */ |
no test coverage detected