]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_deshake.c
lavf/mux: Fix a typo checking aspect ratios.
[ffmpeg] / libavfilter / vf_deshake.c
index 9a56b71b3938cced715e4480f177bc184f53e2ea..50aa451a3230c330c5576c8a694efcb10313f49c 100644 (file)
@@ -57,7 +57,7 @@
 #include "libavutil/mem.h"
 #include "libavutil/opt.h"
 #include "libavutil/pixdesc.h"
-#include "libavcodec/me_cmp.h"
+#include "libavcodec/dsputil.h"
 
 #include "deshake.h"
 #include "deshake_opencl.h"
@@ -414,7 +414,7 @@ static int config_props(AVFilterLink *link)
     deshake->last.zoom = 0;
 
     deshake->avctx = avcodec_alloc_context3(NULL);
-    ff_me_cmp_init(&deshake->c, deshake->avctx);
+    avpriv_dsputil_init(&deshake->c, deshake->avctx);
 
     return 0;
 }