pantry/projects/jpeg.org/jpegxl/fixture2.c

12 lines
251 B
C
Raw Normal View History

2023-04-11 14:40:59 +03:00
#include <jxl/thread_parallel_runner.h>
#include <stdlib.h>
int main() {
void* runner = JxlThreadParallelRunnerCreate(NULL, 1);
if (runner == NULL) {
return EXIT_FAILURE;
}
JxlThreadParallelRunnerDestroy(runner);
return EXIT_SUCCESS;
}