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

Function ff_vvc_executor_alloc

libavcodec/vvc/thread.c:687–696  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

685}
686
687av_cold FFExecutor* ff_vvc_executor_alloc(VVCContext *s, const int thread_count)
688{
689 FFTaskCallbacks callbacks = {
690 s,
691 sizeof(VVCLocalContext),
692 PRIORITY_LOWEST + 1,
693 task_run,
694 };
695 return ff_executor_alloc(&callbacks, thread_count);
696}
697
698av_cold void ff_vvc_executor_free(FFExecutor **e)
699{

Callers 1

vvc_decode_initFunction · 0.85

Calls 1

ff_executor_allocFunction · 0.85

Tested by

no test coverage detected