summaryrefslogtreecommitdiff
path: root/libavfilter/vf_interlace.c
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2014-12-02 14:58:38 +0000
committerVittorio Giovara <vittorio.giovara@gmail.com>2015-01-05 15:35:46 +0100
commit696141e898193311c994b399a8dc60713709092f (patch)
tree4512329d142c1dea57511f56725b253e7765a545 /libavfilter/vf_interlace.c
parentfe082998683334e7f573cfe3876810fb80c5249c (diff)
vf_interlace: use image width rather than linesize
Based on a patch by Michael Niedermayer <michaelni@gmx.at>.
Diffstat (limited to 'libavfilter/vf_interlace.c')
-rw-r--r--libavfilter/vf_interlace.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/libavfilter/vf_interlace.c b/libavfilter/vf_interlace.c
index 3c36568546..3e2a044ca0 100644
--- a/libavfilter/vf_interlace.c
+++ b/libavfilter/vf_interlace.c
@@ -131,16 +131,17 @@ static void copy_picture_field(InterlaceContext *s,
int lowpass)
{
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
+ int hsub = desc->log2_chroma_w;
int vsub = desc->log2_chroma_h;
int plane, j;
for (plane = 0; plane < desc->nb_components; plane++) {
+ int cols = (plane == 1 || plane == 2) ? -(-inlink->w) >> hsub : inlink->w;
int lines = (plane == 1 || plane == 2) ? -(-inlink->h) >> vsub : inlink->h;
- ptrdiff_t linesize = av_image_get_linesize(inlink->format, inlink->w, plane);
uint8_t *dstp = dst_frame->data[plane];
const uint8_t *srcp = src_frame->data[plane];
- av_assert0(linesize >= 0);
+ av_assert0(cols >= 0);
lines = (lines + (field_type == FIELD_UPPER)) / 2;
if (field_type == FIELD_LOWER)
@@ -157,14 +158,14 @@ static void copy_picture_field(InterlaceContext *s,
srcp_above = srcp; // there is no line above
if (j == 1)
srcp_below = srcp; // there is no line below
- s->lowpass_line(dstp, linesize, srcp, srcp_above, srcp_below);
+ s->lowpass_line(dstp, cols, srcp, srcp_above, srcp_below);
dstp += dstp_linesize;
srcp += srcp_linesize;
}
} else {
av_image_copy_plane(dstp, dst_frame->linesize[plane] * 2,
srcp, src_frame->linesize[plane] * 2,
- linesize, lines);
+ cols, lines);
}
}
}