X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fdevices%2FCECTV.cpp;h=b26dbdc8451fa4f857d0178b3edb34458085c68c;hb=ebefc26c10d68ba9ced2a30c896dccc81c6c2eeb;hp=862cf84faeb22c887c84616662c319cdb90689ee;hpb=51b2a0943d227f8090948c3d603c643e410cd17d;p=deb_libcec.git diff --git a/src/lib/devices/CECTV.cpp b/src/lib/devices/CECTV.cpp index 862cf84..b26dbdc 100644 --- a/src/lib/devices/CECTV.cpp +++ b/src/lib/devices/CECTV.cpp @@ -1,7 +1,7 @@ /* * This file is part of the libCEC(R) library. * - * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved. + * libCEC(R) is Copyright (C) 2011-2012 Pulse-Eight Limited. All rights reserved. * libCEC(R) is an original work, containing original code. * * libCEC(R) is a trademark of Pulse-Eight Limited. @@ -33,10 +33,16 @@ #include "CECTV.h" using namespace CEC; +using namespace PLATFORM; -CCECTV::CCECTV(CCECProcessor *processor, cec_logical_address address, uint16_t iPhysicalAddress /* = 0 */) : - CCECBusDevice(processor, address, iPhysicalAddress) +CCECTV::CCECTV(CCECProcessor *processor, cec_logical_address address) : + CCECBusDevice(processor, address, CEC_PHYSICAL_ADDRESS_TV) { - m_type = CEC_DEVICE_TYPE_TV; - m_strDeviceName = "TV"; + m_type = CEC_DEVICE_TYPE_TV; +} + +void CCECTV::ResetDeviceStatus(void) +{ + CLockObject lock(m_mutex); + CCECBusDevice::ResetDeviceStatus(); }