Remove MetadataAdapter

This commit is contained in:
badaix 2025-02-15 22:27:16 +01:00 committed by Johannes Pohl
parent afa8c118f6
commit f8e4e60f2f
7 changed files with 38 additions and 123 deletions

View file

@ -44,7 +44,7 @@ class Controller
{
public:
/// c'tor
Controller(boost::asio::io_context& io_context, const ClientSettings& settings); //, std::unique_ptr<MetadataAdapter> meta);
Controller(boost::asio::io_context& io_context, const ClientSettings& settings);
/// Start thw work
void start();
// void stop();
@ -74,7 +74,6 @@ private:
std::shared_ptr<Stream> stream_;
std::unique_ptr<decoder::Decoder> decoder_;
std::unique_ptr<player::Player> player_;
// std::unique_ptr<MetadataAdapter> meta_;
std::unique_ptr<msg::ServerSettings> serverSettings_;
std::unique_ptr<msg::CodecHeader> headerChunk_;
};