From 0082c30a668cc01295cd8e66223b1363173eb136 Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Mon, 5 Jul 2021 14:47:58 +0200 Subject: [PATCH] Adjust the ImageMetadata format --- core-buffer/include/formats.hpp | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/core-buffer/include/formats.hpp b/core-buffer/include/formats.hpp index 17504a2..5cd8286 100644 --- a/core-buffer/include/formats.hpp +++ b/core-buffer/include/formats.hpp @@ -23,10 +23,15 @@ struct ModuleFrame { #pragma pack(push) #pragma pack(1) struct ImageMetadata { - uint64_t pulse_id; - uint64_t frame_index; - uint32_t daq_rec; - uint32_t is_good_image; + uint64_t id; + uint64_t height; + uint64_t width; + uint64_t dtype; + uint64_t encoding; + uint64_t source_id; + uint64_t status; + uint64_t user_1; + uint64_t user_2; }; #pragma pack(pop)