codec_support: fix or silence clippy warnings
[nihav.git] / nihav-codec-support / src / codecs / imaadpcm.rs
index 6ff92eb6b2d9856fad9b491dbde14f035bace044..a2da1d316bc90dd42abddce01d26941b4d3a00ff 100644 (file)
@@ -57,4 +57,8 @@ impl IMAState {
     }
 }
 
-
+impl Default for IMAState {
+    fn default() -> Self {
+        Self::new()
+    }
+}