tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

enc_squeeze.h (594B)


      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_JXL_MODULAR_TRANSFORM_ENC_SQUEEZE_H_
      7 #define LIB_JXL_MODULAR_TRANSFORM_ENC_SQUEEZE_H_
      8 
      9 #include "lib/jxl/fields.h"
     10 #include "lib/jxl/modular/modular_image.h"
     11 #include "lib/jxl/modular/transform/transform.h"
     12 
     13 namespace jxl {
     14 
     15 Status FwdSqueeze(Image &input, std::vector<SqueezeParams> parameters,
     16                  ThreadPool *pool);
     17 
     18 }  // namespace jxl
     19 
     20 #endif  // LIB_JXL_MODULAR_TRANSFORM_ENC_SQUEEZE_H_