]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/lpc.h
hevc: eliminate an unneeded intermediate variable
[ffmpeg] / libavcodec / lpc.h
index c41a1f8a03b89562ffe264a5c544fa8b37be07e2..6b3f80e2bccb1a0907eb6eb8a0db6217552d6d72 100644 (file)
@@ -152,7 +152,7 @@ static inline int compute_lpc_coefs(const LPC_TYPE *autoc, int max_order,
                                     int normalize)
 {
     int i, j;
-    LPC_TYPE err;
+    LPC_TYPE err = { 0 };
     LPC_TYPE *lpc_last = lpc;
 
     if (normalize)