vf_tinterlace: use av_assert
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
abb0a9982f
commit
e145afb4b0
@ -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)
|
|||||||
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;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user