MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / ff_executor_free

Function ff_executor_free

libavcodec/executor.c:202–211  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

200}
201
202av_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
213void ff_executor_execute(FFExecutor *e, FFTask *t)
214{

Callers 1

ff_vvc_executor_freeFunction · 0.85

Calls 1

executor_freeFunction · 0.70

Tested by

no test coverage detected