[FFmpeg-cvslog] dnn/native: fix typo for definition of DOT_INTERMEDIATE
Wu Zhiwen
git at videolan.org
Wed Jun 3 08:48:03 EEST 2020
ffmpeg | branch: master | Wu Zhiwen <zhiwen.wu at intel.com> | Mon Jun 1 09:00:45 2020 +0800| [b6d7c4c1d48a30fdccf00fa971c4821b66f24c41] | committer: Guo, Yejun
dnn/native: fix typo for definition of DOT_INTERMEDIATE
Signed-off-by: Wu Zhiwen <zhiwen.wu at intel.com>
Reviewed-by: Guo Yejun <yejun.guo at intel.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b6d7c4c1d48a30fdccf00fa971c4821b66f24c41
---
libavfilter/dnn/dnn_backend_native.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/dnn/dnn_backend_native.h b/libavfilter/dnn/dnn_backend_native.h
index 61f0cb202f..bec63be450 100644
--- a/libavfilter/dnn/dnn_backend_native.h
+++ b/libavfilter/dnn/dnn_backend_native.h
@@ -46,7 +46,7 @@ typedef enum {
DLT_COUNT
} DNNLayerType;
-typedef enum {DOT_INPUT = 1, DOT_OUTPUT = 2, DOT_INTERMEDIATE = DOT_INPUT | DOT_INPUT} DNNOperandType;
+typedef enum {DOT_INPUT = 1, DOT_OUTPUT = 2, DOT_INTERMEDIATE = DOT_INPUT | DOT_OUTPUT} DNNOperandType;
typedef struct Layer{
DNNLayerType type;
More information about the ffmpeg-cvslog
mailing list