libjxl

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

pgx.h (503B)


      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_EXTRAS_ENC_PGX_H_
      7 #define LIB_EXTRAS_ENC_PGX_H_
      8 
      9 // Encodes PGX pixels in memory.
     10 
     11 #include <stddef.h>
     12 #include <stdint.h>
     13 
     14 #include "lib/extras/enc/encode.h"
     15 
     16 namespace jxl {
     17 namespace extras {
     18 
     19 std::unique_ptr<Encoder> GetPGXEncoder();
     20 
     21 }  // namespace extras
     22 }  // namespace jxl
     23 
     24 #endif  // LIB_EXTRAS_ENC_PGX_H_