blob: 284a6b01233bf3e7407232a5ac425b79b13464c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Copyright (c) the JPEG XL Project Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
#ifndef TOOLS_EPF_H_
#define TOOLS_EPF_H_
#include "lib/jxl/base/status.h"
#include "lib/jxl/codec_in_out.h"
namespace jpegxl {
namespace tools {
jxl::Status RunEPF(uint32_t epf_iters, float distance, int sharpness_parameter,
jxl::CodecInOut* io, jxl::ThreadPool* pool);
} // namespace tools
} // namespace jpegxl
#endif // TOOLS_EPF_H_
|