mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
vf_interlace: merge FIELD_LOWER check
This commit is contained in:
parent
046f75a970
commit
15ea222778
@ -144,10 +144,10 @@ static void copy_picture_field(InterlaceContext *s,
|
|||||||
av_assert0(cols >= 0 || lines >= 0);
|
av_assert0(cols >= 0 || lines >= 0);
|
||||||
|
|
||||||
lines = (lines + (field_type == FIELD_UPPER)) / 2;
|
lines = (lines + (field_type == FIELD_UPPER)) / 2;
|
||||||
if (field_type == FIELD_LOWER)
|
if (field_type == FIELD_LOWER) {
|
||||||
srcp += src_frame->linesize[plane];
|
srcp += src_frame->linesize[plane];
|
||||||
if (field_type == FIELD_LOWER)
|
|
||||||
dstp += dst_frame->linesize[plane];
|
dstp += dst_frame->linesize[plane];
|
||||||
|
}
|
||||||
if (lowpass) {
|
if (lowpass) {
|
||||||
int srcp_linesize = src_frame->linesize[plane] * 2;
|
int srcp_linesize = src_frame->linesize[plane] * 2;
|
||||||
int dstp_linesize = dst_frame->linesize[plane] * 2;
|
int dstp_linesize = dst_frame->linesize[plane] * 2;
|
||||||
|
Loading…
Reference in New Issue
Block a user