| 169 | } |
| 170 | |
| 171 | static void async_unlock(FrameThreadContext *fctx) |
| 172 | { |
| 173 | pthread_mutex_lock(&fctx->async_mutex); |
| 174 | av_assert0(fctx->async_lock); |
| 175 | fctx->async_lock = 0; |
| 176 | pthread_cond_broadcast(&fctx->async_cond); |
| 177 | pthread_mutex_unlock(&fctx->async_mutex); |
| 178 | } |
| 179 | |
| 180 | static void thread_set_name(PerThreadContext *p) |
| 181 | { |
no test coverage detected