aboutsummaryrefslogtreecommitdiffstats
path: root/libavfilter/dnn/Makefile
diff options
context:
space:
mode:
authorGuo, Yejun <yejun.guo@intel.com>2019-09-05 14:00:46 +0800
committerPedro Arthur <bygrandao@gmail.com>2019-09-19 11:25:15 -0300
commit48133fad056e9173a39333fc5f7d4a724a47a028 (patch)
treeeec3d9483324435ec19e0444f6c5391e3c02393e /libavfilter/dnn/Makefile
parent24f507301b4774bb1b082c594d1ce8885b5cabd8 (diff)
downloadffmpeg-48133fad056e9173a39333fc5f7d4a724a47a028.tar.gz
libavfilter/dnn: separate depth_to_space layer from dnn_backend_native.c to a new file
the logic is that one layer in one separated source file to make the source files simple for maintaining. Signed-off-by: Guo, Yejun <yejun.guo@intel.com> Signed-off-by: Pedro Arthur <bygrandao@gmail.com>
Diffstat (limited to 'libavfilter/dnn/Makefile')
-rw-r--r--libavfilter/dnn/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/dnn/Makefile b/libavfilter/dnn/Makefile
index 40b848b442..63a35e7dd5 100644
--- a/libavfilter/dnn/Makefile
+++ b/libavfilter/dnn/Makefile
@@ -2,6 +2,7 @@ OBJS-$(CONFIG_DNN) += dnn/dnn_interface.o
OBJS-$(CONFIG_DNN) += dnn/dnn_backend_native.o
OBJS-$(CONFIG_DNN) += dnn/dnn_backend_native_layer_pad.o
OBJS-$(CONFIG_DNN) += dnn/dnn_backend_native_layer_conv2d.o
+OBJS-$(CONFIG_DNN) += dnn/dnn_backend_native_layer_depth2space.o
DNN-OBJS-$(CONFIG_LIBTENSORFLOW) += dnn/dnn_backend_tf.o