]> git.sesse.net Git - ffmpeg/commit
libavfilter/dnn: move dnn files from libavfilter to libavfilter/dnn
authorGuo, Yejun <yejun.guo@intel.com>
Tue, 16 Jul 2019 05:55:45 +0000 (13:55 +0800)
committerPedro Arthur <bygrandao@gmail.com>
Fri, 26 Jul 2019 16:07:43 +0000 (13:07 -0300)
commit1b9064e3f4ca4cf744f5112c02b31ffd1b44f4c4
treee677378c9832e87a0af7dbbec7d68ea17c3a7729
parentebfcd4be3302916de36213ad393881e07ffca538
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>
libavfilter/Makefile
libavfilter/dnn/Makefile [new file with mode: 0644]
libavfilter/dnn/dnn_backend_native.c [moved from libavfilter/dnn_backend_native.c with 100% similarity]
libavfilter/dnn/dnn_backend_native.h [moved from libavfilter/dnn_backend_native.h with 94% similarity]
libavfilter/dnn/dnn_backend_tf.c [moved from libavfilter/dnn_backend_tf.c with 100% similarity]
libavfilter/dnn/dnn_backend_tf.h [moved from libavfilter/dnn_backend_tf.h with 91% similarity]
libavfilter/dnn/dnn_interface.c [moved from libavfilter/dnn_interface.c with 98% similarity]