| 97 | } |
| 98 | |
| 99 | static void free_progress(AVRefStructOpaque unused, void *obj) |
| 100 | { |
| 101 | FrameProgress *p = (FrameProgress *)obj; |
| 102 | |
| 103 | if (p->has_cond) |
| 104 | ff_cond_destroy(&p->cond); |
| 105 | if (p->has_lock) |
| 106 | ff_mutex_destroy(&p->lock); |
| 107 | } |
| 108 | |
| 109 | static FrameProgress *alloc_progress(void) |
| 110 | { |
nothing calls this directly
no test coverage detected