| 200 | } |
| 201 | |
| 202 | av_cold void ff_executor_free(FFExecutor **executor) |
| 203 | { |
| 204 | int thread_count; |
| 205 | |
| 206 | if (!executor || !*executor) |
| 207 | return; |
| 208 | thread_count = (*executor)->thread_count; |
| 209 | executor_free(*executor, thread_count, thread_count); |
| 210 | *executor = NULL; |
| 211 | } |
| 212 | |
| 213 | void ff_executor_execute(FFExecutor *e, FFTask *t) |
| 214 | { |
no test coverage detected