LIBJXL
Loading...
Searching...
No Matches
resizable_parallel_runner_cxx.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
15
16#ifndef JXL_RESIZABLE_PARALLEL_RUNNER_CXX_H_
17#define JXL_RESIZABLE_PARALLEL_RUNNER_CXX_H_
18
19#include <jxl/memory_manager.h>
21
22#include <memory>
23
24#ifndef __cplusplus
25#error \
26 "This a C++ only header. Use jxl/jxl_resizable_parallel_runner.h from C" \
27 "sources."
28#endif
29
36
42typedef std::unique_ptr<void, JxlResizableParallelRunnerDestroyStruct>
44
57static inline JxlResizableParallelRunnerPtr JxlResizableParallelRunnerMake(
58 const JxlMemoryManager* memory_manager) {
60 JxlResizableParallelRunnerCreate(memory_manager));
61}
62
63#endif // JXL_RESIZABLE_PARALLEL_RUNNER_CXX_H_
64
std::unique_ptr< void, JxlResizableParallelRunnerDestroyStruct > JxlResizableParallelRunnerPtr
Definition resizable_parallel_runner_cxx.h:43
JXL_THREADS_EXPORT void JxlResizableParallelRunnerDestroy(void *runner_opaque)
JXL_THREADS_EXPORT void * JxlResizableParallelRunnerCreate(const JxlMemoryManager *memory_manager)
Abstraction functions used by JPEG XL to allocate memory.
implementation using std::thread of a resizeable JxlParallelRunner.
Definition memory_manager.h:51
Definition resizable_parallel_runner_cxx.h:32
void operator()(void *runner)
Calls JxlResizableParallelRunnerDestroy() on the passed runner.
Definition resizable_parallel_runner_cxx.h:34