* Equivalent to av_refstruct_alloc_ext(size, 0, NULL, NULL) */
| 102 | * Equivalent to av_refstruct_alloc_ext(size, 0, NULL, NULL) |
| 103 | */ |
| 104 | static inline |
| 105 | void *av_refstruct_allocz(size_t size) |
| 106 | { |
| 107 | return av_refstruct_alloc_ext(size, 0, NULL, NULL); |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * Decrement the reference count of the underlying object and automatically |
no test coverage detected