Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
qbnu committed Jul 2, 2024
1 parent 7cb1046 commit 60d775f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/JPEGView/JXLWrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
#include "jxl/decode_cxx.h"
#include "jxl/encode.h"
#include "jxl/encode_cxx.h"
#include <jxl/thread_parallel_runner.h>
#include <jxl/thread_parallel_runner_cxx.h>
#include "jxl/thread_parallel_runner.h"
#include "jxl/thread_parallel_runner_cxx.h"
#include "jxl/resizable_parallel_runner.h"
#include "jxl/resizable_parallel_runner_cxx.h"
#include "Helpers.h"
Expand Down Expand Up @@ -244,6 +244,7 @@ void JxlReader::DeleteCache() {
cache = { 0 };
}

// based on https://github.com/libjxl/libjxl/blob/main/examples/encode_oneshot.cc
void* JxlReader::Compress(const void* buffer,
int width,
int height,
Expand Down

0 comments on commit 60d775f

Please sign in to comment.