[Common] build error fix for ubuntu/example.
authorMyungJoo Ham <myungjoo.ham@samsung.com>
Mon, 26 Nov 2018 07:27:46 +0000 (16:27 +0900)
committerjaeyun-jung <39614140+jaeyun-jung@users.noreply.github.com>
Mon, 26 Nov 2018 08:04:48 +0000 (17:04 +0900)
There is a missing header in typedef header.
Without stdint.h, you won't be able to find "uint8_t".

Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
gst/nnstreamer/tensor_typedef.h

index d37ced1..1450f79 100644 (file)
@@ -29,6 +29,7 @@
 #define __GST_TENSOR_TYPEDEF_H__
 
 #include <stddef.h>
+#include <stdint.h>
 
 #define NNS_TENSOR_RANK_LIMIT  (4)
 #define NNS_TENSOR_SIZE_LIMIT  (16)