libjxl

FORK: libjxl patches used on blog
git clone https://git.neptards.moe/blog/libjxl.git
Log | Files | Refs | Submodules | README | LICENSE

color_transform.h (515B)


      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 
      6 #ifndef LIB_JPEGLI_COLOR_TRANSFORM_H_
      7 #define LIB_JPEGLI_COLOR_TRANSFORM_H_
      8 
      9 #include "lib/jpegli/common.h"
     10 #include "lib/jxl/base/compiler_specific.h"
     11 
     12 namespace jpegli {
     13 
     14 void ChooseColorTransform(j_compress_ptr cinfo);
     15 
     16 void ChooseColorTransform(j_decompress_ptr cinfo);
     17 
     18 }  // namespace jpegli
     19 
     20 #endif  // LIB_JPEGLI_COLOR_TRANSFORM_H_