Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/vf_pp7.c')
-rw-r--r--libavfilter/vf_pp7.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_pp7.c b/libavfilter/vf_pp7.c
index 9e78c39ac7..570a1c90b9 100644
--- a/libavfilter/vf_pp7.c
+++ b/libavfilter/vf_pp7.c
@@ -328,8 +328,8 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
qp_table = av_frame_get_qp_table(in, &qp_stride, &pp7->qscale_type);
if (!ctx->is_disabled) {
- const int cw = FF_CEIL_RSHIFT(inlink->w, pp7->hsub);
- const int ch = FF_CEIL_RSHIFT(inlink->h, pp7->vsub);
+ const int cw = AV_CEIL_RSHIFT(inlink->w, pp7->hsub);
+ const int ch = AV_CEIL_RSHIFT(inlink->h, pp7->vsub);
/* get a new frame if in-place is not possible or if the dimensions
* are not multiple of 8 */