]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_fftfilt.c
Merge commit '03ef89faf23c4851848208c9fe004cd9ef690cec'
[ffmpeg] / libavfilter / vf_fftfilt.c
index 8cbfa35142aaa72f99f401d0d0f4e0f532a3dc0b..307b41a7338a4d1b5fceebffcc981452a7628be3 100644 (file)
@@ -266,8 +266,8 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
         int h = inlink->h;
 
         if (plane == 1 || plane == 2) {
-            w = FF_CEIL_RSHIFT(w, desc->log2_chroma_w);
-            h = FF_CEIL_RSHIFT(h, desc->log2_chroma_h);
+            w = AV_CEIL_RSHIFT(w, desc->log2_chroma_w);
+            h = AV_CEIL_RSHIFT(h, desc->log2_chroma_h);
         }
 
         rdft_horizontal(s, in, w, h, plane);