| 685 | } |
| 686 | |
| 687 | av_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 | |
| 698 | av_cold void ff_vvc_executor_free(FFExecutor **e) |
| 699 | { |
no test coverage detected