]> git.nihav.org Git - nihav.git/blobdiff - nihav-duck/src/codecs/vp7dsp.rs
detect: fix Bink magic words
[nihav.git] / nihav-duck / src / codecs / vp7dsp.rs
index 0b141d2c2352d56485c425a7499b9ff24f027ae4..6dfc98fb36ec3607c784950cea24d79c11d13ca0 100644 (file)
@@ -1,5 +1,5 @@
 use nihav_core::frame::*;
-use nihav_core::codecs::blockdsp::edge_emu;
+use nihav_codec_support::codecs::blockdsp::edge_emu;
 
 fn clip_u8(val: i16) -> u8 {
     val.max(0).min(255) as u8
@@ -58,7 +58,7 @@ impl Default for IPredContext {
 const DCT_COEFFS: [i32; 16] = [
     23170,  23170,  23170,  23170,
     30274,  12540, -12540, -30274,
-    23170, -23170, -23170,  23170, 
+    23170, -23170, -23170,  23170,
     12540, -30274,  30274, -12540
 ];