Commit e145afb4 authored by Michael Niedermayer's avatar Michael Niedermayer

vf_tinterlace: use av_assert

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent abb0a998
......@@ -26,6 +26,7 @@
*/
#include "libavutil/imgutils.h"
#include "libavutil/avassert.h"
#include "avfilter.h"
#include "internal.h"
......@@ -338,7 +339,7 @@ static int poll_frame(AVFilterLink *outlink)
return ret;
val = ff_poll_frame(inlink);
}
assert(tinterlace->next);
av_assert0(tinterlace->next);
return val;
}
......
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