diff options
author | Sergey Lavrushkin <dualfal@gmail.com> | 2018-05-25 20:31:04 +0300 |
---|---|---|
committer | Pedro Arthur <bygrandao@gmail.com> | 2018-05-29 10:02:30 -0300 |
commit | bdf1bbdbb4ebb342c0267d0f77cd06e717197e65 (patch) | |
tree | 9dcfad8953ce29cc74d8f152ee8c462cf4b72fe7 /libavfilter/Makefile | |
parent | cba167934bb2d634f400d3b06cec2b0f99d5de9d (diff) | |
download | ffmpeg-bdf1bbdbb4ebb342c0267d0f77cd06e717197e65.tar.gz |
Adds dnn inference module for simple convolutional networks. Reimplements srcnn filter based on it.
Signed-off-by: Pedro Arthur <bygrandao@gmail.com>
Diffstat (limited to 'libavfilter/Makefile')
-rw-r--r-- | libavfilter/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile index c68ef05fdc..3201cbeacf 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -12,6 +12,8 @@ OBJS = allfilters.o \ avfiltergraph.o \ buffersink.o \ buffersrc.o \ + dnn_interface.o \ + dnn_backend_native.o \ drawutils.o \ fifo.o \ formats.o \ |