diff options
author | Ting Fu <ting.fu-at-intel.com@ffmpeg.org> | 2023-04-27 17:43:46 +0800 |
---|---|---|
committer | Guo Yejun <yejun.guo@intel.com> | 2023-04-28 11:07:41 +0800 |
commit | 78f95f10887f7273a861268e9e6b93411f59ed20 (patch) | |
tree | d4683a43d482510045fb7f623824437db7d32d9f /libavfilter/vf_derain.c | |
parent | a9fb1417192d9922c891315350f96ef0f71726c4 (diff) | |
download | ffmpeg-78f95f10887f7273a861268e9e6b93411f59ed20.tar.gz |
lavfi/dnn: Remove DNN native backend
According to discussion in
https://etherpad.mit.edu/p/FF_dev_meeting_20221202 and the proposal in
http://ffmpeg.org/pipermail/ffmpeg-devel/2022-December/304534.html,
the DNN native backend should be removed at first step.
All the DNN native backend related codes are deleted.
Signed-off-by: Ting Fu <ting.fu@intel.com>
Diffstat (limited to 'libavfilter/vf_derain.c')
-rw-r--r-- | libavfilter/vf_derain.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavfilter/vf_derain.c b/libavfilter/vf_derain.c index 7e84cd65a3..35e1ae736a 100644 --- a/libavfilter/vf_derain.c +++ b/libavfilter/vf_derain.c @@ -44,7 +44,6 @@ static const AVOption derain_options[] = { { "derain", "derain filter flag", 0, AV_OPT_TYPE_CONST, { .i64 = 0 }, 0, 0, FLAGS, "type" }, { "dehaze", "dehaze filter flag", 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, 0, 0, FLAGS, "type" }, { "dnn_backend", "DNN backend", OFFSET(dnnctx.backend_type), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, FLAGS, "backend" }, - { "native", "native backend flag", 0, AV_OPT_TYPE_CONST, { .i64 = 0 }, 0, 0, FLAGS, "backend" }, #if (CONFIG_LIBTENSORFLOW == 1) { "tensorflow", "tensorflow backend flag", 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, 0, 0, FLAGS, "backend" }, #endif |