X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2FLibCECC.cpp;h=fdcc9e7a57bc0dcf4c2f239449272f93e2d47522;hb=2dbd78f8f765f83e98190c01a123c569aea7c5b6;hp=c1250cba7a953aa6432e13b59d4442d92872bf27;hpb=18203d17e6894d33725dac7553d981aee735e6be;p=deb_libcec.git diff --git a/src/lib/LibCECC.cpp b/src/lib/LibCECC.cpp index c1250cb..fdcc9e7 100644 --- a/src/lib/LibCECC.cpp +++ b/src/lib/LibCECC.cpp @@ -42,7 +42,7 @@ using namespace std; //@{ ICECAdapter *cec_parser; -int cec_init(const char *strDeviceName, cec_logical_address iLogicalAddress /* = CECDEVICE_PLAYBACKDEVICE1 */, uint8_t iPhysicalAddress /* = CEC_DEFAULT_PHYSICAL_ADDRESS */) +int cec_init(const char *strDeviceName, cec_logical_address iLogicalAddress, uint16_t iPhysicalAddress) { cec_parser = (ICECAdapter *) CECCreate(strDeviceName, iLogicalAddress, iPhysicalAddress); return (cec_parser != NULL) ? 1 : 0; @@ -137,10 +137,10 @@ int cec_get_next_command(cec_command *command) return -1; } -int cec_transmit(const CEC::cec_command &data) +int cec_transmit(const CEC::cec_command *data) { if (cec_parser) - return cec_parser->Transmit(data) ? 1 : 0; + return cec_parser->Transmit(*data) ? 1 : 0; return -1; } @@ -238,8 +238,90 @@ cec_power_status cec_get_device_power_status(cec_logical_address iLogicalAddress int cec_poll_device(cec_logical_address iLogicalAddress) { if (cec_parser) - return cec_parser->PollDevice(iLogicalAddress); + return cec_parser->PollDevice(iLogicalAddress) ? 1 : 0; return -1; } +cec_logical_addresses cec_get_active_devices(void) +{ + cec_logical_addresses addresses; + addresses.Clear(); + if (cec_parser) + addresses = cec_parser->GetActiveDevices(); + return addresses; +} + +int cec_is_active_device(cec_logical_address iAddress) +{ + if (cec_parser) + return cec_parser->IsActiveDevice(iAddress) ? 1 : 0; + return -1; +} + +int cec_is_active_device_type(cec_device_type type) +{ + if (cec_parser) + return cec_parser->IsActiveDeviceType(type) ? 1 : 0; + return -1; +} + +int cec_set_hdmi_port(cec_logical_address iBaseDevice, uint8_t iPort) +{ + if (cec_parser) + return cec_parser->SetHDMIPort(iBaseDevice, iPort) ? 1 : 0; + return -1; +} + +int cec_volume_up(int bWait) +{ + if (cec_parser) + return cec_parser->VolumeUp(bWait == 1); + return -1; +} + +int cec_volume_down(int bWait) +{ + if (cec_parser) + return cec_parser->VolumeDown(bWait == 1); + return -1; +} + +int cec_mute_audio(int bWait) +{ + if (cec_parser) + return cec_parser->MuteAudio(bWait == 1); + return -1; +} + +int cec_send_keypress(cec_logical_address iDestination, cec_user_control_code key, int bWait) +{ + if (cec_parser) + return cec_parser->SendKeypress(iDestination, key, bWait == 1) ? 1 : 0; + return -1; +} + +int cec_send_key_release(cec_logical_address iDestination, int bWait) +{ + if (cec_parser) + return cec_parser->SendKeyRelease(iDestination, bWait == 1) ? 1 : 0; + return -1; +} + +cec_osd_name cec_get_osd_name(cec_logical_address iAddress) +{ + cec_osd_name retVal; + retVal.device = iAddress; + retVal.name[0] = 0; + + if (cec_parser) + retVal = cec_parser->GetOSDName(iAddress); + + return retVal; +} + +int cec_enable_physical_address_detection(void) +{ + return cec_parser ? (cec_parser->EnablePhysicalAddressDetection() ? 1 : 0) : -1; +} + //@}