mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Merge commit '046f75a970701b4c947d38bfd2186dcc5f2ddae2'
* commit '046f75a970701b4c947d38bfd2186dcc5f2ddae2': vf_interlace: also assert for height Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
6279cb3597
@ -142,7 +142,7 @@ static void copy_picture_field(InterlaceContext *s,
|
||||
uint8_t *dstp = dst_frame->data[plane];
|
||||
const uint8_t *srcp = src_frame->data[plane];
|
||||
|
||||
av_assert0(cols >= 0);
|
||||
av_assert0(cols >= 0 || lines >= 0);
|
||||
|
||||
lines = (lines + (field_type == FIELD_UPPER)) / 2;
|
||||
if (field_type == FIELD_LOWER)
|
||||
|
Loading…
Reference in New Issue
Block a user