std::cerr<<std::hex<<std::showbase<<"StreamID mismatch: this voice frame="<<ntohs(Frame->GetCodecPacket()->streamid)<<" returned transcoder packet="<<ntohs(pack.streamid)<<std::dec<<std::noshowbase<<std::endl;
// update content with transcoded data
Frame->SetCodecData(&pack);
// mark the DStar sync frames if the source isn't dstar
std::cerr<<std::hex<<std::showbase<<"StreamID mismatch: this voice frame="<<ntohs(Frame->GetCodecPacket()->streamid)<<" returned transcoder packet="<<ntohs(pack.streamid)<<std::dec<<std::noshowbase<<std::endl;
std::cerr<<"Sequence mismatch: this voice frame="<<Frame->GetCodecPacket()->sequence<<" returned transcoder packet="<<pack.sequence<<std::endl;
}
// and push it back to client
m_PacketStream->ReturnPacket(std::move(Packet));
}
else
{
// Likewise, this packet will be ignored
std::cout<<"Transcoder packet received but CodecStream["<<m_CSModule<<"] is closed: Module='"<<pack.module<<"' StreamID="<<std::hex<<std::showbase<<ntohs(pack.streamid)<<std::endl;