sperr-sys 0.2.1+sperr.0.8.5

Low-level Rust bindings to the SPERR compressor
Documentation
#include "SPECK2D_FLT.h"
#include "SPECK2D_INT_DEC.h"
#include "SPECK2D_INT_ENC.h"

void sperr::SPECK2D_FLT::m_instantiate_encoder()
{
  switch (m_uint_flag) {
    case UINTType::UINT8:
      if (m_encoder.index() != 0 || std::get<0>(m_encoder) == nullptr)
        m_encoder = std::make_unique<SPECK2D_INT_ENC<uint8_t>>();
      break;
    case UINTType::UINT16:
      if (m_encoder.index() != 1 || std::get<1>(m_encoder) == nullptr)
        m_encoder = std::make_unique<SPECK2D_INT_ENC<uint16_t>>();
      break;
    case UINTType::UINT32:
      if (m_encoder.index() != 2 || std::get<2>(m_encoder) == nullptr)
        m_encoder = std::make_unique<SPECK2D_INT_ENC<uint32_t>>();
      break;
    default:
      if (m_encoder.index() != 3 || std::get<3>(m_encoder) == nullptr)
        m_encoder = std::make_unique<SPECK2D_INT_ENC<uint64_t>>();
  }
}

void sperr::SPECK2D_FLT::m_instantiate_decoder()
{
  switch (m_uint_flag) {
    case UINTType::UINT8:
      if (m_decoder.index() != 0 || std::get<0>(m_decoder) == nullptr)
        m_decoder = std::make_unique<SPECK2D_INT_DEC<uint8_t>>();
      break;
    case UINTType::UINT16:
      if (m_decoder.index() != 1 || std::get<1>(m_decoder) == nullptr)
        m_decoder = std::make_unique<SPECK2D_INT_DEC<uint16_t>>();
      break;
    case UINTType::UINT32:
      if (m_decoder.index() != 2 || std::get<2>(m_decoder) == nullptr)
        m_decoder = std::make_unique<SPECK2D_INT_DEC<uint32_t>>();
      break;
    default:
      if (m_decoder.index() != 3 || std::get<3>(m_decoder) == nullptr)
        m_decoder = std::make_unique<SPECK2D_INT_DEC<uint64_t>>();
  }
}

void sperr::SPECK2D_FLT::m_wavelet_xform()
{
  m_cdf.dwt2d();
}

void sperr::SPECK2D_FLT::m_inverse_wavelet_xform(bool multi_res)
{
  if (!multi_res)
    m_cdf.idwt2d();
  else
    m_hierarchy = m_cdf.idwt2d_multi_res();
}