split nihav-codec-support crate from nihav-core
[nihav.git] / nihav-codec-support / src / codecs / blockdsp.rs
similarity index 99%
rename from nihav-core/src/codecs/blockdsp.rs
rename to nihav-codec-support/src/codecs/blockdsp.rs
index 0b66527ea9b67e1098416b3a2022a0ff288b9fe5..da92742cec741a09514379aa029ea6eb4b5bf163 100644 (file)
@@ -1,5 +1,5 @@
 //! Various pixel block manipulation functions.
-use crate::frame::*;
+use nihav_core::frame::*;
 
 /// Puts YUV420 16x16 macroblock data onto picture in the requested place.
 pub fn put_blocks(buf: &mut NAVideoBuffer<u8>, xpos: usize, ypos: usize, blk: &[[i16;64]; 6]) {