summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWu Zhiwen <zhiwen.wu@intel.com>2020-06-01 09:00:45 +0800
committerGuo, Yejun <yejun.guo@intel.com>2020-06-03 09:57:22 +0800
commitb6d7c4c1d48a30fdccf00fa971c4821b66f24c41 (patch)
tree8509f3d7d100ba1cbbc3be8f302f40e8b123e9e3
parent801c8a961a504f014439c4312ecc3d66f03aea93 (diff)
dnn/native: fix typo for definition of DOT_INTERMEDIATE
Signed-off-by: Wu Zhiwen <zhiwen.wu@intel.com> Reviewed-by: Guo Yejun <yejun.guo@intel.com>
-rw-r--r--libavfilter/dnn/dnn_backend_native.h2
1 files changed, 1 insertions, 1 deletions
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;