lepton_jpeg 0.5.8

Rust port of the Lepton lossless JPEG compression library
Documentation
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the Apache License, Version 2.0. See LICENSE.txt in the project root for license information.
 *  This software incorporates material from third parties. See NOTICE.txt for details.
 *--------------------------------------------------------------------------------------------*/

mod block_context;
mod branch;
mod idct;
mod lepton_decoder;
mod lepton_encoder;
pub mod lepton_file_reader;
pub mod lepton_file_writer;
pub mod lepton_header;
mod model;
pub mod multiplexer;
mod neighbor_summary;
mod partial_buffer;
mod probability_tables;
mod quantization_tables;
mod simple_hash;

pub mod simple_threadpool;

mod thread_handoff;
mod vpx_bool_reader;
mod vpx_bool_writer;

#[cfg(feature = "micro_benchmark")]
pub use idct::benchmark_idct;
#[cfg(feature = "micro_benchmark")]
pub use lepton_encoder::benchmark_roundtrip_coefficient;