diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2019-05-18 11:43:41 +0200 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2019-05-18 11:43:41 +0200 |
commit | 01b4e528eb3b54c894fea4cdd9236568ab58c855 (patch) | |
tree | c0510f7124f88a73b6f8db88cb8d79a501ef2f29 /nihav-core/src/codecs/mod.rs | |
parent | 74afc7de723f0e5a3d3ae93ccc775ef63c62b746 (diff) | |
download | nihav-01b4e528eb3b54c894fea4cdd9236568ab58c855.tar.gz |
core: make blockdsp an independent feature
Diffstat (limited to 'nihav-core/src/codecs/mod.rs')
-rw-r--r-- | nihav-core/src/codecs/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nihav-core/src/codecs/mod.rs b/nihav-core/src/codecs/mod.rs index 311a45e..6cc8880 100644 --- a/nihav-core/src/codecs/mod.rs +++ b/nihav-core/src/codecs/mod.rs @@ -263,7 +263,7 @@ pub struct DecoderInfo { pub get_decoder: fn () -> Box<dyn NADecoder>, } -#[cfg(any(feature="h263"))] +#[cfg(any(feature="blockdsp"))] pub mod blockdsp; #[cfg(feature="h263")] |