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

Function av_executor_free

libavutil/executor.c:184–193  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

182}
183
184void 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
195void av_executor_execute(AVExecutor *e, AVTask *t)
196{

Callers

nothing calls this directly

Calls 1

executor_freeFunction · 0.70

Tested by

no test coverage detected