2 * This file is part of the libCEC(R) library.
4 * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved.
5 * libCEC(R) is an original work, containing original code.
7 * libCEC(R) is a trademark of Pulse-Eight Limited.
9 * This program is dual-licensed; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 * Alternatively, you can license this library under a commercial license,
25 * please contact Pulse-Eight Licensing for more information.
27 * For more information contact:
28 * Pulse-Eight Licensing <license@pulse-eight.com>
29 * http://www.pulse-eight.com/
30 * http://www.pulse-eight.net/
39 * C interface implementation
42 ICECAdapter
*cec_parser
;
44 bool cec_init(const char *strDeviceName
, cec_logical_address iLogicalAddress
/* = CECDEVICE_PLAYBACKDEVICE1 */, int iPhysicalAddress
/* = CEC_DEFAULT_PHYSICAL_ADDRESS */)
46 cec_parser
= (ICECAdapter
*) CECCreate(strDeviceName
, iLogicalAddress
, iPhysicalAddress
);
47 return (cec_parser
!= NULL
);
50 void cec_destroy(void)
57 bool cec_open(const char *strPort
, int iTimeout
)
60 return cec_parser
->Open(strPort
, iTimeout
);
70 int cec_find_adapters(vector
<cec_adapter
> &deviceList
, const char *strDevicePath
/* = NULL */)
73 return cec_parser
->FindAdapters(deviceList
, strDevicePath
);
77 bool cec_ping_adapters(void)
80 return cec_parser
->PingAdapter();
84 bool cec_start_bootloader(void)
87 return cec_parser
->StartBootloader();
91 int cec_get_min_version(void)
94 return cec_parser
->GetMinVersion();
98 int cec_get_lib_version(void)
101 return cec_parser
->GetLibVersion();
105 bool cec_get_next_log_message(cec_log_message
*message
)
108 return cec_parser
->GetNextLogMessage(message
);
112 bool cec_get_next_keypress(cec_keypress
*key
)
115 return cec_parser
->GetNextKeypress(key
);
119 bool cec_get_next_command(cec_command
*command
)
122 return cec_parser
->GetNextCommand(command
);
126 bool cec_transmit(const CEC::cec_frame
&data
, bool bWaitForAck
/* = true */)
129 return cec_parser
->Transmit(data
, bWaitForAck
);
133 bool cec_set_logical_address(cec_logical_address iLogicalAddress
)
136 return cec_parser
->SetLogicalAddress(iLogicalAddress
);
140 bool cec_power_on_devices(cec_logical_address address
/* = CECDEVICE_TV */)
143 return cec_parser
->PowerOnDevices(address
);
147 bool cec_standby_devices(cec_logical_address address
/* = CECDEVICE_BROADCAST */)
150 return cec_parser
->StandbyDevices(address
);
154 bool cec_set_active_view(void)
157 return cec_parser
->SetActiveView();
161 bool cec_set_inactive_view(void)
164 return cec_parser
->SetInactiveView();