X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=protocol%2Fclk%2FCLKProtocolStrategy.cpp;h=5d25b86bd290a76e0b1cd35c4e08854dd2379329;hb=ac7b3acb915f90de6b224e54a2240023fc221e5a;hp=e7c2f622844ba4ebd5a8a2a4d71b0c052f5455f0;hpb=e59ee903385d31db9a4fc928f32d3be5322b3389;p=casparcg diff --git a/protocol/clk/CLKProtocolStrategy.cpp b/protocol/clk/CLKProtocolStrategy.cpp index e7c2f6228..5d25b86bd 100644 --- a/protocol/clk/CLKProtocolStrategy.cpp +++ b/protocol/clk/CLKProtocolStrategy.cpp @@ -115,7 +115,7 @@ void CLKProtocolStrategy::Parse(const TCHAR* pData, int charCount, IO::ClientInf if(currentCommand_.command_ == CLKCommand::CLKReset) { - pChannel_->stage()->clear(cg_producer::DEFAULT_LAYER); + pChannel_->stage()->clear(flash::cg_producer::DEFAULT_LAYER); bClockLoaded_ = false; CASPAR_LOG(info) << L"CLK: Recieved and executed reset-command"; @@ -124,11 +124,11 @@ void CLKProtocolStrategy::Parse(const TCHAR* pData, int charCount, IO::ClientInf { if(!bClockLoaded_) { - get_default_cg_producer(pChannel_)->add(0, TEXT("hawrysklocka/clock.ft"), true, TEXT(""), currentCommand_.GetData()); + flash::get_default_cg_producer(pChannel_)->add(0, TEXT("hawrysklocka/clock.ft"), true, TEXT(""), currentCommand_.GetData()); bClockLoaded_ = true; } else - get_default_cg_producer(pChannel_)->update(0, currentCommand_.GetData()); + flash::get_default_cg_producer(pChannel_)->update(0, currentCommand_.GetData()); CASPAR_LOG(debug) << L"CLK: Clockdata sent: " << currentCommand_.GetData(); CASPAR_LOG(debug) << L"CLK: Executed valid command: " << currentCommandString_.str();