diff options
author | Zhao Zhili <zhilizhao@tencent.com> | 2024-05-08 00:08:10 +0800 |
---|---|---|
committer | Guo Yejun <yejun.guo@intel.com> | 2024-05-30 18:13:46 +0800 |
commit | 093f5da534749dec93180b8e4928dea31c061d6d (patch) | |
tree | 5d4409e3f13ca1eb8b60df8b20951d78fbd5195a /libavfilter/vf_sr.c | |
parent | 4f051c746be90e130c7b61a3ba2f15f2e832774d (diff) | |
download | ffmpeg-093f5da534749dec93180b8e4928dea31c061d6d.tar.gz |
avfilter/dnn: Don't show backends which are not supported by a filter
Diffstat (limited to 'libavfilter/vf_sr.c')
-rw-r--r-- | libavfilter/vf_sr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_sr.c b/libavfilter/vf_sr.c index f14c0c0cd3..3bfca7f042 100644 --- a/libavfilter/vf_sr.c +++ b/libavfilter/vf_sr.c @@ -53,7 +53,7 @@ static const AVOption sr_options[] = { { NULL } }; -AVFILTER_DNN_DEFINE_CLASS(sr); +AVFILTER_DNN_DEFINE_CLASS(sr, DNN_TF); static av_cold int init(AVFilterContext *context) { |