Skip to content
Snippets Groups Projects
Commit ed48e227 authored by Thomas Mundt's avatar Thomas Mundt Committed by Michael Niedermayer
Browse files

avfilter/interlace: simplify code

parent a7f6bfdc
No related branches found
No related tags found
No related merge requests found
...@@ -181,6 +181,8 @@ static void copy_picture_field(InterlaceContext *s, ...@@ -181,6 +181,8 @@ static void copy_picture_field(InterlaceContext *s,
int lines = (plane == 1 || plane == 2) ? AV_CEIL_RSHIFT(inlink->h, vsub) : inlink->h; int lines = (plane == 1 || plane == 2) ? AV_CEIL_RSHIFT(inlink->h, vsub) : inlink->h;
uint8_t *dstp = dst_frame->data[plane]; uint8_t *dstp = dst_frame->data[plane];
const uint8_t *srcp = src_frame->data[plane]; const uint8_t *srcp = src_frame->data[plane];
int srcp_linesize = src_frame->linesize[plane] * 2;
int dstp_linesize = dst_frame->linesize[plane] * 2;
av_assert0(cols >= 0 || lines >= 0); av_assert0(cols >= 0 || lines >= 0);
...@@ -189,38 +191,23 @@ static void copy_picture_field(InterlaceContext *s, ...@@ -189,38 +191,23 @@ static void copy_picture_field(InterlaceContext *s,
srcp += src_frame->linesize[plane]; srcp += src_frame->linesize[plane];
dstp += dst_frame->linesize[plane]; dstp += dst_frame->linesize[plane];
} }
if (lowpass == VLPF_LIN) { if (lowpass) {
int srcp_linesize = src_frame->linesize[plane] * 2; int x = 0;
int dstp_linesize = dst_frame->linesize[plane] * 2; if (lowpass == VLPF_CMP)
x = 1;
for (j = lines; j > 0; j--) { for (j = lines; j > 0; j--) {
ptrdiff_t pref = src_frame->linesize[plane]; ptrdiff_t pref = src_frame->linesize[plane];
ptrdiff_t mref = -pref; ptrdiff_t mref = -pref;
if (j == lines) if (j >= (lines - x))
mref = 0; // there is no line above
else if (j == 1)
pref = 0; // there is no line below
s->lowpass_line(dstp, cols, srcp, mref, pref);
dstp += dstp_linesize;
srcp += srcp_linesize;
}
} else if (lowpass == VLPF_CMP) {
int srcp_linesize = src_frame->linesize[plane] * 2;
int dstp_linesize = dst_frame->linesize[plane] * 2;
for (j = lines; j > 0; j--) {
ptrdiff_t pref = src_frame->linesize[plane];
ptrdiff_t mref = -pref;
if (j >= (lines - 1))
mref = 0; mref = 0;
else if (j <= 2) else if (j <= (1 + x))
pref = 0; pref = 0;
s->lowpass_line(dstp, cols, srcp, mref, pref); s->lowpass_line(dstp, cols, srcp, mref, pref);
dstp += dstp_linesize; dstp += dstp_linesize;
srcp += srcp_linesize; srcp += srcp_linesize;
} }
} else { } else {
av_image_copy_plane(dstp, dst_frame->linesize[plane] * 2, av_image_copy_plane(dstp, dstp_linesize, srcp, srcp_linesize, cols, lines);
srcp, src_frame->linesize[plane] * 2,
cols, lines);
} }
} }
} }
......
...@@ -252,6 +252,8 @@ void copy_picture_field(TInterlaceContext *tinterlace, ...@@ -252,6 +252,8 @@ void copy_picture_field(TInterlaceContext *tinterlace,
int cols = plane == 1 || plane == 2 ? AV_CEIL_RSHIFT( w, hsub) : w; int cols = plane == 1 || plane == 2 ? AV_CEIL_RSHIFT( w, hsub) : w;
uint8_t *dstp = dst[plane]; uint8_t *dstp = dst[plane];
const uint8_t *srcp = src[plane]; const uint8_t *srcp = src[plane];
int srcp_linesize = src_linesize[plane] * k;
int dstp_linesize = dst_linesize[plane] * (interleave ? 2 : 1);
lines = (lines + (src_field == FIELD_UPPER)) / k; lines = (lines + (src_field == FIELD_UPPER)) / k;
if (src_field == FIELD_LOWER) if (src_field == FIELD_LOWER)
...@@ -261,35 +263,22 @@ void copy_picture_field(TInterlaceContext *tinterlace, ...@@ -261,35 +263,22 @@ void copy_picture_field(TInterlaceContext *tinterlace,
// Low-pass filtering is required when creating an interlaced destination from // Low-pass filtering is required when creating an interlaced destination from
// a progressive source which contains high-frequency vertical detail. // a progressive source which contains high-frequency vertical detail.
// Filtering will reduce interlace 'twitter' and Moire patterning. // Filtering will reduce interlace 'twitter' and Moire patterning.
if (flags & TINTERLACE_FLAG_CVLPF) { if (flags & TINTERLACE_FLAG_VLPF || flags & TINTERLACE_FLAG_CVLPF) {
int srcp_linesize = src_linesize[plane] * k; int x = 0;
int dstp_linesize = dst_linesize[plane] * (interleave ? 2 : 1); if (flags & TINTERLACE_FLAG_CVLPF)
x = 1;
for (h = lines; h > 0; h--) { for (h = lines; h > 0; h--) {
ptrdiff_t pref = src_linesize[plane]; ptrdiff_t pref = src_linesize[plane];
ptrdiff_t mref = -pref; ptrdiff_t mref = -pref;
if (h >= (lines - 1)) mref = 0; if (h >= (lines - x)) mref = 0; // there is no line above
else if (h <= 2) pref = 0; else if (h <= (1 + x)) pref = 0; // there is no line below
tinterlace->lowpass_line(dstp, cols, srcp, mref, pref);
dstp += dstp_linesize;
srcp += srcp_linesize;
}
} else if (flags & TINTERLACE_FLAG_VLPF) {
int srcp_linesize = src_linesize[plane] * k;
int dstp_linesize = dst_linesize[plane] * (interleave ? 2 : 1);
for (h = lines; h > 0; h--) {
ptrdiff_t pref = src_linesize[plane];
ptrdiff_t mref = -pref;
if (h == lines) mref = 0; // there is no line above
else if (h == 1) pref = 0; // there is no line below
tinterlace->lowpass_line(dstp, cols, srcp, mref, pref); tinterlace->lowpass_line(dstp, cols, srcp, mref, pref);
dstp += dstp_linesize; dstp += dstp_linesize;
srcp += srcp_linesize; srcp += srcp_linesize;
} }
} else { } else {
av_image_copy_plane(dstp, dst_linesize[plane] * (interleave ? 2 : 1), av_image_copy_plane(dstp, dstp_linesize, srcp, srcp_linesize, cols, lines);
srcp, src_linesize[plane]*k, cols, lines);
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment