summaryrefslogtreecommitdiffstats
path: root/video/filter/vf_divtc.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/filter/vf_divtc.c')
-rw-r--r--video/filter/vf_divtc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/video/filter/vf_divtc.c b/video/filter/vf_divtc.c
index 5b57e5a4cb..b4718b355f 100644
--- a/video/filter/vf_divtc.c
+++ b/video/filter/vf_divtc.c
@@ -202,8 +202,9 @@ static int imgop(int(*planeop)(unsigned char *, unsigned char *,
int sum = 0;
for (int p = 0; p < dst->num_planes; p++) {
sum += planeop(dst->planes[p], src ? src->planes[p] : NULL,
- dst->w * (dst->fmt.bpp[p] / 8), dst->plane_h[p],
- dst->stride[p], src ? src->stride[p] : 0, arg);
+ (dst->w * dst->fmt.bytes[p]) >> dst->fmt.xs[p],
+ dst->plane_h[p], dst->stride[p],
+ src ? src->stride[p] : 0, arg);
}
return sum;
}