cec: added RescanDevices()/cec_rescan_devices() to the interface, to let libCEC force...
[deb_libcec.git] / include / cectypes.h
1 #pragma once
2 /*
3 * This file is part of the libCEC(R) library.
4 *
5 * libCEC(R) is Copyright (C) 2011-2012 Pulse-Eight Limited. All rights reserved.
6 * libCEC(R) is an original work, containing original code.
7 *
8 * libCEC(R) is a trademark of Pulse-Eight Limited.
9 *
10 * This program is dual-licensed; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 *
24 *
25 * Alternatively, you can license this library under a commercial license,
26 * please contact Pulse-Eight Licensing for more information.
27 *
28 * For more information contact:
29 * Pulse-Eight Licensing <license@pulse-eight.com>
30 * http://www.pulse-eight.com/
31 * http://www.pulse-eight.net/
32 */
33
34 #ifndef CECTYPES_H_
35 #define CECTYPES_H_
36
37 #include <stdint.h>
38 #include <string.h>
39
40 #if defined(_WIN32) || defined(_WIN64)
41 #define CEC_CDECL __cdecl
42 #else
43 #define CEC_CDECL
44 #endif
45
46 #if !defined(DECLSPEC)
47 #if defined(_WIN32) || defined(_WIN64)
48 #include <windows.h>
49 #if defined DLL_EXPORT
50 #define DECLSPEC __declspec(dllexport)
51 #else
52 #define DECLSPEC __declspec(dllimport)
53 #endif
54 #else
55 #define DECLSPEC
56 #endif
57 #endif
58
59 #ifdef __cplusplus
60 extern "C" {
61 namespace CEC {
62 #endif
63
64 //default physical address 1.0.0.0, HDMI port 1
65 #define CEC_DEFAULT_PHYSICAL_ADDRESS 0x1000
66 #define CEC_DEFAULT_HDMI_PORT 1
67 #define CEC_DEFAULT_BASE_DEVICE 0
68 #define MSGSTART 0xFF
69 #define MSGEND 0xFE
70 #define MSGESC 0xFD
71 #define ESCOFFSET 3
72 #define CEC_BUTTON_TIMEOUT 500
73 #define CEC_POWER_STATE_REFRESH_TIME 30000
74 #define CEC_FW_VERSION_UNKNOWN 0xFFFF
75
76 #define CEC_DEFAULT_SETTING_USE_TV_MENU_LANGUAGE 1
77 #define CEC_DEFAULT_SETTING_ACTIVATE_SOURCE 1
78 #define CEC_DEFAULT_SETTING_POWER_OFF_SHUTDOWN 1
79 #define CEC_DEFAULT_SETTING_POWER_OFF_SCREENSAVER 1
80 #define CEC_DEFAULT_SETTING_POWER_OFF_ON_STANDBY 1
81
82 #define CEC_DEFAULT_TRANSMIT_RETRY_WAIT 500
83 #define CEC_DEFAULT_TRANSMIT_TIMEOUT 1000
84 #define CEC_DEFAULT_TRANSMIT_WAIT 2000
85 #define CEC_DEFAULT_TRANSMIT_RETRIES 1
86
87 #define CEC_MIN_LIB_VERSION 1
88 #define CEC_LIB_VERSION_MAJOR 1
89 #define CEC_LIB_VERSION_MINOR 5
90
91 typedef enum cec_abort_reason
92 {
93 CEC_ABORT_REASON_UNRECOGNIZED_OPCODE = 0,
94 CEC_ABORT_REASON_NOT_IN_CORRECT_MODE_TO_RESPOND = 1,
95 CEC_ABORT_REASON_CANNOT_PROVIDE_SOURCE = 2,
96 CEC_ABORT_REASON_INVALID_OPERAND = 3,
97 CEC_ABORT_REASON_REFUSED = 4
98 } cec_abort_reason;
99
100 typedef enum cec_analogue_broadcast_type
101 {
102 CEC_ANALOGUE_BROADCAST_TYPE_CABLE = 0x00,
103 CEC_ANALOGUE_BROADCAST_TYPE_SATELLITE = 0x01,
104 CEC_ANALOGUE_BROADCAST_TYPE_TERRESTIAL = 0x02
105 } cec_analogue_broadcast_type;
106
107 typedef enum cec_audio_rate
108 {
109 CEC_AUDIO_RATE_RATE_CONTROL_OFF = 0,
110 CEC_AUDIO_RATE_STANDARD_RATE_100 = 1,
111 CEC_AUDIO_RATE_FAST_RATE_MAX_101 = 2,
112 CEC_AUDIO_RATE_SLOW_RATE_MIN_99 = 3,
113 CEC_AUDIO_RATE_STANDARD_RATE_100_0 = 4,
114 CEC_AUDIO_RATE_FAST_RATE_MAX_100_1 = 5,
115 CEC_AUDIO_RATE_SLOW_RATE_MIN_99_9 = 6
116 } cec_audio_rate;
117
118 typedef enum cec_audio_status
119 {
120 CEC_AUDIO_MUTE_STATUS_MASK = 0x80,
121 CEC_AUDIO_VOLUME_STATUS_MASK = 0x7F,
122 CEC_AUDIO_VOLUME_MIN = 0x00,
123 CEC_AUDIO_VOLUME_MAX = 0x64,
124 CEC_AUDIO_VOLUME_STATUS_UNKNOWN = 0x7F
125 } cec_audio_status;
126
127 typedef enum cec_boolean
128 {
129 CEC_FALSE = 0,
130 CEC_TRUE = 1
131 } cec_boolean;
132
133 typedef enum cec_version
134 {
135 CEC_VERSION_UNKNOWN = 0x00,
136 CEC_VERSION_1_2 = 0x01,
137 CEC_VERSION_1_2A = 0x02,
138 CEC_VERSION_1_3 = 0x03,
139 CEC_VERSION_1_3A = 0x04,
140 CEC_VERSION_1_4 = 0x05
141 } cec_version;
142
143 typedef enum cec_channel_identifier
144 {
145 CEC_CHANNEL_NUMBER_FORMAT_MASK = 0xFC000000,
146 CEC_1_PART_CHANNEL_NUMBER = 0x04000000,
147 CEC_2_PART_CHANNEL_NUMBER = 0x08000000,
148 CEC_MAJOR_CHANNEL_NUMBER_MASK = 0x3FF0000,
149 CEC_MINOR_CHANNEL_NUMBER_MASK = 0xFFFF
150 } cec_channel_identifier;
151
152 typedef enum cec_deck_control_mode
153 {
154 CEC_DECK_CONTROL_MODE_SKIP_FORWARD_WIND = 1,
155 CEC_DECK_CONTROL_MODE_SKIP_REVERSE_REWIND = 2,
156 CEC_DECK_CONTROL_MODE_STOP = 3,
157 CEC_DECK_CONTROL_MODE_EJECT = 4
158 } cec_deck_control_mode;
159
160 typedef enum cec_deck_info
161 {
162 CEC_DECK_INFO_PLAY = 0x11,
163 CEC_DECK_INFO_RECORD = 0x12,
164 CEC_DECK_INFO_PLAY_REVERSE = 0x13,
165 CEC_DECK_INFO_STILL = 0x14,
166 CEC_DECK_INFO_SLOW = 0x15,
167 CEC_DECK_INFO_SLOW_REVERSE = 0x16,
168 CEC_DECK_INFO_FAST_FORWARD = 0x17,
169 CEC_DECK_INFO_FAST_REVERSE = 0x18,
170 CEC_DECK_INFO_NO_MEDIA = 0x19,
171 CEC_DECK_INFO_STOP = 0x1A,
172 CEC_DECK_INFO_SKIP_FORWARD_WIND = 0x1B,
173 CEC_DECK_INFO_SKIP_REVERSE_REWIND = 0x1C,
174 CEC_DECK_INFO_INDEX_SEARCH_FORWARD = 0x1D,
175 CEC_DECK_INFO_INDEX_SEARCH_REVERSE = 0x1E,
176 CEC_DECK_INFO_OTHER_STATUS = 0x1F,
177 CEC_DECK_INFO_OTHER_STATUS_LG = 0x20
178 } cec_deck_info;
179
180 typedef enum cec_device_type
181 {
182 CEC_DEVICE_TYPE_TV = 0,
183 CEC_DEVICE_TYPE_RECORDING_DEVICE = 1,
184 CEC_DEVICE_TYPE_RESERVED = 2,
185 CEC_DEVICE_TYPE_TUNER = 3,
186 CEC_DEVICE_TYPE_PLAYBACK_DEVICE = 4,
187 CEC_DEVICE_TYPE_AUDIO_SYSTEM = 5
188 } cec_device_type;
189
190 typedef enum cec_display_control
191 {
192 CEC_DISPLAY_CONTROL_DISPLAY_FOR_DEFAULT_TIME = 0x00,
193 CEC_DISPLAY_CONTROL_DISPLAY_UNTIL_CLEARED = 0x40,
194 CEC_DISPLAY_CONTROL_CLEAR_PREVIOUS_MESSAGE = 0x80,
195 CEC_DISPLAY_CONTROL_RESERVED_FOR_FUTURE_USE = 0xC0
196 } cec_display_control;
197
198 typedef enum cec_external_source_specifier
199 {
200 CEC_EXTERNAL_SOURCE_SPECIFIER_EXTERNAL_PLUG = 4,
201 CEC_EXTERNAL_SOURCE_SPECIFIER_EXTERNAL_PHYSICAL_ADDRESS = 5
202 } cec_external_source_specifier;
203
204 typedef enum cec_menu_request_type
205 {
206 CEC_MENU_REQUEST_TYPE_ACTIVATE = 0,
207 CEC_MENU_REQUEST_TYPE_DEACTIVATE = 1,
208 CEC_MENU_REQUEST_TYPE_QUERY = 2
209 } cec_menu_request_type;
210
211 typedef enum cec_menu_state
212 {
213 CEC_MENU_STATE_ACTIVATED = 0,
214 CEC_MENU_STATE_DEACTIVATED = 1
215 } cec_menu_state;
216
217 typedef enum cec_play_mode
218 {
219 CEC_PLAY_MODE_PLAY_FORWARD = 0x24,
220 CEC_PLAY_MODE_PLAY_REVERSE = 0x20,
221 CEC_PLAY_MODE_PLAY_STILL = 0x25,
222 CEC_PLAY_MODE_FAST_FORWARD_MIN_SPEED = 0x05,
223 CEC_PLAY_MODE_FAST_FORWARD_MEDIUM_SPEED = 0x06,
224 CEC_PLAY_MODE_FAST_FORWARD_MAX_SPEED = 0x07,
225 CEC_PLAY_MODE_FAST_REVERSE_MIN_SPEED = 0x09,
226 CEC_PLAY_MODE_FAST_REVERSE_MEDIUM_SPEED = 0x0A,
227 CEC_PLAY_MODE_FAST_REVERSE_MAX_SPEED = 0x0B,
228 CEC_PLAY_MODE_SLOW_FORWARD_MIN_SPEED = 0x15,
229 CEC_PLAY_MODE_SLOW_FORWARD_MEDIUM_SPEED = 0x16,
230 CEC_PLAY_MODE_SLOW_FORWARD_MAX_SPEED = 0x17,
231 CEC_PLAY_MODE_SLOW_REVERSE_MIN_SPEED = 0x19,
232 CEC_PLAY_MODE_SLOW_REVERSE_MEDIUM_SPEED = 0x1A,
233 CEC_PLAY_MODE_SLOW_REVERSE_MAX_SPEED = 0x1B
234 } cec_play_mode;
235
236 typedef enum cec_power_status
237 {
238 CEC_POWER_STATUS_ON = 0x00,
239 CEC_POWER_STATUS_STANDBY = 0x01,
240 CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON = 0x02,
241 CEC_POWER_STATUS_IN_TRANSITION_ON_TO_STANDBY = 0x03,
242 CEC_POWER_STATUS_UNKNOWN = 0x99
243 } cec_power_status;
244
245 typedef enum cec_record_source_type
246 {
247 CEC_RECORD_SOURCE_TYPE_OWN_SOURCE = 1,
248 CEC_RECORD_SOURCE_TYPE_DIGITAL_SERVICE = 2,
249 CEC_RECORD_SOURCE_TYPE_ANALOGUE_SERVICE = 3,
250 CEC_RECORD_SOURCE_TYPE_EXTERNAL_PLUS = 4,
251 CEC_RECORD_SOURCE_TYPE_EXTERNAL_PHYSICAL_ADDRESS = 5
252 } cec_record_source_type;
253
254 typedef enum cec_record_status_info
255 {
256 CEC_RECORD_STATUS_INFO_RECORDING_CURRENTLY_SELECTED_SOURCE = 0x01,
257 CEC_RECORD_STATUS_INFO_RECORDING_DIGITAL_SERVICE = 0x02,
258 CEC_RECORD_STATUS_INFO_RECORDING_ANALOGUE_SERVICE = 0x03,
259 CEC_RECORD_STATUS_INFO_RECORDING_EXTERNAL_INPUT = 0x04,
260 CEC_RECORD_STATUS_INFO_NO_RECORDING_UNABLE_TO_RECORD_DIGITAL_SERVICE = 0x05,
261 CEC_RECORD_STATUS_INFO_NO_RECORDING_UNABLE_TO_RECORD_ANALOGUE_SERVICE = 0x06,
262 CEC_RECORD_STATUS_INFO_NO_RECORDING_UNABLE_TO_SELECT_REQUIRED_SERVICE = 0x07,
263 CEC_RECORD_STATUS_INFO_NO_RECORDING_INVALID_EXTERNAL_PLUG_NUMBER = 0x09,
264 CEC_RECORD_STATUS_INFO_NO_RECORDING_INVALID_EXTERNAL_ADDRESS = 0x0A,
265 CEC_RECORD_STATUS_INFO_NO_RECORDING_CA_SYSTEM_NOT_SUPPORTED = 0x0B,
266 CEC_RECORD_STATUS_INFO_NO_RECORDING_NO_OR_INSUFFICIENT_ENTITLEMENTS = 0x0C,
267 CEC_RECORD_STATUS_INFO_NO_RECORDING_NOT_ALLOWED_TO_COPY_SOURCE = 0x0D,
268 CEC_RECORD_STATUS_INFO_NO_RECORDING_NO_FURTHER_COPIES_ALLOWED = 0x0E,
269 CEC_RECORD_STATUS_INFO_NO_RECORDING_NO_MEDIA = 0x10,
270 CEC_RECORD_STATUS_INFO_NO_RECORDING_PLAYING = 0x11,
271 CEC_RECORD_STATUS_INFO_NO_RECORDING_ALREADY_RECORDING = 0x12,
272 CEC_RECORD_STATUS_INFO_NO_RECORDING_MEDIA_PROTECTED = 0x13,
273 CEC_RECORD_STATUS_INFO_NO_RECORDING_NO_SOURCE_SIGNAL = 0x14,
274 CEC_RECORD_STATUS_INFO_NO_RECORDING_MEDIA_PROBLEM = 0x15,
275 CEC_RECORD_STATUS_INFO_NO_RECORDING_NOT_ENOUGH_SPACE_AVAILABLE = 0x16,
276 CEC_RECORD_STATUS_INFO_NO_RECORDING_PARENTAL_LOCK_ON = 0x17,
277 CEC_RECORD_STATUS_INFO_RECORDING_TERMINATED_NORMALLY = 0x1A,
278 CEC_RECORD_STATUS_INFO_RECORDING_HAS_ALREADY_TERMINATED = 0x1B,
279 CEC_RECORD_STATUS_INFO_NO_RECORDING_OTHER_REASON = 0x1F
280 } cec_record_status_info;
281
282 typedef enum cec_recording_sequence
283 {
284 CEC_RECORDING_SEQUENCE_SUNDAY = 0x01,
285 CEC_RECORDING_SEQUENCE_MONDAY = 0x02,
286 CEC_RECORDING_SEQUENCE_TUESDAY = 0x04,
287 CEC_RECORDING_SEQUENCE_WEDNESDAY = 0x08,
288 CEC_RECORDING_SEQUENCE_THURSDAY = 0x10,
289 CEC_RECORDING_SEQUENCE_FRIDAY = 0x20,
290 CEC_RECORDING_SEQUENCE_SATURDAY = 0x40,
291 CEC_RECORDING_SEQUENCE_ONCE_ONLY = 0x00
292 } cec_recording_sequence;
293
294 typedef enum cec_status_request
295 {
296 CEC_STATUS_REQUEST_ON = 1,
297 CEC_STATUS_REQUEST_OFF = 2,
298 CEC_STATUS_REQUEST_ONCE = 3
299 } cec_status_request;
300
301 typedef enum cec_system_audio_status
302 {
303 CEC_SYSTEM_AUDIO_STATUS_OFF = 0,
304 CEC_SYSTEM_AUDIO_STATUS_ON = 1
305 } cec_system_audio_status;
306
307 typedef enum cec_timer_cleared_status_data
308 {
309 CEC_TIMER_CLEARED_STATUS_DATA_TIMER_NOT_CLEARED_RECORDING = 0x00,
310 CEC_TIMER_CLEARED_STATUS_DATA_TIMER_NOT_CLEARED_NO_MATCHING = 0x01,
311 CEC_TIMER_CLEARED_STATUS_DATA_TIMER_NOT_CLEARED_NO_INF0_AVAILABLE = 0x02,
312 CEC_TIMER_CLEARED_STATUS_DATA_TIMER_CLEARED = 0x80
313 } cec_timer_cleared_status_data;
314
315 typedef enum cec_timer_overlap_warning
316 {
317 CEC_TIMER_OVERLAP_WARNING_NO_OVERLAP = 0,
318 CEC_TIMER_OVERLAP_WARNING_TIMER_BLOCKS_OVERLAP = 1
319 } cec_timer_overlap_warning;
320
321 typedef enum cec_media_info
322 {
323 CEC_MEDIA_INFO_MEDIA_PRESENT_AND_NOT_PROTECTED = 0x00,
324 CEC_MEDIA_INFO_MEDIA_PRESENT_BUT_PROTECTED = 0x01,
325 CEC_MEDIA_INFO_MEDIA_NOT_PRESENT = 0x02,
326 CEC_MEDIA_INFO_FUTURE_USE = 0x03
327 } cec_media_info;
328
329 typedef enum cec_programmed_indicator
330 {
331 CEC_PROGRAMMED_INDICATOR_NOT_PROGRAMMED = 0,
332 CEC_PROGRAMMED_INDICATOR_PROGRAMMED = 1
333 } cec_programmed_indicator;
334
335 typedef enum cec_programmed_info
336 {
337 CEC_PROGRAMMED_INFO_FUTURE_USE = 0x0,
338 CEC_PROGRAMMED_INFO_ENOUGH_SPACE_AVAILABLE_FOR_RECORDING = 0x08,
339 CEC_PROGRAMMED_INFO_NOT_ENOUGH_SPACE_AVAILABLE_FOR_RECORDING = 0x09,
340 CEC_PROGRAMMED_INFO_MAY_NOT_BE_ENOUGH_SPACE_AVAILABLE = 0x0B,
341 CEC_PROGRAMMED_INFO_NO_MEDIA_INFO_AVAILABLE = 0x0A
342 } cec_programmed_info;
343
344 typedef enum cec_not_programmed_error_info
345 {
346 CEC_NOT_PROGRAMMED_ERROR_INFO_FUTURE_USE = 0x0,
347 CEC_NOT_PROGRAMMED_ERROR_INFO_NO_FREE_TIMER_AVAILABLE = 0x01,
348 CEC_NOT_PROGRAMMED_ERROR_INFO_DATE_OUT_OF_RANGE = 0x02,
349 CEC_NOT_PROGRAMMED_ERROR_INFO_RECORDING_SEQUENCE_ERROR = 0x03,
350 CEC_NOT_PROGRAMMED_ERROR_INFO_INVALID_EXTERNAL_PLUG_NUMBER = 0x04,
351 CEC_NOT_PROGRAMMED_ERROR_INFO_INVALID_EXTERNAL_PHYSICAL_ADDRESS = 0x05,
352 CEC_NOT_PROGRAMMED_ERROR_INFO_CA_SYSTEM_NOT_SUPPORTED = 0x06,
353 CEC_NOT_PROGRAMMED_ERROR_INFO_NO_OR_INSUFFICIENT_CA_ENTITLEMENTS = 0x07,
354 CEC_NOT_PROGRAMMED_ERROR_INFO_DOES_NOT_SUPPORT_RESOLUTION = 0x08,
355 CEC_NOT_PROGRAMMED_ERROR_INFO_PARENTAL_LOCK_ON = 0x09,
356 CEC_NOT_PROGRAMMED_ERROR_INFO_CLOCK_FAILURE = 0x0A,
357 CEC_NOT_PROGRAMMED_ERROR_INFO_RESERVED_FOR_FUTURE_USE_START = 0x0B,
358 CEC_NOT_PROGRAMMED_ERROR_INFO_RESERVED_FOR_FUTURE_USE_END = 0x0D,
359 CEC_NOT_PROGRAMMED_ERROR_INFO_DUPLICATE_ALREADY_PROGRAMMED = 0x0E
360 } cec_not_programmed_error_info;
361
362 typedef enum cec_recording_flag
363 {
364 CEC_RECORDING_FLAG_NOT_BEING_USED_FOR_RECORDING = 0,
365 CEC_RECORDING_FLAG_BEING_USED_FOR_RECORDING = 1
366 } cec_recording_flag;
367
368 typedef enum cec_tuner_display_info
369 {
370 CEC_TUNER_DISPLAY_INFO_DISPLAYING_DIGITAL_TUNER = 0,
371 CEC_TUNER_DISPLAY_INFO_NOT_DISPLAYING_TUNER = 1,
372 CEC_TUNER_DISPLAY_INFO_DISPLAYING_ANALOGUE_TUNER = 2
373 } cec_tuner_display_info;
374
375 typedef enum cec_broadcast_system
376 {
377 CEC_BROADCAST_SYSTEM_PAL_B_G = 0,
378 CEC_BROADCAST_SYSTEM_SECAM_L1 = 1,
379 CEC_BROADCAST_SYSTEM_PAL_M = 2,
380 CEC_BROADCAST_SYSTEM_NTSC_M = 3,
381 CEC_BROADCAST_SYSTEM_PAL_I = 4,
382 CEC_BROADCAST_SYSTEM_SECAM_DK = 5,
383 CEC_BROADCAST_SYSTEM_SECAM_B_G = 6,
384 CEC_BROADCAST_SYSTEM_SECAM_L2 = 7,
385 CEC_BROADCAST_SYSTEM_PAL_DK = 8,
386 CEC_BROADCAST_SYSTEM_OTHER_SYSTEM = 30
387 } cec_broadcast_system;
388
389 typedef enum cec_user_control_code
390 {
391 CEC_USER_CONTROL_CODE_SELECT = 0x00,
392 CEC_USER_CONTROL_CODE_UP = 0x01,
393 CEC_USER_CONTROL_CODE_DOWN = 0x02,
394 CEC_USER_CONTROL_CODE_LEFT = 0x03,
395 CEC_USER_CONTROL_CODE_RIGHT = 0x04,
396 CEC_USER_CONTROL_CODE_RIGHT_UP = 0x05,
397 CEC_USER_CONTROL_CODE_RIGHT_DOWN = 0x06,
398 CEC_USER_CONTROL_CODE_LEFT_UP = 0x07,
399 CEC_USER_CONTROL_CODE_LEFT_DOWN = 0x08,
400 CEC_USER_CONTROL_CODE_ROOT_MENU = 0x09,
401 CEC_USER_CONTROL_CODE_SETUP_MENU = 0x0A,
402 CEC_USER_CONTROL_CODE_CONTENTS_MENU = 0x0B,
403 CEC_USER_CONTROL_CODE_FAVORITE_MENU = 0x0C,
404 CEC_USER_CONTROL_CODE_EXIT = 0x0D,
405 CEC_USER_CONTROL_CODE_NUMBER0 = 0x20,
406 CEC_USER_CONTROL_CODE_NUMBER1 = 0x21,
407 CEC_USER_CONTROL_CODE_NUMBER2 = 0x22,
408 CEC_USER_CONTROL_CODE_NUMBER3 = 0x23,
409 CEC_USER_CONTROL_CODE_NUMBER4 = 0x24,
410 CEC_USER_CONTROL_CODE_NUMBER5 = 0x25,
411 CEC_USER_CONTROL_CODE_NUMBER6 = 0x26,
412 CEC_USER_CONTROL_CODE_NUMBER7 = 0x27,
413 CEC_USER_CONTROL_CODE_NUMBER8 = 0x28,
414 CEC_USER_CONTROL_CODE_NUMBER9 = 0x29,
415 CEC_USER_CONTROL_CODE_DOT = 0x2A,
416 CEC_USER_CONTROL_CODE_ENTER = 0x2B,
417 CEC_USER_CONTROL_CODE_CLEAR = 0x2C,
418 CEC_USER_CONTROL_CODE_NEXT_FAVORITE = 0x2F,
419 CEC_USER_CONTROL_CODE_CHANNEL_UP = 0x30,
420 CEC_USER_CONTROL_CODE_CHANNEL_DOWN = 0x31,
421 CEC_USER_CONTROL_CODE_PREVIOUS_CHANNEL = 0x32,
422 CEC_USER_CONTROL_CODE_SOUND_SELECT = 0x33,
423 CEC_USER_CONTROL_CODE_INPUT_SELECT = 0x34,
424 CEC_USER_CONTROL_CODE_DISPLAY_INFORMATION = 0x35,
425 CEC_USER_CONTROL_CODE_HELP = 0x36,
426 CEC_USER_CONTROL_CODE_PAGE_UP = 0x37,
427 CEC_USER_CONTROL_CODE_PAGE_DOWN = 0x38,
428 CEC_USER_CONTROL_CODE_POWER = 0x40,
429 CEC_USER_CONTROL_CODE_VOLUME_UP = 0x41,
430 CEC_USER_CONTROL_CODE_VOLUME_DOWN = 0x42,
431 CEC_USER_CONTROL_CODE_MUTE = 0x43,
432 CEC_USER_CONTROL_CODE_PLAY = 0x44,
433 CEC_USER_CONTROL_CODE_STOP = 0x45,
434 CEC_USER_CONTROL_CODE_PAUSE = 0x46,
435 CEC_USER_CONTROL_CODE_RECORD = 0x47,
436 CEC_USER_CONTROL_CODE_REWIND = 0x48,
437 CEC_USER_CONTROL_CODE_FAST_FORWARD = 0x49,
438 CEC_USER_CONTROL_CODE_EJECT = 0x4A,
439 CEC_USER_CONTROL_CODE_FORWARD = 0x4B,
440 CEC_USER_CONTROL_CODE_BACKWARD = 0x4C,
441 CEC_USER_CONTROL_CODE_STOP_RECORD = 0x4D,
442 CEC_USER_CONTROL_CODE_PAUSE_RECORD = 0x4E,
443 CEC_USER_CONTROL_CODE_ANGLE = 0x50,
444 CEC_USER_CONTROL_CODE_SUB_PICTURE = 0x51,
445 CEC_USER_CONTROL_CODE_VIDEO_ON_DEMAND = 0x52,
446 CEC_USER_CONTROL_CODE_ELECTRONIC_PROGRAM_GUIDE = 0x53,
447 CEC_USER_CONTROL_CODE_TIMER_PROGRAMMING = 0x54,
448 CEC_USER_CONTROL_CODE_INITIAL_CONFIGURATION = 0x55,
449 CEC_USER_CONTROL_CODE_PLAY_FUNCTION = 0x60,
450 CEC_USER_CONTROL_CODE_PAUSE_PLAY_FUNCTION = 0x61,
451 CEC_USER_CONTROL_CODE_RECORD_FUNCTION = 0x62,
452 CEC_USER_CONTROL_CODE_PAUSE_RECORD_FUNCTION = 0x63,
453 CEC_USER_CONTROL_CODE_STOP_FUNCTION = 0x64,
454 CEC_USER_CONTROL_CODE_MUTE_FUNCTION = 0x65,
455 CEC_USER_CONTROL_CODE_RESTORE_VOLUME_FUNCTION = 0x66,
456 CEC_USER_CONTROL_CODE_TUNE_FUNCTION = 0x67,
457 CEC_USER_CONTROL_CODE_SELECT_MEDIA_FUNCTION = 0x68,
458 CEC_USER_CONTROL_CODE_SELECT_AV_INPUT_FUNCTION = 0x69,
459 CEC_USER_CONTROL_CODE_SELECT_AUDIO_INPUT_FUNCTION = 0x6A,
460 CEC_USER_CONTROL_CODE_POWER_TOGGLE_FUNCTION = 0x6B,
461 CEC_USER_CONTROL_CODE_POWER_OFF_FUNCTION = 0x6C,
462 CEC_USER_CONTROL_CODE_POWER_ON_FUNCTION = 0x6D,
463 CEC_USER_CONTROL_CODE_F1_BLUE = 0x71,
464 CEC_USER_CONTROL_CODE_F2_RED = 0X72,
465 CEC_USER_CONTROL_CODE_F3_GREEN = 0x73,
466 CEC_USER_CONTROL_CODE_F4_YELLOW = 0x74,
467 CEC_USER_CONTROL_CODE_F5 = 0x75,
468 CEC_USER_CONTROL_CODE_DATA = 0x76,
469 CEC_USER_CONTROL_CODE_AN_RETURN = 0x91,
470 CEC_USER_CONTROL_CODE_MAX = 0x91,
471 CEC_USER_CONTROL_CODE_UNKNOWN
472 } cec_user_control_code;
473
474 typedef enum cec_logical_address
475 {
476 CECDEVICE_UNKNOWN = -1, //not a valid logical address
477 CECDEVICE_TV = 0,
478 CECDEVICE_RECORDINGDEVICE1 = 1,
479 CECDEVICE_RECORDINGDEVICE2 = 2,
480 CECDEVICE_TUNER1 = 3,
481 CECDEVICE_PLAYBACKDEVICE1 = 4,
482 CECDEVICE_AUDIOSYSTEM = 5,
483 CECDEVICE_TUNER2 = 6,
484 CECDEVICE_TUNER3 = 7,
485 CECDEVICE_PLAYBACKDEVICE2 = 8,
486 CECDEVICE_RECORDINGDEVICE3 = 9,
487 CECDEVICE_TUNER4 = 10,
488 CECDEVICE_PLAYBACKDEVICE3 = 11,
489 CECDEVICE_RESERVED1 = 12,
490 CECDEVICE_RESERVED2 = 13,
491 CECDEVICE_FREEUSE = 14,
492 CECDEVICE_UNREGISTERED = 15,
493 CECDEVICE_BROADCAST = 15
494 } cec_logical_address;
495
496 typedef enum cec_opcode
497 {
498 CEC_OPCODE_ACTIVE_SOURCE = 0x82,
499 CEC_OPCODE_IMAGE_VIEW_ON = 0x04,
500 CEC_OPCODE_TEXT_VIEW_ON = 0x0D,
501 CEC_OPCODE_INACTIVE_SOURCE = 0x9D,
502 CEC_OPCODE_REQUEST_ACTIVE_SOURCE = 0x85,
503 CEC_OPCODE_ROUTING_CHANGE = 0x80,
504 CEC_OPCODE_ROUTING_INFORMATION = 0x81,
505 CEC_OPCODE_SET_STREAM_PATH = 0x86,
506 CEC_OPCODE_STANDBY = 0x36,
507 CEC_OPCODE_RECORD_OFF = 0x0B,
508 CEC_OPCODE_RECORD_ON = 0x09,
509 CEC_OPCODE_RECORD_STATUS = 0x0A,
510 CEC_OPCODE_RECORD_TV_SCREEN = 0x0F,
511 CEC_OPCODE_CLEAR_ANALOGUE_TIMER = 0x33,
512 CEC_OPCODE_CLEAR_DIGITAL_TIMER = 0x99,
513 CEC_OPCODE_CLEAR_EXTERNAL_TIMER = 0xA1,
514 CEC_OPCODE_SET_ANALOGUE_TIMER = 0x34,
515 CEC_OPCODE_SET_DIGITAL_TIMER = 0x97,
516 CEC_OPCODE_SET_EXTERNAL_TIMER = 0xA2,
517 CEC_OPCODE_SET_TIMER_PROGRAM_TITLE = 0x67,
518 CEC_OPCODE_TIMER_CLEARED_STATUS = 0x43,
519 CEC_OPCODE_TIMER_STATUS = 0x35,
520 CEC_OPCODE_CEC_VERSION = 0x9E,
521 CEC_OPCODE_GET_CEC_VERSION = 0x9F,
522 CEC_OPCODE_GIVE_PHYSICAL_ADDRESS = 0x83,
523 CEC_OPCODE_GET_MENU_LANGUAGE = 0x91,
524 CEC_OPCODE_REPORT_PHYSICAL_ADDRESS = 0x84,
525 CEC_OPCODE_SET_MENU_LANGUAGE = 0x32,
526 CEC_OPCODE_DECK_CONTROL = 0x42,
527 CEC_OPCODE_DECK_STATUS = 0x1B,
528 CEC_OPCODE_GIVE_DECK_STATUS = 0x1A,
529 CEC_OPCODE_PLAY = 0x41,
530 CEC_OPCODE_GIVE_TUNER_DEVICE_STATUS = 0x08,
531 CEC_OPCODE_SELECT_ANALOGUE_SERVICE = 0x92,
532 CEC_OPCODE_SELECT_DIGITAL_SERVICE = 0x93,
533 CEC_OPCODE_TUNER_DEVICE_STATUS = 0x07,
534 CEC_OPCODE_TUNER_STEP_DECREMENT = 0x06,
535 CEC_OPCODE_TUNER_STEP_INCREMENT = 0x05,
536 CEC_OPCODE_DEVICE_VENDOR_ID = 0x87,
537 CEC_OPCODE_GIVE_DEVICE_VENDOR_ID = 0x8C,
538 CEC_OPCODE_VENDOR_COMMAND = 0x89,
539 CEC_OPCODE_VENDOR_COMMAND_WITH_ID = 0xA0,
540 CEC_OPCODE_VENDOR_REMOTE_BUTTON_DOWN = 0x8A,
541 CEC_OPCODE_VENDOR_REMOTE_BUTTON_UP = 0x8B,
542 CEC_OPCODE_SET_OSD_STRING = 0x64,
543 CEC_OPCODE_GIVE_OSD_NAME = 0x46,
544 CEC_OPCODE_SET_OSD_NAME = 0x47,
545 CEC_OPCODE_MENU_REQUEST = 0x8D,
546 CEC_OPCODE_MENU_STATUS = 0x8E,
547 CEC_OPCODE_USER_CONTROL_PRESSED = 0x44,
548 CEC_OPCODE_USER_CONTROL_RELEASE = 0x45,
549 CEC_OPCODE_GIVE_DEVICE_POWER_STATUS = 0x8F,
550 CEC_OPCODE_REPORT_POWER_STATUS = 0x90,
551 CEC_OPCODE_FEATURE_ABORT = 0x00,
552 CEC_OPCODE_ABORT = 0xFF,
553 CEC_OPCODE_GIVE_AUDIO_STATUS = 0x71,
554 CEC_OPCODE_GIVE_SYSTEM_AUDIO_MODE_STATUS = 0x7D,
555 CEC_OPCODE_REPORT_AUDIO_STATUS = 0x7A,
556 CEC_OPCODE_SET_SYSTEM_AUDIO_MODE = 0x72,
557 CEC_OPCODE_SYSTEM_AUDIO_MODE_REQUEST = 0x70,
558 CEC_OPCODE_SYSTEM_AUDIO_MODE_STATUS = 0x7E,
559 CEC_OPCODE_SET_AUDIO_RATE = 0x9A,
560 /* when this opcode is set, no opcode will be sent to the device. this is one of the reserved numbers */
561 CEC_OPCODE_NONE = 0xFD
562 } cec_opcode;
563
564 typedef enum cec_log_level
565 {
566 CEC_LOG_ERROR = 1,
567 CEC_LOG_WARNING = 2,
568 CEC_LOG_NOTICE = 4,
569 CEC_LOG_TRAFFIC = 8,
570 CEC_LOG_DEBUG = 16,
571 CEC_LOG_ALL = 31
572 } cec_log_level;
573
574 typedef enum cec_adapter_messagecode
575 {
576 MSGCODE_NOTHING = 0,
577 MSGCODE_PING,
578 MSGCODE_TIMEOUT_ERROR,
579 MSGCODE_HIGH_ERROR,
580 MSGCODE_LOW_ERROR,
581 MSGCODE_FRAME_START,
582 MSGCODE_FRAME_DATA,
583 MSGCODE_RECEIVE_FAILED,
584 MSGCODE_COMMAND_ACCEPTED,
585 MSGCODE_COMMAND_REJECTED,
586 MSGCODE_SET_ACK_MASK,
587 MSGCODE_TRANSMIT,
588 MSGCODE_TRANSMIT_EOM,
589 MSGCODE_TRANSMIT_IDLETIME,
590 MSGCODE_TRANSMIT_ACK_POLARITY,
591 MSGCODE_TRANSMIT_LINE_TIMEOUT,
592 MSGCODE_TRANSMIT_SUCCEEDED,
593 MSGCODE_TRANSMIT_FAILED_LINE,
594 MSGCODE_TRANSMIT_FAILED_ACK,
595 MSGCODE_TRANSMIT_FAILED_TIMEOUT_DATA,
596 MSGCODE_TRANSMIT_FAILED_TIMEOUT_LINE,
597 MSGCODE_FIRMWARE_VERSION,
598 MSGCODE_START_BOOTLOADER,
599 MSGCODE_SET_POWERSTATE,
600 MSGCODE_SET_CONTROLLED,
601 MSGCODE_FRAME_EOM = 0x80,
602 MSGCODE_FRAME_ACK = 0x40,
603 } cec_adapter_messagecode;
604
605 typedef enum cec_bus_device_status
606 {
607 CEC_DEVICE_STATUS_UNKNOWN,
608 CEC_DEVICE_STATUS_PRESENT,
609 CEC_DEVICE_STATUS_NOT_PRESENT,
610 CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC
611 } cec_bus_device_status;
612
613 typedef enum cec_vendor_id
614 {
615 CEC_VENDOR_SAMSUNG = 0x0000F0,
616 CEC_VENDOR_LG = 0x00E091,
617 CEC_VENDOR_PANASONIC = 0x008045,
618 CEC_VENDOR_PIONEER = 0x00E036,
619 CEC_VENDOR_ONKYO = 0x0009B0,
620 CEC_VENDOR_YAMAHA = 0x00A0DE,
621 CEC_VENDOR_PHILIPS = 0x00903E,
622 CEC_VENDOR_SONY = 0x080046,
623 CEC_VENDOR_UNKNOWN = 0
624 } cec_vendor_id;
625
626 typedef struct cec_menu_language
627 {
628 char language[4];
629 cec_logical_address device;
630 } cec_menu_language;
631
632 typedef struct cec_osd_name
633 {
634 char name[14];
635 cec_logical_address device;
636 } cec_osd_name;
637
638 typedef struct cec_log_message
639 {
640 char message[1024];
641 cec_log_level level;
642 int64_t time;
643 } cec_log_message;
644
645 typedef struct cec_keypress
646 {
647 cec_user_control_code keycode;
648 unsigned int duration;
649 } cec_keypress;
650
651 typedef struct cec_adapter
652 {
653 char path[1024];
654 char comm[1024];
655 } cec_adapter;
656
657 typedef struct cec_datapacket
658 {
659 uint8_t data[100];
660 uint8_t size;
661
662 #ifdef __cplusplus
663 cec_datapacket &operator =(const struct cec_datapacket &packet)
664 {
665 Clear();
666 for (uint8_t iPtr = 0; iPtr < packet.size; iPtr++)
667 PushBack(packet[iPtr]);
668
669 return *this;
670 }
671
672 bool IsEmpty(void) const { return size == 0; }
673 bool IsFull(void) const { return size == 100; }
674 uint8_t operator[](uint8_t pos) const { return pos < size ? data[pos] : 0; }
675 uint8_t At(uint8_t pos) const { return pos < size ? data[pos] : 0; }
676
677 void Shift(uint8_t iShiftBy)
678 {
679 if (iShiftBy >= size)
680 {
681 Clear();
682 }
683 else
684 {
685 for (uint8_t iPtr = 0; iPtr < size; iPtr++)
686 data[iPtr] = (iPtr + iShiftBy < size) ? data[iPtr + iShiftBy] : 0;
687 size = (uint8_t) (size - iShiftBy);
688 }
689 }
690
691 void PushBack(uint8_t add)
692 {
693 if (size < 100)
694 data[size++] = add;
695 }
696
697 void Clear(void)
698 {
699 memset(data, 0, sizeof(data));
700 size = 0;
701 }
702 #endif
703
704 } cec_datapacket;
705
706 typedef struct cec_command
707 {
708 cec_logical_address initiator;
709 cec_logical_address destination;
710 int8_t ack;
711 int8_t eom;
712 cec_opcode opcode;
713 cec_datapacket parameters;
714 int8_t opcode_set;
715 int32_t transmit_timeout;
716
717 #ifdef __cplusplus
718 cec_command &operator =(const struct cec_command &command)
719 {
720 initiator = command.initiator;
721 destination = command.destination;
722 ack = command.ack;
723 eom = command.eom;
724 opcode = command.opcode;
725 opcode_set = command.opcode_set;
726 transmit_timeout = command.transmit_timeout;
727 parameters = command.parameters;
728
729 return *this;
730 }
731
732 static void Format(cec_command &command, cec_logical_address initiator, cec_logical_address destination, cec_opcode opcode, int32_t timeout = CEC_DEFAULT_TRANSMIT_TIMEOUT)
733 {
734 command.Clear();
735 command.initiator = initiator;
736 command.destination = destination;
737 command.transmit_timeout = timeout;
738 if (opcode != CEC_OPCODE_NONE)
739 {
740 command.opcode = opcode;
741 command.opcode_set = 1;
742 }
743 }
744
745 void PushBack(uint8_t data)
746 {
747 if (initiator == CECDEVICE_UNKNOWN && destination == CECDEVICE_UNKNOWN)
748 {
749 initiator = (cec_logical_address) (data >> 4);
750 destination = (cec_logical_address) (data & 0xF);
751 }
752 else if (!opcode_set)
753 {
754 opcode_set = 1;
755 opcode = (cec_opcode) data;
756 }
757 else
758 parameters.PushBack(data);
759 }
760
761 void Clear(void)
762 {
763 initiator = CECDEVICE_UNKNOWN;
764 destination = CECDEVICE_UNKNOWN;
765 ack = 0;
766 eom = 0;
767 opcode_set = 0;
768 opcode = CEC_OPCODE_FEATURE_ABORT;
769 transmit_timeout = CEC_DEFAULT_TRANSMIT_TIMEOUT;
770 parameters.Clear();
771 };
772 #endif
773 } cec_command;
774
775 typedef struct cec_device_type_list
776 {
777 cec_device_type types[5];
778
779 #ifdef __cplusplus
780 /*!
781 * @deprecated
782 */
783 void clear(void) { Clear(); }
784 /*!
785 * @deprecated
786 */
787 void add(const cec_device_type type) { Add(type); }
788
789 void Clear(void)
790 {
791 for (unsigned int iPtr = 0; iPtr < 5; iPtr++)
792 types[iPtr] = CEC_DEVICE_TYPE_RESERVED;
793 }
794
795 void Add(const cec_device_type type)
796 {
797 for (unsigned int iPtr = 0; iPtr < 5; iPtr++)
798 {
799 if (types[iPtr] == CEC_DEVICE_TYPE_RESERVED)
800 {
801 types[iPtr] = type;
802 break;
803 }
804 }
805 }
806
807 bool IsSet(cec_device_type type)
808 {
809 bool bReturn(false);
810 for (unsigned int iPtr = 0; !bReturn && iPtr < 5; iPtr++)
811 {
812 if (types[iPtr] == type)
813 bReturn = true;
814 }
815 return bReturn;
816 }
817
818 bool IsEmpty()
819 {
820 bool bReturn(true);
821 for (unsigned int iPtr = 0; bReturn && iPtr < 5; iPtr++)
822 {
823 if (types[iPtr] != CEC_DEVICE_TYPE_RESERVED)
824 bReturn = false;
825 }
826 return bReturn;
827 }
828
829 cec_device_type operator[](uint8_t pos) const { return pos < 5 ? types[pos] : CEC_DEVICE_TYPE_RESERVED; }
830 bool operator==(const cec_device_type_list &other) const
831 {
832 bool bEqual(true);
833 for (uint8_t iPtr = 0; iPtr < 5; iPtr++)
834 bEqual &= (types[iPtr] == other[iPtr]);
835 return bEqual;
836 }
837
838 bool operator!=(const cec_device_type_list &other) const
839 {
840 return !(*this == other);
841 }
842 #endif
843 } cec_device_type_list;
844
845 typedef struct cec_logical_addresses
846 {
847 cec_logical_address primary;
848 int addresses[16];
849
850 #ifdef __cplusplus
851 void Clear(void)
852 {
853 primary = CECDEVICE_UNKNOWN;
854 for (unsigned int iPtr = 0; iPtr < 16; iPtr++)
855 addresses[iPtr] = 0;
856 }
857
858 bool IsEmpty(void) const
859 {
860 return primary == CECDEVICE_UNKNOWN;
861 }
862
863 uint16_t AckMask(void) const
864 {
865 uint16_t mask = 0;
866 for (unsigned int iPtr = 0; iPtr < 16; iPtr++)
867 if (addresses[iPtr] == 1)
868 mask |= 0x1 << iPtr;
869 return mask;
870 }
871
872 void Set(cec_logical_address address)
873 {
874 if (primary == CECDEVICE_UNKNOWN)
875 primary = address;
876
877 addresses[(int) address] = 1;
878 }
879
880 void Unset(cec_logical_address address)
881 {
882 if (primary == address)
883 primary = CECDEVICE_UNKNOWN;
884
885 addresses[(int) address] = 0;
886 }
887
888 bool IsSet(cec_logical_address address) const { return addresses[(int) address] == 1; }
889 bool operator[](uint8_t pos) const { return pos < 16 ? IsSet((cec_logical_address) pos) : false; }
890
891 bool operator==(const cec_logical_addresses &other) const
892 {
893 bool bEqual(true);
894 for (uint8_t iPtr = 0; iPtr < 16; iPtr++)
895 bEqual &= ((addresses[(int)iPtr] == 1) == other[iPtr]);
896 return bEqual;
897 }
898
899 bool operator!=(const cec_logical_addresses &other) const
900 {
901 return !(*this == other);
902 }
903 #endif
904 } cec_logical_addresses;
905
906 struct libcec_configuration;
907
908 typedef int (CEC_CDECL* CBCecLogMessageType)(void *param, const cec_log_message &);
909 typedef int (CEC_CDECL* CBCecKeyPressType)(void *param, const cec_keypress &);
910 typedef int (CEC_CDECL* CBCecCommandType)(void *param, const cec_command &);
911 typedef int (CEC_CDECL* CBCecConfigurationChangedType)(void *param, const libcec_configuration &);
912
913 typedef struct ICECCallbacks
914 {
915 /*!
916 * @brief Transfer a log message from libCEC to the client.
917 * @param message The message to transfer.
918 * @return 1 when ok, 0 otherwise.
919 */
920 CBCecLogMessageType CBCecLogMessage;
921
922 /*!
923 * @brief Transfer a keypress from libCEC to the client.
924 * @param key The keypress to transfer.
925 * @return 1 when ok, 0 otherwise.
926 */
927 CBCecKeyPressType CBCecKeyPress;
928
929 /*!
930 * @brief Transfer a CEC command from libCEC to the client.
931 * @param command The command to transfer.
932 * @return 1 when ok, 0 otherwise.
933 */
934 CBCecCommandType CBCecCommand;
935
936 /*!
937 * @brief Transfer a changed configuration from libCEC to the client
938 * @param configuration The configuration to transfer
939 * @return 1 when ok, 0 otherwise
940 */
941 CBCecConfigurationChangedType CBCecConfigurationChanged;
942 } ICECCallbacks;
943
944 typedef enum cec_client_version
945 {
946 CEC_CLIENT_VERSION_PRE_1_5 = 0,
947 CEC_CLIENT_VERSION_1_5_0 = 0x1500
948 } cec_client_version;
949
950 typedef enum cec_server_version
951 {
952 CEC_SERVER_VERSION_PRE_1_5 = 0,
953 CEC_SERVER_VERSION_1_5_0 = 0x1500
954 } cec_server_version;
955
956 typedef struct libcec_configuration
957 {
958 uint32_t clientVersion; /*!< the version of the client that is connecting */
959 char strDeviceName[13]; /*!< how to name the device on the CEC bus */
960 cec_device_type_list deviceTypes; /*!< the CEC device types to emulate */
961 uint8_t bAutodetectAddress; /*!< try to autodetect the physical address when 1 */
962 uint16_t iPhysicalAddress; /*!< the physical address of the CEC adapter. only used when bAutodetectAddress = 0 or when the adapter doesn't support autodetection */
963 cec_logical_address baseDevice; /*!< the logical address of the device to which the adapter is connected. only used when iPhysicalAddress = 0 and bAutodetectAddress = 0 or when the adapter doesn't support autodetection */
964 uint8_t iHDMIPort; /*!< the HDMI port to which the adapter is connected. only used when iPhysicalAddress = 0 and bAutodetectAddress = 0 or when the adapter doesn't support autodetection */
965 uint64_t tvVendor; /*!< override the vendor ID of the TV. leave this untouched to autodetect */
966 cec_logical_addresses wakeDevices; /*!< wake these CEC devices when initialising libCEC or when calling PowerOnDevices() without any parameter */
967 cec_logical_addresses powerOffDevices; /*!< power off these devices when calling StandbyDevices() without any parameter */
968
969 uint32_t serverVersion; /*!< the version number of the server. read-only */
970
971 // player specific settings
972 uint8_t bGetSettingsFromROM; /*!< true to get the settings from the ROM (if set, and a v2 ROM is present), false to use these settings. */
973 uint8_t bUseTVMenuLanguage; /*!< use the menu language of the TV in the player application */
974 uint8_t bActivateSource; /*!< make libCEC the active source on the bus when starting the player application */
975 uint8_t bPowerOffScreensaver; /*!< put devices in standby mode when activating the screensaver */
976 uint8_t bPowerOffOnStandby; /*!< put this PC in standby mode when the TV is switched off */
977
978 void * callbackParam; /*!< the object to pass along with a call of the callback methods. NULL to ignore */
979 ICECCallbacks * callbacks; /*!< the callback methods to use. set this to NULL when not using callbacks */
980
981 #ifdef __cplusplus
982 void Clear(void)
983 {
984 memset(strDeviceName, 0, 13);
985 deviceTypes.clear();
986 iPhysicalAddress = 0;
987 baseDevice = (cec_logical_address)CEC_DEFAULT_BASE_DEVICE;
988 iHDMIPort = CEC_DEFAULT_HDMI_PORT;
989 tvVendor = (uint64_t)CEC_VENDOR_UNKNOWN;
990 clientVersion = (uint32_t)CEC_CLIENT_VERSION_PRE_1_5;
991 serverVersion = (uint32_t)CEC_SERVER_VERSION_PRE_1_5;
992 wakeDevices.Clear();
993 powerOffDevices.Clear();
994
995 bAutodetectAddress = 1;
996 bGetSettingsFromROM = 0;
997 bUseTVMenuLanguage = CEC_DEFAULT_SETTING_USE_TV_MENU_LANGUAGE;
998 bActivateSource = CEC_DEFAULT_SETTING_ACTIVATE_SOURCE;
999 #if CEC_DEFAULT_SETTING_POWER_OFF_SHUTDOWN == 1
1000 powerOffDevices.Set(CECDEVICE_BROADCAST);
1001 #endif
1002 #if CEC_DEFAULT_SETTING_ACTIVATE_SOURCE == 1
1003 wakeDevices.Set(CECDEVICE_TV);
1004 #endif
1005 bPowerOffScreensaver = CEC_DEFAULT_SETTING_POWER_OFF_SCREENSAVER;
1006 bPowerOffOnStandby = CEC_DEFAULT_SETTING_POWER_OFF_ON_STANDBY;
1007
1008 callbackParam = NULL;
1009 callbacks = NULL;
1010 }
1011 #endif
1012 } libcec_configuration;
1013
1014 #ifdef UNUSED
1015 #elif defined(__GNUC__)
1016 #define UNUSED(x) UNUSED_ ## x __attribute__((unused))
1017 #elif defined(__LCLINT__)
1018 #define UNUSED(x) /*@unused@*/ x
1019 #else
1020 #define UNUSED(x) x
1021 #endif
1022
1023 #ifdef __cplusplus
1024 };
1025 };
1026 #endif
1027
1028 #endif /* CECTYPES_H_ */