aboutsummaryrefslogtreecommitdiffstats
path: root/src/wavwriter.rs
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2019-01-17 12:26:49 +0100
committerKostya Shishkov <kostya.shishkov@gmail.com>2019-01-17 12:26:49 +0100
commit98b31ef77be7fdff7d8b209358b37626a5cb7be7 (patch)
tree9e546f68000a62ccf16f91a594c5c20f217ea6a9 /src/wavwriter.rs
parent1e596ff31b7631a5ea3a8bce6aac073c10f2732b (diff)
downloadnihav-tool-98b31ef77be7fdff7d8b209358b37626a5cb7be7.tar.gz
adapt to new split crates
Diffstat (limited to 'src/wavwriter.rs')
-rw-r--r--src/wavwriter.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wavwriter.rs b/src/wavwriter.rs
index 2296f6f..51700f7 100644
--- a/src/wavwriter.rs
+++ b/src/wavwriter.rs
@@ -1,7 +1,7 @@
-extern crate nihav;
+extern crate nihav_core;
-use nihav::io::byteio::*;
-use nihav::frame::*;
+use nihav_core::io::byteio::*;
+use nihav_core::frame::*;
use std::fs::File;
use std::io::SeekFrom;