Comment out stream_tags

This commit is contained in:
badaix 2021-06-04 10:32:33 +02:00
parent 9bbba976f9
commit 53e27e0d8b
13 changed files with 173 additions and 106 deletions

View file

@ -24,7 +24,7 @@
#include "hello.hpp"
#include "pcm_chunk.hpp"
#include "server_settings.hpp"
#include "stream_tags.hpp"
// #include "stream_tags.hpp"
#include "time.hpp"
#include "common/str_compat.hpp"
@ -74,8 +74,8 @@ static std::unique_ptr<BaseMessage> createMessage(const BaseMessage& base_messag
return createMessage<Hello>(base_message, buffer);
case message_type::kServerSettings:
return createMessage<ServerSettings>(base_message, buffer);
case message_type::kStreamTags:
return createMessage<StreamTags>(base_message, buffer);
// case message_type::kStreamTags:
// return createMessage<StreamTags>(base_message, buffer);
case message_type::kTime:
return createMessage<Time>(base_message, buffer);
case message_type::kWireChunk: