From 7eb595cf803f948dd5a1dee57aa564b368d2d6a4 Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Fri, 22 May 2020 14:22:47 +0200 Subject: [PATCH] Format specification change --- core-buffer/include/formats.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core-buffer/include/formats.hpp b/core-buffer/include/formats.hpp index 933c7b5..ed65c6f 100644 --- a/core-buffer/include/formats.hpp +++ b/core-buffer/include/formats.hpp @@ -5,11 +5,11 @@ struct ImageMetadataBuffer { - uint64_t pulse_id[core_buffer::WRITER_DATA_CACHE_N_IMAGES]; - uint64_t frame_index[core_buffer::WRITER_DATA_CACHE_N_IMAGES]; - uint32_t daq_rec[core_buffer::WRITER_DATA_CACHE_N_IMAGES]; - uint8_t is_good_frame[core_buffer::WRITER_DATA_CACHE_N_IMAGES]; - uint64_t data_n_bytes[core_buffer::WRITER_DATA_CACHE_N_IMAGES]; + uint64_t pulse_id[core_buffer::REPLAY_READ_BUFFER_SIZE]; + uint64_t frame_index[core_buffer::REPLAY_READ_BUFFER_SIZE]; + uint32_t daq_rec[core_buffer::REPLAY_READ_BUFFER_SIZE]; + uint8_t is_good_frame[core_buffer::REPLAY_READ_BUFFER_SIZE]; + uint64_t data_n_bytes[core_buffer::REPLAY_READ_BUFFER_SIZE]; uint16_t n_images; };