mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
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/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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user