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 @@ ...@@ -26,6 +26,7 @@
*/ */
#include "libavutil/imgutils.h" #include "libavutil/imgutils.h"
#include "libavutil/avassert.h"
#include "avfilter.h" #include "avfilter.h"
#include "internal.h" #include "internal.h"
...@@ -338,7 +339,7 @@ static int poll_frame(AVFilterLink *outlink) ...@@ -338,7 +339,7 @@ static int poll_frame(AVFilterLink *outlink)
return ret; return ret;
val = ff_poll_frame(inlink); val = ff_poll_frame(inlink);
} }
assert(tinterlace->next); av_assert0(tinterlace->next);
return val; 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