1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

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>
This commit is contained in:
Wu Zhiwen
2020-06-01 09:00:45 +08:00
committed by Guo, Yejun
parent 801c8a961a
commit b6d7c4c1d4

View File

@@ -46,7 +46,7 @@ typedef enum {
DLT_COUNT DLT_COUNT
} DNNLayerType; } 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{ typedef struct Layer{
DNNLayerType type; DNNLayerType type;