1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-26 19:01:44 +02:00

lavfi/vf_libplacebo: fix typo in assert

Not caught because av_assert1 was compiled out on my end.
This commit is contained in:
Niklas Haas 2023-06-13 15:26:52 +02:00
parent 2d59ca0a66
commit d26ea03f60

View File

@ -898,7 +898,7 @@ static int libplacebo_activate(AVFilterContext *ctx)
if (!s->fps.num) {
/* 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);
}
}