]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_yadif.c
Merge commit '892f037c55d86ce36f8705fbeab052189312a13e'
[ffmpeg] / libavfilter / vf_yadif.c
index 8791129201e410923742e6e2e9b91ee3e400a002..d9668d085898d7a4eab939c7145f38410dceb2ce 100644 (file)
@@ -233,8 +233,8 @@ static void filter(AVFilterContext *ctx, AVFrame *dstpic,
         int h = dstpic->height;
 
         if (i == 1 || i == 2) {
-            w = FF_CEIL_RSHIFT(w, yadif->csp->log2_chroma_w);
-            h = FF_CEIL_RSHIFT(h, yadif->csp->log2_chroma_h);
+            w = AV_CEIL_RSHIFT(w, yadif->csp->log2_chroma_w);
+            h = AV_CEIL_RSHIFT(h, yadif->csp->log2_chroma_h);
         }