codec_support: fix or silence clippy warnings
[nihav.git] / nihav-codec-support / src / codecs / h263 / code.rs
index 05779910524202310de2906e4b42d787a41666f4..51aa1e743145fe88f69811d81a8961b8fecb5937 100644 (file)
@@ -339,6 +339,7 @@ fn h263_interp11_avg(dst: &mut [u8], dstride: usize, src: &[u8], sstride: usize,
 pub const H263_INTERP_AVG_FUNCS: &[blockdsp::BlkInterpFunc] = &[
         h263_interp00_avg, h263_interp01_avg, h263_interp10_avg, h263_interp11_avg ];
 
+#[derive(Default)]
 pub struct H263BlockDSP { }
 
 impl H263BlockDSP {