]> git.sesse.net Git - ffmpeg/commitdiff
dnn/native: fix typo for definition of DOT_INTERMEDIATE
authorWu Zhiwen <zhiwen.wu@intel.com>
Mon, 1 Jun 2020 01:00:45 +0000 (09:00 +0800)
committerGuo, Yejun <yejun.guo@intel.com>
Wed, 3 Jun 2020 01:57:22 +0000 (09:57 +0800)
Signed-off-by: Wu Zhiwen <zhiwen.wu@intel.com>
Reviewed-by: Guo Yejun <yejun.guo@intel.com>
libavfilter/dnn/dnn_backend_native.h

index 61f0cb202fdaa020ce529ac53e8bf78c61df377e..bec63be45008f18d417186aa81cd3f411febc84d 100644 (file)
@@ -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;