]> git.sesse.net Git - ffmpeg/commitdiff
lavfi/deshake: remove unecessary check before unref.
authorClément Bœsch <ubitux@gmail.com>
Thu, 6 Dec 2012 15:14:38 +0000 (16:14 +0100)
committerClément Bœsch <ubitux@gmail.com>
Thu, 6 Dec 2012 15:20:31 +0000 (16:20 +0100)
libavfilter/vf_deshake.c

index 5c562eb2b4fa4da50076485e1eb14e7d503e8170..68d72673ae96655a9d23012c9737e0e6cb62491d 100644 (file)
@@ -530,8 +530,7 @@ static int filter_frame(AVFilterLink *link, AVFilterBufferRef *in)
 
     // Store the current frame as the reference frame for calculating the
     // motion of the next frame
-    if (deshake->ref != NULL)
-        avfilter_unref_buffer(deshake->ref);
+    avfilter_unref_buffer(deshake->ref);
 
     // Cleanup the old reference frame
     deshake->ref = in;