mirror of https://git.ffmpeg.org/ffmpeg.git
lavfi/vf_libplacebo: fix typo in assert
Not caught because av_assert1 was compiled out on my end.
This commit is contained in:
parent
2d59ca0a66
commit
d26ea03f60
|
@ -898,7 +898,7 @@ static int libplacebo_activate(AVFilterContext *ctx)
|
||||||
|
|
||||||
if (!s->fps.num) {
|
if (!s->fps.num) {
|
||||||
/* Internally queue an output frame for the same PTS */
|
/* Internally queue an output frame for the same PTS */
|
||||||
av_assert1(!av_cmp_q(link->time_base, outlink->time_base));
|
av_assert1(!av_cmp_q(inlink->time_base, outlink->time_base));
|
||||||
av_fifo_write(s->out_pts, &in->pts, 1);
|
av_fifo_write(s->out_pts, &in->pts, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue