| 42 | } |
| 43 | |
| 44 | av_cold void ff_thread_progress_destroy(ThreadProgress *pro) |
| 45 | { |
| 46 | #if HAVE_THREADS |
| 47 | ff_pthread_free(pro, thread_progress_offsets); |
| 48 | #else |
| 49 | pro->init = 0; |
| 50 | #endif |
| 51 | } |
| 52 | |
| 53 | void ff_thread_progress_report(ThreadProgress *pro, int n) |
| 54 | { |
no test coverage detected