Commit 825481e8 authored by Michael Niedermayer's avatar Michael Niedermayer

yadif: reject reuse2 buffers as we cant use frames that change under our

fingers.
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 89d7f926
......@@ -405,7 +405,8 @@ AVFilter avfilter_vf_yadif = {
.start_frame = start_frame,
.get_video_buffer = get_video_buffer,
.draw_slice = null_draw_slice,
.end_frame = end_frame, },
.end_frame = end_frame,
.rej_perms = AV_PERM_REUSE2, },
{ .name = NULL}},
.outputs = (const AVFilterPad[]) {{ .name = "default",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment