mirror of https://git.ffmpeg.org/ffmpeg.git
Merge remote-tracking branch 'qatar/master'
* qatar/master: vf_interlace: better handling of odd video size Conflicts: libavfilter/vf_interlace.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
86d1a5d80f
|
@ -132,7 +132,7 @@ static void copy_picture_field(AVFrame *src_frame, AVFrame *dst_frame,
|
||||||
|
|
||||||
av_assert0(linesize >= 0);
|
av_assert0(linesize >= 0);
|
||||||
|
|
||||||
lines /= 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)
|
if (field_type == FIELD_LOWER)
|
||||||
|
|
Loading…
Reference in New Issue