libjxl

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

codec_config.h (621B)


      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 TOOLS_CODEC_CONFIG_H_
      7 #define TOOLS_CODEC_CONFIG_H_
      8 
      9 #include <stdint.h>
     10 
     11 #include <string>
     12 
     13 namespace jpegxl {
     14 namespace tools {
     15 
     16 // Returns a short string describing the codec version (if known) and build
     17 // settings such as sanitizers and SIMD targets. Used in the benchmark and
     18 // command-line tools.
     19 std::string CodecConfigString(uint32_t lib_version);
     20 
     21 }  // namespace tools
     22 }  // namespace jpegxl
     23 
     24 #endif  // TOOLS_CODEC_CONFIG_H_