LIBJXL
resizable_parallel_runner.h
Go to the documentation of this file.
1/* Copyright (c) the JPEG XL Project Authors. All rights reserved.
2 *
3 * Use of this source code is governed by a BSD-style
4 * license that can be found in the LICENSE file.
5 */
6
30#ifndef JXL_RESIZABLE_PARALLEL_RUNNER_H_
31#define JXL_RESIZABLE_PARALLEL_RUNNER_H_
32
33#include <jxl/jxl_threads_export.h>
34#include <jxl/memory_manager.h>
35#include <jxl/parallel_runner.h>
36#include <stddef.h>
37#include <stdint.h>
38#include <stdio.h>
39#include <stdlib.h>
40
41#if defined(__cplusplus) || defined(c_plusplus)
42extern "C" {
43#endif
44
48 void* runner_opaque, void* jpegxl_opaque, JxlParallelRunInit init,
49 JxlParallelRunFunction func, uint32_t start_range, uint32_t end_range);
50
55JXL_THREADS_EXPORT void* JxlResizableParallelRunnerCreate(
56 const JxlMemoryManager* memory_manager);
57
61 void* runner_opaque, size_t num_threads);
62
65JXL_THREADS_EXPORT uint32_t
66JxlResizableParallelRunnerSuggestThreads(uint64_t xsize, uint64_t ysize);
67
70JXL_THREADS_EXPORT void JxlResizableParallelRunnerDestroy(void* runner_opaque);
71
72#if defined(__cplusplus) || defined(c_plusplus)
73}
74#endif
75
76#endif /* JXL_RESIZABLE_PARALLEL_RUNNER_H_ */
77
JxlParallelRetCode(* JxlParallelRunInit)(void *jpegxl_opaque, size_t num_threads)
Definition: parallel_runner.h:77
int JxlParallelRetCode
Definition: parallel_runner.h:52
void(* JxlParallelRunFunction)(void *jpegxl_opaque, uint32_t value, size_t thread_id)
Definition: parallel_runner.h:95
JXL_THREADS_EXPORT void JxlResizableParallelRunnerDestroy(void *runner_opaque)
JXL_THREADS_EXPORT void * JxlResizableParallelRunnerCreate(const JxlMemoryManager *memory_manager)
JXL_THREADS_EXPORT uint32_t JxlResizableParallelRunnerSuggestThreads(uint64_t xsize, uint64_t ysize)
JXL_THREADS_EXPORT JxlParallelRetCode JxlResizableParallelRunner(void *runner_opaque, void *jpegxl_opaque, JxlParallelRunInit init, JxlParallelRunFunction func, uint32_t start_range, uint32_t end_range)
JXL_THREADS_EXPORT void JxlResizableParallelRunnerSetThreads(void *runner_opaque, size_t num_threads)
Abstraction functions used by JPEG XL to allocate memory.
Definition: memory_manager.h:51