| 182 | } |
| 183 | |
| 184 | void av_executor_free(AVExecutor **executor) |
| 185 | { |
| 186 | int thread_count; |
| 187 | |
| 188 | if (!executor || !*executor) |
| 189 | return; |
| 190 | thread_count = (*executor)->thread_count; |
| 191 | executor_free(*executor, thread_count, thread_count); |
| 192 | *executor = NULL; |
| 193 | } |
| 194 | |
| 195 | void av_executor_execute(AVExecutor *e, AVTask *t) |
| 196 | { |
nothing calls this directly
no test coverage detected