Rename CompressedModuleFrame into StreamModuleFrame

This commit is contained in:
2020-05-19 12:26:55 +02:00
parent 09331e4b4c
commit 3b08ceed4b
5 changed files with 27 additions and 27 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ class WriterZmqReceiver {
const size_t n_modules_;
std::vector<void*> sockets_;
CompressedModuleFrame frame_metadata;
StreamModuleFrame frame_metadata;
public:
WriterZmqReceiver(
+3 -3
View File
@@ -50,9 +50,9 @@ struct ModuleFrame {
#pragma pack(push)
#pragma pack(1)
struct CompressedModuleFrame {
ModuleFrame module_frame;
uint64_t compressed_size;
struct StreamModuleFrame {
ModuleFrame metadata;
uint64_t frame_size;
bool is_frame_present;
};
#pragma pack(pop)