diff options
author | Guo, Yejun <yejun.guo@intel.com> | 2019-07-16 13:55:45 +0800 |
---|---|---|
committer | Pedro Arthur <bygrandao@gmail.com> | 2019-07-26 13:07:43 -0300 |
commit | 1b9064e3f4ca4cf744f5112c02b31ffd1b44f4c4 (patch) | |
tree | e677378c9832e87a0af7dbbec7d68ea17c3a7729 /libavfilter/Makefile | |
parent | ebfcd4be3302916de36213ad393881e07ffca538 (diff) | |
download | ffmpeg-streaming-1b9064e3f4ca4cf744f5112c02b31ffd1b44f4c4.zip ffmpeg-streaming-1b9064e3f4ca4cf744f5112c02b31ffd1b44f4c4.tar.gz |
libavfilter/dnn: move dnn files from libavfilter to libavfilter/dnn
it is expected that there will be more files to support native mode,
so put all the dnn codes under libavfilter/dnn
The main change of this patch is to move the file location, see below:
modified: libavfilter/Makefile
new file: libavfilter/dnn/Makefile
renamed: libavfilter/dnn_backend_native.c -> libavfilter/dnn/dnn_backend_native.c
renamed: libavfilter/dnn_backend_native.h -> libavfilter/dnn/dnn_backend_native.h
renamed: libavfilter/dnn_backend_tf.c -> libavfilter/dnn/dnn_backend_tf.c
renamed: libavfilter/dnn_backend_tf.h -> libavfilter/dnn/dnn_backend_tf.h
renamed: libavfilter/dnn_interface.c -> libavfilter/dnn/dnn_interface.c
Signed-off-by: Guo, Yejun <yejun.guo@intel.com>
Signed-off-by: Pedro Arthur <bygrandao@gmail.com>
Diffstat (limited to 'libavfilter/Makefile')
-rw-r--r-- | libavfilter/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile index 455c809..450d781 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -26,9 +26,8 @@ OBJS-$(HAVE_THREADS) += pthread.o # subsystems OBJS-$(CONFIG_QSVVPP) += qsvvpp.o -DNN-OBJS-$(CONFIG_LIBTENSORFLOW) += dnn_backend_tf.o -OBJS-$(CONFIG_DNN) += dnn_interface.o dnn_backend_native.o $(DNN-OBJS-yes) OBJS-$(CONFIG_SCENE_SAD) += scene_sad.o +include $(SRC_PATH)/libavfilter/dnn/Makefile # audio filters OBJS-$(CONFIG_ABENCH_FILTER) += f_bench.o |