1 | //! Decoding and Encoding of WebP Images |
2 | |
3 | #[cfg (feature = "webp" )] |
4 | pub use self::encoder::{WebPEncoder, WebPQuality}; |
5 | |
6 | #[cfg (feature = "webp" )] |
7 | mod encoder; |
8 | |
9 | #[cfg (feature = "webp" )] |
10 | pub use self::decoder::WebPDecoder; |
11 | |
12 | #[cfg (feature = "webp" )] |
13 | mod decoder; |
14 | #[cfg (feature = "webp" )] |
15 | mod extended; |
16 | #[cfg (feature = "webp" )] |
17 | mod huffman; |
18 | #[cfg (feature = "webp" )] |
19 | mod loop_filter; |
20 | #[cfg (feature = "webp" )] |
21 | mod lossless; |
22 | #[cfg (feature = "webp" )] |
23 | mod lossless_transform; |
24 | #[cfg (feature = "webp" )] |
25 | mod transform; |
26 | |
27 | #[cfg (feature = "webp" )] |
28 | pub mod vp8; |
29 | |