| 68 | } RefCount; |
| 69 | |
| 70 | static RefCount *get_refcount(void *obj) |
| 71 | { |
| 72 | RefCount *ref = (RefCount*)((char*)obj - REFCOUNT_OFFSET); |
| 73 | ff_assert(ref->cookie == REFSTRUCT_COOKIE); |
| 74 | return ref; |
| 75 | } |
| 76 | |
| 77 | static const RefCount *cget_refcount(const void *obj) |
| 78 | { |
no outgoing calls
no test coverage detected