pantry/projects/jpeg.org/jpegxl/fixture2.c
Max Howell c2eb600926
+jpeg-xl (#1315)
Closes #198
2023-04-11 07:40:59 -04:00

12 lines
251 B
C

#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;
}