diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2020-04-16 09:52:50 +0200 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2020-04-16 09:52:50 +0200 |
commit | e781ccc3c7149249c03885e41da02c50faf745bd (patch) | |
tree | 1305d79449e2a6bbcae17b6351dbb60c93f95ae6 /nihav-codec-support/src/codecs/mod.rs | |
parent | 771e522a17b7724a698191ba6f6fe59054161125 (diff) | |
download | nihav-e781ccc3c7149249c03885e41da02c50faf745bd.tar.gz |
move IMA ADPCM decoder into codec_support
Diffstat (limited to 'nihav-codec-support/src/codecs/mod.rs')
-rw-r--r-- | nihav-codec-support/src/codecs/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nihav-codec-support/src/codecs/mod.rs b/nihav-codec-support/src/codecs/mod.rs index 4353ad9..0d5307c 100644 --- a/nihav-codec-support/src/codecs/mod.rs +++ b/nihav-codec-support/src/codecs/mod.rs @@ -311,3 +311,5 @@ pub const ZIGZAG: [usize; 64] = [ 58, 59, 52, 45, 38, 31, 39, 46, 53, 60, 61, 54, 47, 55, 62, 63 ]; + +pub mod imaadpcm; |