From: Lars Op den Kamp Date: Thu, 13 Oct 2011 23:59:46 +0000 (+0200) Subject: cec: eom was not being parsed when receiving MSGCODE_FRAME_DATA. fixed. thanks again... X-Git-Tag: upstream/2.2.0~1^2~237 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=c656238128c43491b01080c8fb40aed01fbbb960;p=deb_libcec.git cec: eom was not being parsed when receiving MSGCODE_FRAME_DATA. fixed. thanks again bob :-) --- diff --git a/src/lib/CECProcessor.cpp b/src/lib/CECProcessor.cpp index f9872fc..d71a963 100644 --- a/src/lib/CECProcessor.cpp +++ b/src/lib/CECProcessor.cpp @@ -455,6 +455,7 @@ bool CCECProcessor::ParseMessage(cec_adapter_message &msg) uint8_t iData = msg[1]; logStr.AppendFormat(" %02x", iData); m_currentframe.push_back(iData); + m_currentframe.eom = msg.eom(); } m_controller->AddLog(CEC_LOG_DEBUG, logStr.c_str()); }