jpeg-decoder 0.1.9

JPEG decoder
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
extern crate byteorder;
#[cfg(feature="rayon")]
extern crate rayon;

pub use decoder::{Decoder, ImageInfo, PixelFormat};
pub use error::{Error, UnsupportedFeature};

mod decoder;
mod error;
mod huffman;
mod idct;
mod marker;
mod parser;
mod upsampler;
mod worker_thread;