diff options
author | Paul B Mahol <onemda@gmail.com> | 2022-12-07 12:18:56 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2022-12-07 12:23:16 +0100 |
commit | f2e0351b7720390338f33017d2cfe1ad40828b6a (patch) | |
tree | 15620c1bff81e4302aedee909467348faf9c00dd | |
parent | 6aa7b0c463bffad995eb84730f5c0bcb294f3cad (diff) | |
download | ffmpeg-f2e0351b7720390338f33017d2cfe1ad40828b6a.tar.gz |
avfilter/vf_vif: add missing framesync options
-rw-r--r-- | libavfilter/vf_vif.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavfilter/vf_vif.c b/libavfilter/vf_vif.c index 818cc51e36..1aea4a73c6 100644 --- a/libavfilter/vf_vif.c +++ b/libavfilter/vf_vif.c @@ -63,7 +63,7 @@ static const AVOption vif_options[] = { { NULL } }; -AVFILTER_DEFINE_CLASS(vif); +FRAMESYNC_DEFINE_CLASS(vif, VIFContext, fs); static const uint8_t vif_filter1d_width1[4] = { 17, 9, 5, 3 }; @@ -631,6 +631,7 @@ static const AVFilterPad vif_outputs[] = { const AVFilter ff_vf_vif = { .name = "vif", .description = NULL_IF_CONFIG_SMALL("Calculate the VIF between two video streams."), + .preinit = vif_framesync_preinit, .uninit = uninit, .priv_size = sizeof(VIFContext), .priv_class = &vif_class, |