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

Function ff_vvc_frame_thread_free

libavcodec/vvc/thread.c:703–715  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

701}
702
703void ff_vvc_frame_thread_free(VVCFrameContext *fc)
704{
705 VVCFrameThread *ft = fc->ft;
706
707 if (!ft)
708 return;
709
710 ff_mutex_destroy(&ft->lock);
711 ff_cond_destroy(&ft->cond);
712 av_freep(&ft->rows);
713 av_freep(&ft->tasks);
714 av_freep(&ft);
715}
716
717static void frame_thread_init_score(VVCFrameContext *fc)
718{

Callers 2

frame_context_freeFunction · 0.85
ff_vvc_frame_thread_initFunction · 0.85

Calls 3

ff_mutex_destroyFunction · 0.85
ff_cond_destroyFunction · 0.85
av_freepFunction · 0.85

Tested by

no test coverage detected