1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093
|
/** @file
* VBox Remote Desktop Extension (VRDE) - Video Input interface.
*/
/*
* Copyright (C) 2012-2024 Oracle and/or its affiliates.
*
* This file is part of VirtualBox base platform packages, as
* available from https://www.virtualbox.org.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, in version 3 of the
* License.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <https://www.gnu.org/licenses>.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
* in the VirtualBox distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*
* SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
*/
#ifndef VBOX_INCLUDED_RemoteDesktop_VRDEVideoIn_h
#define VBOX_INCLUDED_RemoteDesktop_VRDEVideoIn_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
/* Define VRDE_VIDEOIN_WITH_VRDEINTERFACE to include the server VRDE interface parts. */
#ifdef VRDE_VIDEOIN_WITH_VRDEINTERFACE
# include <VBox/RemoteDesktop/VRDE.h>
#endif /* VRDE_VIDEOIN_WITH_VRDEINTERFACE */
#ifdef AssertCompileSize
# define ASSERTSIZE(type, size) AssertCompileSize(type, size);
#else
# define ASSERTSIZE(type, size)
#endif /* AssertCompileSize */
#include <iprt/types.h>
/*
* Interface for accessing a video camera device on the client.
*
* Async callbacks are used for providing feedback, reporting errors, etc.
*
* Initial version supports: Camera + Processing Unit + Streaming Control.
*
* There are 2 modes:
* 1) The virtual WebCam is already attached to the guest.
* 2) The virtual WebCam will be attached when the client has it.
*
* Initially the mode 1 is supported.
*
* Mode 1 details:
* The WebCam has some fixed functionality, according to the descriptors,
* which has been already read by the guest. So some of functions will
* not work if the client does not support them.
*
* Mode 2 details:
* Virtual WebCam descriptors are built from the client capabilities.
*
* Similarly to the smartcard, the server will inform the ConsoleVRDE that there is a WebCam.
* ConsoleVRDE creates a VRDEVIDEOIN handle and forwards virtual WebCam requests to it.
*
* Interface with VBox.
*
* Virtual WebCam ConsoleVRDE VRDE
*
* Negotiate <->
* <- VideoInDeviceNotify(Attached, DeviceId)
* -> GetDeviceDesc
* <- DeviceDesc
* 2 <- CreateCamera
* 2 CameraCreated ->
*
* CameraRequest -> Request ->
* Response <- <- Response <- Response
* Frame <- <- Frame <- Frame
* <- VideoInDeviceNotify(Detached, DeviceId)
*
* Unsupported requests fail.
* The Device Description received from the client may be used to validate WebCam requests
* in the ConsoleVRDE code, for example filter out unsupported requests.
*
*/
/* All structures in this file are packed.
* Everything is little-endian.
*/
#pragma pack(1)
/*
* The interface supports generic video input descriptors, capabilities and controls:
* * Descriptors
* + Interface
* - Input, Camera Terminal
* - Processing Unit
* + Video Streaming
* - Input Header
* - Payload Format
* - Video Frame
* - Still Image Frame
* * Video Control requests
* + Interface
* - Power Mode
* + Unit and Terminal
* camera
* - Scanning Mode (interlaced, progressive)
* - Auto-Exposure Mode
* - Auto-Exposure Priority
* - Exposure Time Absolute, Relative
* - Focus Absolute, Relative, Auto
* - Iris Absolute, Relative
* - Zoom Absolute, Relative
* - PanTilt Absolute, Relative
* - Roll Absolute, Relative
* - Privacy
* processing
* - Backlight Compensation
* - Brightness
* - Contrast
* - Gain
* - Power Line Frequency
* - Hue Manual, Auto
* - Saturation
* - Sharpness
* - Gamma
* - White Balance Temperature Manual, Auto
* - White Balance Component Manual, Auto
* - Digital Multiplier
* - Digital Multiplier Limit
* * Video Streaming requests
* + Interface
* - Synch Delay
* - Still Image Trigger
* - Generate Key Frame
* - Update Frame Segment
* - Stream Error Code
*
*
* Notes:
* * still capture uses a method similar to method 2, because the still frame will
* be send instead of video over the channel.
* Also the method 2 can be in principle emulated by both 1 and 3 on the client.
* However the client can initiate a still frame transfer, similar to hardware button trigger.
* * all control changes are async.
* * probe/commit are not used. The server can select a supported format/frame from the list.
* * no color matching. sRGB is the default.
* * most of constants are the same as in USB Video Class spec, but they are not the same and
* should be always converted.
*/
/*
* The DEVICEDEC describes the device and provides a list of supported formats:
* VRDEVIDEOINDEVICEDESC
* VRDEVIDEOINFORMATDESC[0];
* VRDEVIDEOINFRAMEDESC[0..N-1]
* VRDEVIDEOINFORMATDESC[1];
* VRDEVIDEOINFRAMEDESC[0..M-1]
* ...
*/
typedef struct VRDEVIDEOINDEVICEDESC
{
uint16_t u16ObjectiveFocalLengthMin;
uint16_t u16ObjectiveFocalLengthMax;
uint16_t u16OcularFocalLength;
uint16_t u16MaxMultiplier;
uint32_t fu32CameraControls; /* VRDE_VIDEOIN_F_CT_CTRL_* */
uint32_t fu32ProcessingControls; /* VRDE_VIDEOIN_F_PU_CTRL_* */
uint8_t fu8DeviceCaps; /* VRDE_VIDEOIN_F_DEV_CAP_* */
uint8_t u8NumFormats; /* Number of following VRDEVIDEOINFORMATDESC structures. */
uint16_t cbExt; /* Size of the optional extended description. */
/* An extended description may follow. */
/* An array of VRDEVIDEOINFORMATDESC follows. */
} VRDEVIDEOINDEVICEDESC;
/* VRDEVIDEOINDEVICEDESC::fu32CameraControls */
#define VRDE_VIDEOIN_F_CT_CTRL_SCANNING_MODE 0x00000001 /* D0: Scanning Mode */
#define VRDE_VIDEOIN_F_CT_CTRL_AE_MODE 0x00000002 /* D1: Auto-Exposure Mode */
#define VRDE_VIDEOIN_F_CT_CTRL_AE_PRIORITY 0x00000004 /* D2: Auto-Exposure Priority */
#define VRDE_VIDEOIN_F_CT_CTRL_EXPOSURE_TIME_ABSOLUTE 0x00000008 /* D3: Exposure Time (Absolute) */
#define VRDE_VIDEOIN_F_CT_CTRL_EXPOSURE_TIME_RELATIVE 0x00000010 /* D4: Exposure Time (Relative) */
#define VRDE_VIDEOIN_F_CT_CTRL_FOCUS_ABSOLUTE 0x00000020 /* D5: Focus (Absolute) */
#define VRDE_VIDEOIN_F_CT_CTRL_FOCUS_RELATIVE 0x00000040 /* D6: Focus (Relative) */
#define VRDE_VIDEOIN_F_CT_CTRL_IRIS_ABSOLUTE 0x00000080 /* D7: Iris (Absolute) */
#define VRDE_VIDEOIN_F_CT_CTRL_IRIS_RELATIVE 0x00000100 /* D8: Iris (Relative) */
#define VRDE_VIDEOIN_F_CT_CTRL_ZOOM_ABSOLUTE 0x00000200 /* D9: Zoom (Absolute) */
#define VRDE_VIDEOIN_F_CT_CTRL_ZOOM_RELATIVE 0x00000400 /* D10: Zoom (Relative) */
#define VRDE_VIDEOIN_F_CT_CTRL_PANTILT_ABSOLUTE 0x00000800 /* D11: PanTilt (Absolute) */
#define VRDE_VIDEOIN_F_CT_CTRL_PANTILT_RELATIVE 0x00001000 /* D12: PanTilt (Relative) */
#define VRDE_VIDEOIN_F_CT_CTRL_ROLL_ABSOLUTE 0x00002000 /* D13: Roll (Absolute) */
#define VRDE_VIDEOIN_F_CT_CTRL_ROLL_RELATIVE 0x00004000 /* D14: Roll (Relative) */
#define VRDE_VIDEOIN_F_CT_CTRL_RESERVED1 0x00008000 /* D15: Reserved */
#define VRDE_VIDEOIN_F_CT_CTRL_RESERVED2 0x00010000 /* D16: Reserved */
#define VRDE_VIDEOIN_F_CT_CTRL_FOCUS_AUTO 0x00020000 /* D17: Focus, Auto */
#define VRDE_VIDEOIN_F_CT_CTRL_PRIVACY 0x00040000 /* D18: Privacy */
/* VRDEVIDEOINDEVICEDESC::fu32ProcessingControls */
#define VRDE_VIDEOIN_F_PU_CTRL_BRIGHTNESS 0x00000001 /* D0: Brightness */
#define VRDE_VIDEOIN_F_PU_CTRL_CONTRAST 0x00000002 /* D1: Contrast */
#define VRDE_VIDEOIN_F_PU_CTRL_HUE 0x00000004 /* D2: Hue */
#define VRDE_VIDEOIN_F_PU_CTRL_SATURATION 0x00000008 /* D3: Saturation */
#define VRDE_VIDEOIN_F_PU_CTRL_SHARPNESS 0x00000010 /* D4: Sharpness */
#define VRDE_VIDEOIN_F_PU_CTRL_GAMMA 0x00000020 /* D5: Gamma */
#define VRDE_VIDEOIN_F_PU_CTRL_WHITE_BALANCE_TEMPERATURE 0x00000040 /* D6: White Balance Temperature */
#define VRDE_VIDEOIN_F_PU_CTRL_WHITE_BALANCE_COMPONENT 0x00000080 /* D7: White Balance Component */
#define VRDE_VIDEOIN_F_PU_CTRL_BACKLIGHT_COMPENSATION 0x00000100 /* D8: Backlight Compensation */
#define VRDE_VIDEOIN_F_PU_CTRL_GAIN 0x00000200 /* D9: Gain */
#define VRDE_VIDEOIN_F_PU_CTRL_POWER_LINE_FREQUENCY 0x00000400 /* D10: Power Line Frequency */
#define VRDE_VIDEOIN_F_PU_CTRL_HUE_AUTO 0x00000800 /* D11: Hue, Auto */
#define VRDE_VIDEOIN_F_PU_CTRL_WHITE_BALANCE_TEMPERATURE_AUTO 0x00001000 /* D12: White Balance Temperature, Auto */
#define VRDE_VIDEOIN_F_PU_CTRL_WHITE_BALANCE_COMPONENT_AUTO 0x00002000 /* D13: White Balance Component, Auto */
#define VRDE_VIDEOIN_F_PU_CTRL_DIGITAL_MULTIPLIER 0x00004000 /* D14: Digital Multiplier */
#define VRDE_VIDEOIN_F_PU_CTRL_DIGITAL_MULTIPLIER_LIMIT 0x00008000 /* D15: Digital Multiplier Limit */
/* VRDEVIDEOINDEVICEDESC::fu8DeviceCaps */
#define VRDE_VIDEOIN_F_DEV_CAP_DYNAMICCHANGE 0x01 /* Whether dynamic format change is supported. */
#define VRDE_VIDEOIN_F_DEV_CAP_TRIGGER 0x02 /* Whether hardware triggering is supported. */
#define VRDE_VIDEOIN_F_DEV_CAP_TRIGGER_USAGE 0x04 /* 0 - still image, 1 - generic button event.*/
/* VRDEVIDEOINDEVICEDESC extended description. */
typedef struct VRDEVIDEOINDEVICEEXT
{
uint32_t fu32Fields;
/* One or more VRDEVIDEOINDEVICEFIELD follow. */
} VRDEVIDEOINDEVICEEXT;
typedef struct VRDEVIDEOINDEVICEFIELDHDR
{
uint16_t cbField; /* Number of bytes reserved for this field. */
} VRDEVIDEOINDEVICEFIELDHDR;
/* VRDEVIDEOINDEVICEDESC::fu32Fields */
#define VRDE_VIDEOIN_F_DEV_EXT_NAME 0x00000001 /* Utf8 device name. */
#define VRDE_VIDEOIN_F_DEV_EXT_SERIAL 0x00000002 /* Utf8 device serial number. */
/* The video format descriptor. */
typedef struct VRDEVIDEOINFORMATDESC
{
uint16_t cbFormat; /* Size of the structure including cbFormat and format specific data. */
uint8_t u8FormatId; /* The unique identifier of the format on the client. */
uint8_t u8FormatType; /* MJPEG etc. VRDE_VIDEOIN_FORMAT_* */
uint8_t u8FormatFlags; /* VRDE_VIDEOIN_F_FMT_* */
uint8_t u8NumFrames; /* Number of following VRDEVIDEOINFRAMEDESC structures. */
uint16_t u16Reserved; /* Must be set to 0. */
/* Other format specific data may follow. */
/* An array of VRDEVIDEOINFRAMEDESC follows. */
} VRDEVIDEOINFORMATDESC;
/* VRDEVIDEOINFORMATDESC::u8FormatType */
#define VRDE_VIDEOIN_FORMAT_UNCOMPRESSED 0x04
#define VRDE_VIDEOIN_FORMAT_MJPEG 0x06
#define VRDE_VIDEOIN_FORMAT_MPEG2TS 0x0A
#define VRDE_VIDEOIN_FORMAT_DV 0x0C
#define VRDE_VIDEOIN_FORMAT_FRAME_BASED 0x10
#define VRDE_VIDEOIN_FORMAT_STREAM_BASED 0x12
/* VRDEVIDEOINFORMATDESC::u8FormatFlags. */
#define VRDE_VIDEOIN_F_FMT_GENERATEKEYFRAME 0x01 /* Supports Generate Key Frame */
#define VRDE_VIDEOIN_F_FMT_UPDATEFRAMESEGMENT 0x02 /* Supports Update Frame Segment */
#define VRDE_VIDEOIN_F_FMT_COPYPROTECT 0x04 /* If duplication should be restricted. */
#define VRDE_VIDEOIN_F_FMT_COMPQUALITY 0x08 /* If the format supports an adjustable compression quality. */
typedef struct VRDEVIDEOINFRAMEDESC
{
uint16_t cbFrame; /* Size of the structure including cbFrame and frame specific data. */
uint8_t u8FrameId; /* The unique identifier of the frame for the corresponding format on the client. */
uint8_t u8FrameFlags;
uint16_t u16Width;
uint16_t u16Height;
uint32_t u32NumFrameIntervals; /* The number of supported frame intervals. */
uint32_t u32MinFrameInterval; /* Shortest frame interval supported (at highest frame rate), in 100ns units. */
uint32_t u32MaxFrameInterval; /* Longest frame interval supported (at lowest frame rate), in 100ns units. */
/* Supported frame intervals (in 100ns units) follow if VRDE_VIDEOIN_F_FRM_DISCRETE_INTERVALS is set.
* uint32_t au32FrameIntervals[u32NumFrameIntervals];
*/
/* Supported min and max bitrate in bits per second follow if VRDE_VIDEOIN_F_FRM_BITRATE is set.
* uint32_t u32MinBitRate;
* uint32_t u32MaxBitRate;
*/
/* Other frame specific data may follow. */
} VRDEVIDEOINFRAMEDESC;
/* VRDEVIDEOINFRAMEDESC::u8FrameFlags. */
#define VRDE_VIDEOIN_F_FRM_STILL 0x01 /* If still images are supported for this frame. */
#define VRDE_VIDEOIN_F_FRM_DISCRETE_INTERVALS 0x02 /* If the discrete intervals list is included. */
#define VRDE_VIDEOIN_F_FRM_BITRATE 0x04 /* If the bitrate fields are included. */
#define VRDE_VIDEOIN_F_FRM_SIZE_OF_FIELDS 0x08 /* If the all optional fields start with 16 bit field size. */
/*
* Controls.
*
* The same structures are used for both SET and GET requests.
* Requests are async. A callback is invoked, when the client returns a reply.
* A control change notification also uses these structures.
*
* If a control request can not be fulfilled, then VRDE_VIDEOIN_CTRLHDR_F_FAIL
* will be set and u8Status contains the error code. This replaces the VC_REQUEST_ERROR_CODE_CONTROL.
*
* If the client receives an unsupported control, then the client must ignore it.
* That is the control request must not affect the client in any way.
* The client may send a VRDEVIDEOINCTRLHDR response for the unsupported control with:
* u16ControlSelector = the received value;
* u16RequestType = the received value;
* u16ParmSize = 0;
* u8Flags = VRDE_VIDEOIN_CTRLHDR_F_FAIL;
* u8Status = VRDE_VIDEOIN_CTRLHDR_STATUS_INVALIDCONTROL;
*/
typedef struct VRDEVIDEOINCTRLHDR
{
uint16_t u16ControlSelector; /* VRDE_VIDEOIN_CTRLSEL_* */
uint16_t u16RequestType; /* VRDE_VIDEOIN_CTRLREQ_* */
uint16_t u16ParmSize; /* The size of the control specific parameters. */
uint8_t u8Flags; /* VRDE_VIDEOIN_CTRLHDR_F_* */
uint8_t u8Status; /* VRDE_VIDEOIN_CTRLHDR_STATUS_* */
/* Control specific data follows. */
} VRDEVIDEOINCTRLHDR;
/* Control request types: VRDEVIDEOINCTRLHDR::u16RequestType. */
#define VRDE_VIDEOIN_CTRLREQ_UNDEFINED 0x00
#define VRDE_VIDEOIN_CTRLREQ_SET_CUR 0x01
#define VRDE_VIDEOIN_CTRLREQ_GET_CUR 0x81
#define VRDE_VIDEOIN_CTRLREQ_GET_MIN 0x82
#define VRDE_VIDEOIN_CTRLREQ_GET_MAX 0x83
#define VRDE_VIDEOIN_CTRLREQ_GET_RES 0x84
#define VRDE_VIDEOIN_CTRLREQ_GET_LEN 0x85
#define VRDE_VIDEOIN_CTRLREQ_GET_INFO 0x86
#define VRDE_VIDEOIN_CTRLREQ_GET_DEF 0x87
/* VRDEVIDEOINCTRLHDR::u8Flags */
#define VRDE_VIDEOIN_CTRLHDR_F_NOTIFY 0x01 /* Control change notification, the attribute is derived from u16RequestType and F_FAIL. */
#define VRDE_VIDEOIN_CTRLHDR_F_FAIL 0x02 /* The operation failed. Error code is in u8Status. */
/* VRDEVIDEOINCTRLHDR::u8Status if the VRDE_VIDEOIN_CTRLHDR_F_FAIL is set. */
#define VRDE_VIDEOIN_CTRLHDR_STATUS_SUCCESS 0x00 /**/
#define VRDE_VIDEOIN_CTRLHDR_STATUS_NOTREADY 0x01 /* Not ready */
#define VRDE_VIDEOIN_CTRLHDR_STATUS_WRONGSTATE 0x02 /* Wrong state */
#define VRDE_VIDEOIN_CTRLHDR_STATUS_POWER 0x03 /* Power */
#define VRDE_VIDEOIN_CTRLHDR_STATUS_OUTOFRANGE 0x04 /* Out of range */
#define VRDE_VIDEOIN_CTRLHDR_STATUS_INVALIDUNIT 0x05 /* Invalid unit */
#define VRDE_VIDEOIN_CTRLHDR_STATUS_INVALIDCONTROL 0x06 /* Invalid control */
#define VRDE_VIDEOIN_CTRLHDR_STATUS_INVALIDREQUEST 0x07 /* Invalid request */
#define VRDE_VIDEOIN_CTRLHDR_STATUS_UNKNOWN 0xFF /* Unknown */
/* Control selectors. 16 bit. High byte is the category. Low byte is the identifier.*/
#ifdef RT_MAKE_U16
#define VRDE_VIDEOIN_CTRLSEL_MAKE(Lo, Hi) RT_MAKE_U16(Lo, Hi)
#else
#define VRDE_VIDEOIN_CTRLSEL_MAKE(Lo, Hi) ((uint16_t)( (uint16_t)((uint8_t)(Hi)) << 8 | (uint8_t)(Lo) ))
#endif
#define VRDE_VIDEOIN_CTRLSEL_VC(a) VRDE_VIDEOIN_CTRLSEL_MAKE(a, 0x01)
#define VRDE_VIDEOIN_CTRLSEL_CT(a) VRDE_VIDEOIN_CTRLSEL_MAKE(a, 0x02)
#define VRDE_VIDEOIN_CTRLSEL_PU(a) VRDE_VIDEOIN_CTRLSEL_MAKE(a, 0x03)
#define VRDE_VIDEOIN_CTRLSEL_VS(a) VRDE_VIDEOIN_CTRLSEL_MAKE(a, 0x04)
#define VRDE_VIDEOIN_CTRLSEL_HW(a) VRDE_VIDEOIN_CTRLSEL_MAKE(a, 0x05)
#define VRDE_VIDEOIN_CTRLSEL_PROT(a) VRDE_VIDEOIN_CTRLSEL_MAKE(a, 0x06)
#define VRDE_VIDEOIN_CTRLSEL_VC_VIDEO_POWER_MODE_CONTROL VRDE_VIDEOIN_CTRLSEL_VC(0x01)
#define VRDE_VIDEOIN_CTRLSEL_CT_UNDEFINED VRDE_VIDEOIN_CTRLSEL_CT(0x00)
#define VRDE_VIDEOIN_CTRLSEL_CT_SCANNING_MODE VRDE_VIDEOIN_CTRLSEL_CT(0x01)
#define VRDE_VIDEOIN_CTRLSEL_CT_AE_MODE VRDE_VIDEOIN_CTRLSEL_CT(0x02)
#define VRDE_VIDEOIN_CTRLSEL_CT_AE_PRIORITY VRDE_VIDEOIN_CTRLSEL_CT(0x03)
#define VRDE_VIDEOIN_CTRLSEL_CT_EXPOSURE_TIME_ABSOLUTE VRDE_VIDEOIN_CTRLSEL_CT(0x04)
#define VRDE_VIDEOIN_CTRLSEL_CT_EXPOSURE_TIME_RELATIVE VRDE_VIDEOIN_CTRLSEL_CT(0x05)
#define VRDE_VIDEOIN_CTRLSEL_CT_FOCUS_ABSOLUTE VRDE_VIDEOIN_CTRLSEL_CT(0x06)
#define VRDE_VIDEOIN_CTRLSEL_CT_FOCUS_RELATIVE VRDE_VIDEOIN_CTRLSEL_CT(0x07)
#define VRDE_VIDEOIN_CTRLSEL_CT_FOCUS_AUTO VRDE_VIDEOIN_CTRLSEL_CT(0x08)
#define VRDE_VIDEOIN_CTRLSEL_CT_IRIS_ABSOLUTE VRDE_VIDEOIN_CTRLSEL_CT(0x09)
#define VRDE_VIDEOIN_CTRLSEL_CT_IRIS_RELATIVE VRDE_VIDEOIN_CTRLSEL_CT(0x0A)
#define VRDE_VIDEOIN_CTRLSEL_CT_ZOOM_ABSOLUTE VRDE_VIDEOIN_CTRLSEL_CT(0x0B)
#define VRDE_VIDEOIN_CTRLSEL_CT_ZOOM_RELATIVE VRDE_VIDEOIN_CTRLSEL_CT(0x0C)
#define VRDE_VIDEOIN_CTRLSEL_CT_PANTILT_ABSOLUTE VRDE_VIDEOIN_CTRLSEL_CT(0x0D)
#define VRDE_VIDEOIN_CTRLSEL_CT_PANTILT_RELATIVE VRDE_VIDEOIN_CTRLSEL_CT(0x0E)
#define VRDE_VIDEOIN_CTRLSEL_CT_ROLL_ABSOLUTE VRDE_VIDEOIN_CTRLSEL_CT(0x0F)
#define VRDE_VIDEOIN_CTRLSEL_CT_ROLL_RELATIVE VRDE_VIDEOIN_CTRLSEL_CT(0x10)
#define VRDE_VIDEOIN_CTRLSEL_CT_PRIVACY VRDE_VIDEOIN_CTRLSEL_CT(0x11)
#define VRDE_VIDEOIN_CTRLSEL_PU_UNDEFINED VRDE_VIDEOIN_CTRLSEL_PU(0x00)
#define VRDE_VIDEOIN_CTRLSEL_PU_BACKLIGHT_COMPENSATION VRDE_VIDEOIN_CTRLSEL_PU(0x01)
#define VRDE_VIDEOIN_CTRLSEL_PU_BRIGHTNESS VRDE_VIDEOIN_CTRLSEL_PU(0x02)
#define VRDE_VIDEOIN_CTRLSEL_PU_CONTRAST VRDE_VIDEOIN_CTRLSEL_PU(0x03)
#define VRDE_VIDEOIN_CTRLSEL_PU_GAIN VRDE_VIDEOIN_CTRLSEL_PU(0x04)
#define VRDE_VIDEOIN_CTRLSEL_PU_POWER_LINE_FREQUENCY VRDE_VIDEOIN_CTRLSEL_PU(0x05)
#define VRDE_VIDEOIN_CTRLSEL_PU_HUE VRDE_VIDEOIN_CTRLSEL_PU(0x06)
#define VRDE_VIDEOIN_CTRLSEL_PU_SATURATION VRDE_VIDEOIN_CTRLSEL_PU(0x07)
#define VRDE_VIDEOIN_CTRLSEL_PU_SHARPNESS VRDE_VIDEOIN_CTRLSEL_PU(0x08)
#define VRDE_VIDEOIN_CTRLSEL_PU_GAMMA VRDE_VIDEOIN_CTRLSEL_PU(0x09)
#define VRDE_VIDEOIN_CTRLSEL_PU_WHITE_BALANCE_TEMPERATURE VRDE_VIDEOIN_CTRLSEL_PU(0x0A)
#define VRDE_VIDEOIN_CTRLSEL_PU_WHITE_BALANCE_TEMPERATURE_AUTO VRDE_VIDEOIN_CTRLSEL_PU(0x0B)
#define VRDE_VIDEOIN_CTRLSEL_PU_WHITE_BALANCE_COMPONENT VRDE_VIDEOIN_CTRLSEL_PU(0x0C)
#define VRDE_VIDEOIN_CTRLSEL_PU_WHITE_BALANCE_COMPONENT_AUTO VRDE_VIDEOIN_CTRLSEL_PU(0x0D)
#define VRDE_VIDEOIN_CTRLSEL_PU_DIGITAL_MULTIPLIER VRDE_VIDEOIN_CTRLSEL_PU(0x0E)
#define VRDE_VIDEOIN_CTRLSEL_PU_DIGITAL_MULTIPLIER_LIMIT VRDE_VIDEOIN_CTRLSEL_PU(0x0F)
#define VRDE_VIDEOIN_CTRLSEL_PU_HUE_AUTO VRDE_VIDEOIN_CTRLSEL_PU(0x10)
#define VRDE_VIDEOIN_CTRLSEL_PU_ANALOG_VIDEO_STANDARD VRDE_VIDEOIN_CTRLSEL_PU(0x11)
#define VRDE_VIDEOIN_CTRLSEL_PU_ANALOG_LOCK_STATUS VRDE_VIDEOIN_CTRLSEL_PU(0x12)
#define VRDE_VIDEOIN_CTRLSEL_VS_UNDEFINED VRDE_VIDEOIN_CTRLSEL_VS(0x00)
#define VRDE_VIDEOIN_CTRLSEL_VS_SETUP VRDE_VIDEOIN_CTRLSEL_VS(0x01)
#define VRDE_VIDEOIN_CTRLSEL_VS_OFF VRDE_VIDEOIN_CTRLSEL_VS(0x02)
#define VRDE_VIDEOIN_CTRLSEL_VS_ON VRDE_VIDEOIN_CTRLSEL_VS(0x03)
#define VRDE_VIDEOIN_CTRLSEL_VS_STILL_IMAGE_TRIGGER VRDE_VIDEOIN_CTRLSEL_VS(0x05)
#define VRDE_VIDEOIN_CTRLSEL_VS_STREAM_ERROR_CODE VRDE_VIDEOIN_CTRLSEL_VS(0x06)
#define VRDE_VIDEOIN_CTRLSEL_VS_GENERATE_KEY_FRAME VRDE_VIDEOIN_CTRLSEL_VS(0x07)
#define VRDE_VIDEOIN_CTRLSEL_VS_UPDATE_FRAME_SEGMENT VRDE_VIDEOIN_CTRLSEL_VS(0x08)
#define VRDE_VIDEOIN_CTRLSEL_VS_SYNCH_DELAY VRDE_VIDEOIN_CTRLSEL_VS(0x09)
#define VRDE_VIDEOIN_CTRLSEL_HW_BUTTON VRDE_VIDEOIN_CTRLSEL_HW(0x01)
#define VRDE_VIDEOIN_CTRLSEL_PROT_PING VRDE_VIDEOIN_CTRLSEL_PROT(0x01)
#define VRDE_VIDEOIN_CTRLSEL_PROT_SAMPLING VRDE_VIDEOIN_CTRLSEL_PROT(0x02)
#define VRDE_VIDEOIN_CTRLSEL_PROT_FRAMES VRDE_VIDEOIN_CTRLSEL_PROT(0x03)
typedef struct VRDEVIDEOINCTRL_VIDEO_POWER_MODE
{
VRDEVIDEOINCTRLHDR hdr;
uint8_t u8DevicePowerMode;
} VRDEVIDEOINCTRL_VIDEO_POWER_MODE;
typedef struct VRDEVIDEOINCTRL_CT_SCANNING_MODE
{
VRDEVIDEOINCTRLHDR hdr;
uint8_t u8ScanningMode;
} VRDEVIDEOINCTRL_CT_SCANNING_MODE;
typedef struct VRDEVIDEOINCTRL_CT_AE_MODE
{
VRDEVIDEOINCTRLHDR hdr;
uint8_t u8AutoExposureMode;
} VRDEVIDEOINCTRL_CT_AE_MODE;
typedef struct VRDEVIDEOINCTRL_CT_AE_PRIORITY
{
VRDEVIDEOINCTRLHDR hdr;
uint8_t u8AutoExposurePriority;
} VRDEVIDEOINCTRL_CT_AE_PRIORITY;
typedef struct VRDEVIDEOINCTRL_CT_EXPOSURE_TIME_ABSOLUTE
{
VRDEVIDEOINCTRLHDR hdr;
uint32_t u32ExposureTimeAbsolute;
} VRDEVIDEOINCTRL_CT_EXPOSURE_TIME_ABSOLUTE;
typedef struct VRDEVIDEOINCTRL_CT_EXPOSURE_TIME_RELATIVE
{
VRDEVIDEOINCTRLHDR hdr;
uint8_t u8ExposureTimeRelative;
} VRDEVIDEOINCTRL_CT_EXPOSURE_TIME_RELATIVE;
typedef struct VRDEVIDEOINCTRL_CT_FOCUS_ABSOLUTE
{
VRDEVIDEOINCTRLHDR hdr;
uint16_t u16FocusAbsolute;
} VRDEVIDEOINCTRL_CT_FOCUS_ABSOLUTE;
typedef struct VRDEVIDEOINCTRL_CT_FOCUS_RELATIVE
{
VRDEVIDEOINCTRLHDR hdr;
uint8_t u8FocusRelative;
uint8_t u8Speed;
} VRDEVIDEOINCTRL_CT_FOCUS_RELATIVE;
typedef struct VRDEVIDEOINCTRL_CT_FOCUS_AUTO
{
VRDEVIDEOINCTRLHDR hdr;
uint8_t u8FocusAuto;
} VRDEVIDEOINCTRL_CT_FOCUS_AUTO;
typedef struct VRDEVIDEOINCTRL_CT_IRIS_ABSOLUTE
{
VRDEVIDEOINCTRLHDR hdr;
uint16_t u16IrisAbsolute;
} VRDEVIDEOINCTRL_CT_IRIS_ABSOLUTE;
typedef struct VRDEVIDEOINCTRL_CT_IRIS_RELATIVE
{
VRDEVIDEOINCTRLHDR hdr;
uint8_t u8IrisRelative;
} VRDEVIDEOINCTRL_CT_IRIS_RELATIVE;
typedef struct VRDEVIDEOINCTRL_CT_ZOOM_ABSOLUTE
{
VRDEVIDEOINCTRLHDR hdr;
uint16_t u16ZoomAbsolute;
} VRDEVIDEOINCTRL_CT_ZOOM_ABSOLUTE;
typedef struct VRDEVIDEOINCTRL_CT_ZOOM_RELATIVE
{
VRDEVIDEOINCTRLHDR hdr;
uint8_t u8Zoom;
uint8_t u8DigitalZoom;
uint8_t u8Speed;
} VRDEVIDEOINCTRL_CT_ZOOM_RELATIVE;
typedef struct VRDEVIDEOINCTRL_CT_PANTILT_ABSOLUTE
{
VRDEVIDEOINCTRLHDR hdr;
uint32_t u32PanAbsolute;
uint32_t u32TiltAbsolute;
} VRDEVIDEOINCTRL_CT_PANTILT_ABSOLUTE;
typedef struct VRDEVIDEOINCTRL_CT_PANTILT_RELATIVE
{
VRDEVIDEOINCTRLHDR hdr;
uint8_t u8PanRelative;
uint8_t u8PanSpeed;
uint8_t u8TiltRelative;
uint8_t u8TiltSpeed;
} VRDEVIDEOINCTRL_CT_PANTILT_RELATIVE;
typedef struct VRDEVIDEOINCTRL_CT_ROLL_ABSOLUTE
{
VRDEVIDEOINCTRLHDR hdr;
uint16_t u16RollAbsolute;
} VRDEVIDEOINCTRL_CT_ROLL_ABSOLUTE;
typedef struct VRDEVIDEOINCTRL_CT_ROLL_RELATIVE
{
VRDEVIDEOINCTRLHDR hdr;
uint8_t u8RollRelative;
uint8_t u8Speed;
} VRDEVIDEOINCTRL_CT_ROLL_RELATIVE;
typedef struct VRDEVIDEOINCTRL_CT_PRIVACY_MODE
{
VRDEVIDEOINCTRLHDR hdr;
uint8_t u8Privacy;
} VRDEVIDEOINCTRL_CT_PRIVACY_MODE;
typedef struct VRDEVIDEOINCTRL_PU_BACKLIGHT_COMPENSATION
{
VRDEVIDEOINCTRLHDR hdr;
uint16_t u16BacklightCompensation;
} VRDEVIDEOINCTRL_PU_BACKLIGHT_COMPENSATION;
typedef struct VRDEVIDEOINCTRL_PU_BRIGHTNESS
{
VRDEVIDEOINCTRLHDR hdr;
uint16_t u16Brightness;
} VRDEVIDEOINCTRL_PU_BRIGHTNESS;
typedef struct VRDEVIDEOINCTRL_PU_CONTRAST
{
VRDEVIDEOINCTRLHDR hdr;
uint16_t u16Contrast;
} VRDEVIDEOINCTRL_PU_CONTRAST;
typedef struct VRDEVIDEOINCTRL_PU_GAIN
{
VRDEVIDEOINCTRLHDR hdr;
uint16_t u16Gain;
} VRDEVIDEOINCTRL_PU_GAIN;
typedef struct VRDEVIDEOINCTRL_PU_POWER_LINE_FREQUENCY
{
VRDEVIDEOINCTRLHDR hdr;
uint16_t u16PowerLineFrequency;
} VRDEVIDEOINCTRL_PU_POWER_LINE_FREQUENCY;
typedef struct VRDEVIDEOINCTRL_PU_HUE
{
VRDEVIDEOINCTRLHDR hdr;
uint16_t u16Hue;
} VRDEVIDEOINCTRL_PU_HUE;
typedef struct VRDEVIDEOINCTRL_PU_HUE_AUTO
{
VRDEVIDEOINCTRLHDR hdr;
uint8_t u8HueAuto;
} VRDEVIDEOINCTRL_PU_HUE_AUTO;
typedef struct VRDEVIDEOINCTRL_PU_SATURATION
{
VRDEVIDEOINCTRLHDR hdr;
uint16_t u16Saturation;
} VRDEVIDEOINCTRL_PU_SATURATION;
typedef struct VRDEVIDEOINCTRL_PU_SHARPNESS
{
VRDEVIDEOINCTRLHDR hdr;
uint16_t u16Sharpness;
} VRDEVIDEOINCTRL_PU_SHARPNESS;
typedef struct VRDEVIDEOINCTRL_PU_GAMMA
{
VRDEVIDEOINCTRLHDR hdr;
uint16_t u16Gamma;
} VRDEVIDEOINCTRL_PU_GAMMA;
typedef struct VRDEVIDEOINCTRL_PU_WHITE_BALANCE_TEMPERATURE
{
VRDEVIDEOINCTRLHDR hdr;
uint16_t u16WhiteBalanceTemperature;
} VRDEVIDEOINCTRL_PU_WHITE_BALANCE_TEMPERATURE;
typedef struct VRDEVIDEOINCTRL_PU_WHITE_BALANCE_TEMPERATURE_AUTO
{
VRDEVIDEOINCTRLHDR hdr;
uint8_t u8WhiteBalanceTemperatureAuto;
} VRDEVIDEOINCTRL_PU_WHITE_BALANCE_TEMPERATURE_AUTO;
typedef struct VRDEVIDEOINCTRL_PU_WHITE_BALANCE_COMPONENT
{
VRDEVIDEOINCTRLHDR hdr;
uint16_t u16WhiteBalanceBlue;
uint16_t u16WhiteBalanceRed;
} VRDEVIDEOINCTRL_PU_WHITE_BALANCE_COMPONENT;
typedef struct VRDEVIDEOINCTRL_PU_WHITE_BALANCE_COMPONENT_AUTO
{
VRDEVIDEOINCTRLHDR hdr;
uint8_t u8WhiteBalanceComponentAuto;
} VRDEVIDEOINCTRL_PU_WHITE_BALANCE_COMPONENT_AUTO;
typedef struct VRDEVIDEOINCTRL_PU_DIGITAL_MULTIPLIER
{
VRDEVIDEOINCTRLHDR hdr;
uint16_t u16MultiplierStep;
} VRDEVIDEOINCTRL_PU_DIGITAL_MULTIPLIER;
typedef struct VRDEVIDEOINCTRL_PU_DIGITAL_MULTIPLIER_LIMIT
{
VRDEVIDEOINCTRLHDR hdr;
uint16_t u16MultiplierLimit;
} VRDEVIDEOINCTRL_PU_DIGITAL_MULTIPLIER_LIMIT;
typedef struct VRDEVIDEOINCTRL_PU_ANALOG_VIDEO_STANDARD
{
VRDEVIDEOINCTRLHDR hdr;
uint8_t u8VideoStandard;
} VRDEVIDEOINCTRL_PU_ANALOG_VIDEO_STANDARD;
typedef struct VRDEVIDEOINCTRL_PU_ANALOG_LOCK_STATUS
{
VRDEVIDEOINCTRLHDR hdr;
uint8_t u8Status;
} VRDEVIDEOINCTRL_PU_ANALOG_LOCK_STATUS;
/* Set streaming parameters. The actual streaming will be enabled by VS_ON. */
#define VRDEVIDEOINCTRL_F_VS_SETUP_FID 0x01
#define VRDEVIDEOINCTRL_F_VS_SETUP_EOF 0x02
typedef struct VRDEVIDEOINCTRL_VS_SETUP
{
VRDEVIDEOINCTRLHDR hdr;
uint8_t u8FormatId; /* The format id on the client: VRDEVIDEOINFORMATDESC::u8FormatId. */
uint8_t u8FramingInfo; /* VRDEVIDEOINCTRL_F_VS_SETUP_*. Set by the client. */
uint16_t u16Width;
uint16_t u16Height;
uint32_t u32FrameInterval; /* Frame interval in 100 ns units, 0 means a still image capture.
* The client may choose a different interval if this value is
* not supported.
*/
uint16_t u16CompQuality; /* 0 .. 10000 = 0 .. 100%.
* Applicable if the format has VRDE_VIDEOIN_F_FMT_COMPQUALITY,
* otherwise this field is ignored.
*/
uint16_t u16Delay; /* Latency in ms from video data capture to presentation on the channel.
* Set by the client, read by the server.
*/
uint32_t u32ClockFrequency; /* @todo just all clocks in 100ns units? */
} VRDEVIDEOINCTRL_VS_SETUP;
/* Stop sending video frames. */
typedef struct VRDEVIDEOINCTRL_VS_OFF
{
VRDEVIDEOINCTRLHDR hdr;
} VRDEVIDEOINCTRL_VS_OFF;
/* Start sending video frames with parameters set by VS_SETUP. */
typedef struct VRDEVIDEOINCTRL_VS_ON
{
VRDEVIDEOINCTRLHDR hdr;
} VRDEVIDEOINCTRL_VS_ON;
typedef struct VRDEVIDEOINCTRL_VS_STILL_IMAGE_TRIGGER
{
VRDEVIDEOINCTRLHDR hdr;
uint8_t u8Trigger;
} VRDEVIDEOINCTRL_VS_STILL_IMAGE_TRIGGER;
typedef struct VRDEVIDEOINCTRL_VS_STREAM_ERROR_CODE
{
VRDEVIDEOINCTRLHDR hdr;
uint8_t u8StreamErrorCode;
} VRDEVIDEOINCTRL_VS_STREAM_ERROR_CODE;
typedef struct VRDEVIDEOINCTRL_VS_GENERATE_KEY_FRAME
{
VRDEVIDEOINCTRLHDR hdr;
uint8_t u8GenerateKeyFrame;
} VRDEVIDEOINCTRL_VS_GENERATE_KEY_FRAME;
typedef struct VRDEVIDEOINCTRL_VS_UPDATE_FRAME_SEGMENT
{
VRDEVIDEOINCTRLHDR hdr;
uint8_t u8StartFrameSegment;
uint8_t u8EndFrameSegment;
} VRDEVIDEOINCTRL_VS_UPDATE_FRAME_SEGMENT;
typedef struct VRDEVIDEOINCTRL_VS_SYNCH_DELAY
{
VRDEVIDEOINCTRLHDR hdr;
uint16_t u16Delay;
} VRDEVIDEOINCTRL_VS_SYNCH_DELAY;
/* A hardware button was pressed/released on the device. */
typedef struct VRDEVIDEOINCTRL_HW_BUTTON
{
VRDEVIDEOINCTRLHDR hdr;
uint8_t u8Pressed;
} VRDEVIDEOINCTRL_HW_BUTTON;
typedef struct VRDEVIDEOINCTRL_PROT_PING
{
VRDEVIDEOINCTRLHDR hdr;
uint32_t u32Timestamp; /* Set in the request and the same value must be send back in the response. */
} VRDEVIDEOINCTRL_PROT_PING;
typedef struct VRDEVIDEOINCTRL_PROT_SAMPLING
{
VRDEVIDEOINCTRLHDR hdr;
uint32_t fu32SampleStart; /* Which parameters must be sampled VRDEVIDEOINCTRL_F_PROT_SAMPLING_*. */
uint32_t fu32SampleStop; /* Which parameters to disable VRDEVIDEOINCTRL_F_PROT_SAMPLING_*.
* If both Start and Stop is set, then restart the sampling.
*/
uint32_t u32PeriodMS; /* Sampling period in milliseconds. Applies to all samples in fu32SampleStart.
* Not mandatory, the actual sampling period may be different.
*/
} VRDEVIDEOINCTRL_PROT_SAMPLING;
#define VRDEVIDEOINCTRL_F_PROT_SAMPLING_FRAMES_SOURCE 0x00000001 /* Periodic VRDEVIDEOINCTRL_PROT_FRAMES samples */
#define VRDEVIDEOINCTRL_F_PROT_SAMPLING_FRAMES_CLIENT_OUT 0x00000002 /* Periodic VRDEVIDEOINCTRL_PROT_FRAMES samples */
typedef struct VRDEVIDEOINCTRL_PROT_FRAMES
{
VRDEVIDEOINCTRLHDR hdr; /* Note: the message should be sent as VRDE_VIDEOIN_FN_CONTROL_NOTIFY. */
uint32_t u32Sample; /* Which sample is this, one of VRDEVIDEOINCTRL_F_PROT_SAMPLING_*. */
uint32_t u32TimestampMS; /* When the period started, milliseconds since the start of sampling. */
uint32_t u32PeriodMS; /* Actual period during which the frames were counted in milliseconds.
* This may be different from VRDEVIDEOINCTRL_PROT_SAMPLING::u32PeriodMS.
*/
uint32_t u32FramesCount; /* How many frames per u32PeriodMS milliseconds. */
} VRDEVIDEOINCTRL_PROT_FRAMES;
/*
* Payload transfers. How frames are sent to the server:
* the client send a PAYLOAD packet, which has the already set format.
* The server enables the transfers by sending VRDEVIDEOINCTRL_VS_ON.
*/
/* Payload header */
typedef struct VRDEVIDEOINPAYLOADHDR
{
uint8_t u8HeaderLength; /* Entire header. */
uint8_t u8HeaderInfo; /* VRDE_VIDEOIN_PAYLOAD_F_* */
uint32_t u32PresentationTime; /* @todo define this */
uint32_t u32SourceTimeClock; /* @todo At the moment when the frame was sent to the channel.
* Allows the server to measure clock drift.
*/
uint16_t u16Reserved; /* @todo */
} VRDEVIDEOINPAYLOADHDR;
/* VRDEVIDEOINPAYLOADHDR::u8HeaderInfo */
#define VRDE_VIDEOIN_PAYLOAD_F_FID 0x01 /* Frame ID */
#define VRDE_VIDEOIN_PAYLOAD_F_EOF 0x02 /* End of Frame */
#define VRDE_VIDEOIN_PAYLOAD_F_PTS 0x04 /* Presentation Time */
#define VRDE_VIDEOIN_PAYLOAD_F_SCR 0x08 /* Source Clock Reference */
#define VRDE_VIDEOIN_PAYLOAD_F_RES 0x10 /* Reserved */
#define VRDE_VIDEOIN_PAYLOAD_F_STI 0x20 /* Still Image */
#define VRDE_VIDEOIN_PAYLOAD_F_ERR 0x40 /* Error */
#define VRDE_VIDEOIN_PAYLOAD_F_EOH 0x80 /* End of header */
/*
* The network channel specification.
*/
/*
* The protocol uses a dynamic RDP channel.
* Everything is little-endian.
*/
/* The dynamic RDP channel name. */
#define VRDE_VIDEOIN_CHANNEL "RVIDEOIN"
/* Major functions. */
#define VRDE_VIDEOIN_FN_NEGOTIATE 0x0000 /* Version and capabilities check. */
#define VRDE_VIDEOIN_FN_NOTIFY 0x0001 /* Device attach/detach from the client. */
#define VRDE_VIDEOIN_FN_DEVICEDESC 0x0002 /* Query device description. */
#define VRDE_VIDEOIN_FN_CONTROL 0x0003 /* Control the device and start/stop video input.
* This function is used for sending a request and
* the corresponding response.
*/
#define VRDE_VIDEOIN_FN_CONTROL_NOTIFY 0x0004 /* The client reports a control change, etc.
* This function indicated that the message is
* not a response to a CONTROL request.
*/
#define VRDE_VIDEOIN_FN_FRAME 0x0005 /* Frame from the client. */
/* Status codes. */
#define VRDE_VIDEOIN_STATUS_SUCCESS 0 /* Function completed successfully. */
#define VRDE_VIDEOIN_STATUS_FAILED 1 /* Failed for some reason. */
typedef struct VRDEVIDEOINMSGHDR
{
uint32_t u32Length; /* The length of the message in bytes, including the header. */
uint32_t u32DeviceId; /* The client's device id. */
uint32_t u32MessageId; /* Unique id assigned by the server. The client must send a reply with the same id.
* If the client initiates a request, then this must be set to 0, because there is
* currently no client requests, which would require a response from the server.
*/
uint16_t u16FunctionId; /* VRDE_VIDEOIN_FN_* */
uint16_t u16Status; /* The result of a request. VRDE_VIDEOIN_STATUS_*. */
} VRDEVIDEOINMSGHDR;
ASSERTSIZE(VRDEVIDEOINMSGHDR, 16)
/*
* VRDE_VIDEOIN_FN_NEGOTIATE
*
* Sent by the server when the channel is established and the client replies with its capabilities.
*/
#define VRDE_VIDEOIN_NEGOTIATE_VERSION 1
/* VRDEVIDEOINMSG_NEGOTIATE::fu32Capabilities */
#define VRDE_VIDEOIN_NEGOTIATE_CAP_VOID 0x00000000
#define VRDE_VIDEOIN_NEGOTIATE_CAP_PROT 0x00000001 /* Supports VRDE_VIDEOIN_CTRLSEL_PROT_* controls. */
typedef struct VRDEVIDEOINMSG_NEGOTIATE
{
VRDEVIDEOINMSGHDR hdr;
uint32_t u32Version; /* VRDE_VIDEOIN_NEGOTIATE_VERSION */
uint32_t fu32Capabilities; /* VRDE_VIDEOIN_NEGOTIATE_CAP_* */
} VRDEVIDEOINMSG_NEGOTIATE;
/*
* VRDE_VIDEOIN_FN_NOTIFY
*
* Sent by the client when a webcam is attached or detached.
* The client must send the ATTACH notification for each webcam, which is
* already connected to the client when the VIDEOIN channel is established.
*/
#define VRDE_VIDEOIN_NOTIFY_EVENT_ATTACH 0
#define VRDE_VIDEOIN_NOTIFY_EVENT_DETACH 1
#define VRDE_VIDEOIN_NOTIFY_EVENT_NEGOTIATE 2 /* Negotiate again with the client. */
typedef struct VRDEVIDEOINMSG_NOTIFY
{
VRDEVIDEOINMSGHDR hdr;
uint32_t u32NotifyEvent; /* VRDE_VIDEOIN_NOTIFY_EVENT_* */
/* Event specific data may follow. The underlying protocol provides the length of the message. */
} VRDEVIDEOINMSG_NOTIFY;
/*
* VRDE_VIDEOIN_FN_DEVICEDESC
*
* The server queries the description of a device.
*/
typedef struct VRDEVIDEOINMSG_DEVICEDESC_REQ
{
VRDEVIDEOINMSGHDR hdr;
} VRDEVIDEOINMSG_DEVICEDESC_REQ;
typedef struct VRDEVIDEOINMSG_DEVICEDESC_RSP
{
VRDEVIDEOINMSGHDR hdr;
VRDEVIDEOINDEVICEDESC Device;
/*
* VRDEVIDEOINFORMATDESC[0]
* VRDEVIDEOINFRAMEDESC[0]
* ...
* VRDEVIDEOINFRAMEDESC[n]
* VRDEVIDEOINFORMATDESC[1]
* VRDEVIDEOINFRAMEDESC[0]
* ...
* VRDEVIDEOINFRAMEDESC[m]
* ...
*/
} VRDEVIDEOINMSG_DEVICEDESC_RSP;
/*
* VRDE_VIDEOIN_FN_CONTROL
* VRDE_VIDEOIN_FN_CONTROL_NOTIFY
*
* Either sent by the server or by the client as a notification/response.
* If sent by the client as a notification, then hdr.u32MessageId must be 0.
*/
typedef struct VRDEVIDEOINMSG_CONTROL
{
VRDEVIDEOINMSGHDR hdr;
VRDEVIDEOINCTRLHDR Control;
/* Control specific data may follow. */
} VRDEVIDEOINMSG_CONTROL;
/*
* VRDE_VIDEOIN_FN_FRAME
*
* The client sends a video/still frame in the already specified format.
* hdr.u32MessageId must be 0.
*/
typedef struct VRDEVIDEOINMSG_FRAME
{
VRDEVIDEOINMSGHDR hdr;
VRDEVIDEOINPAYLOADHDR Payload;
/* The frame data follow. */
} VRDEVIDEOINMSG_FRAME;
#ifdef VRDE_VIDEOIN_WITH_VRDEINTERFACE
/*
* The application interface between VirtualBox and the VRDE server.
*/
#define VRDE_VIDEOIN_INTERFACE_NAME "VIDEOIN"
typedef struct VRDEVIDEOINDEVICEHANDLE
{
uint32_t u32ClientId;
uint32_t u32DeviceId;
} VRDEVIDEOINDEVICEHANDLE;
/* The VRDE server video input interface entry points. Interface version 1. */
typedef struct VRDEVIDEOININTERFACE
{
/* The header. */
VRDEINTERFACEHDR header;
/* Tell the server that this device will be used and associate a context with the device.
*
* @param hServer The VRDE server instance.
* @param pDeviceHandle The device reported by ATTACH notification.
* @param pvDeviceCtx The caller context associated with the pDeviceHandle.
*
* @return IPRT status code.
*/
DECLR3CALLBACKMEMBER(int, VRDEVideoInDeviceAttach, (HVRDESERVER hServer,
const VRDEVIDEOINDEVICEHANDLE *pDeviceHandle,
void *pvDeviceCtx));
/* This device will be not be used anymore. The device context must not be used by the server too.
*
* @param hServer The VRDE server instance.
* @param pDeviceHandle The device reported by ATTACH notification.
*
* @return IPRT status code.
*/
DECLR3CALLBACKMEMBER(int, VRDEVideoInDeviceDetach, (HVRDESERVER hServer,
const VRDEVIDEOINDEVICEHANDLE *pDeviceHandle));
/* Get a device description.
*
* @param hServer The VRDE server instance.
* @param pvUser The callers context of this request.
* @param pDeviceHandle The device reported by ATTACH notification.
*
* @return IPRT status code.
*/
DECLR3CALLBACKMEMBER(int, VRDEVideoInGetDeviceDesc, (HVRDESERVER hServer,
void *pvUser,
const VRDEVIDEOINDEVICEHANDLE *pDeviceHandle));
/* Submit a set/get control request.
*
* @param hServer The VRDE server instance.
* @param pvUser The callers context of this request.
* @param pDeviceHandle The device reported by ATTACH notification.
* @param pReq The request.
* @param cbReq Size of the request.
*
* @return IPRT status code.
*/
DECLR3CALLBACKMEMBER(int, VRDEVideoInControl, (HVRDESERVER hServer,
void *pvUser,
const VRDEVIDEOINDEVICEHANDLE *pDeviceHandle,
const VRDEVIDEOINCTRLHDR *pReq,
uint32_t cbReq));
} VRDEVIDEOININTERFACE;
/*
* Notifications.
* Data structures: pvData of VRDEVIDEOINCALLBACKS::VRDECallbackVideoInNotify.
*/
typedef struct VRDEVIDEOINNOTIFYATTACH
{
VRDEVIDEOINDEVICEHANDLE deviceHandle;
uint32_t u32Version; /* VRDE_VIDEOIN_NEGOTIATE_VERSION */
uint32_t fu32Capabilities; /* VRDE_VIDEOIN_NEGOTIATE_CAP_* */
} VRDEVIDEOINNOTIFYATTACH;
typedef struct VRDEVIDEOINNOTIFYDETACH
{
VRDEVIDEOINDEVICEHANDLE deviceHandle;
} VRDEVIDEOINNOTIFYDETACH;
/* Notification codes, */
#define VRDE_VIDEOIN_NOTIFY_ID_ATTACH 0
#define VRDE_VIDEOIN_NOTIFY_ID_DETACH 1
/* Video input interface callbacks. */
typedef struct VRDEVIDEOINCALLBACKS
{
/* The header. */
VRDEINTERFACEHDR header;
/* Notifications.
*
* @param pvCallback The callbacks context specified in VRDEGetInterface.
* @param u32EventId The notification identifier: VRDE_VIDEOIN_NOTIFY_*.
* @param pvData The notification specific data.
* @param cbData The size of buffer pointed by pvData.
*/
DECLR3CALLBACKMEMBER(void, VRDECallbackVideoInNotify,(void *pvCallback,
uint32_t u32Id,
const void *pvData,
uint32_t cbData));
/* Device description received from the client.
*
* @param pvCallback The callbacks context specified in VRDEGetInterface.
* @param rcRequest The result code of the request.
* @param pDeviceCtx The device context associated with the device in VRDEVideoInGetDeviceDesc.
* @param pvUser The pvUser parameter of VRDEVideoInGetDeviceDesc.
* @param pDeviceDesc The device description.
* @param cbDeviceDesc The size of buffer pointed by pDevice.
*/
DECLR3CALLBACKMEMBER(void, VRDECallbackVideoInDeviceDesc,(void *pvCallback,
int rcRequest,
void *pDeviceCtx,
void *pvUser,
const VRDEVIDEOINDEVICEDESC *pDeviceDesc,
uint32_t cbDeviceDesc));
/* Control response or notification.
*
* @param pvCallback The callbacks context specified in VRDEGetInterface.
* @param rcRequest The result code of the request.
* @param pDeviceCtx The device context associated with the device in VRDEVideoInGetDeviceDesc.
* @param pvUser The pvUser parameter of VRDEVideoInControl. NULL if this is a notification.
* @param pControl The control information.
* @param cbControl The size of buffer pointed by pControl.
*/
DECLR3CALLBACKMEMBER(void, VRDECallbackVideoInControl,(void *pvCallback,
int rcRequest,
void *pDeviceCtx,
void *pvUser,
const VRDEVIDEOINCTRLHDR *pControl,
uint32_t cbControl));
/* Frame which was received from the client.
*
* @param pvCallback The callbacks context specified in VRDEGetInterface.
* @param rcRequest The result code of the request.
* @param pDeviceCtx The device context associated with the device in VRDEVideoInGetDeviceDesc.
* @param pFrame The frame data.
* @param cbFrame The size of buffer pointed by pFrame.
*/
DECLR3CALLBACKMEMBER(void, VRDECallbackVideoInFrame,(void *pvCallback,
int rcRequest,
void *pDeviceCtx,
const VRDEVIDEOINPAYLOADHDR *pFrame,
uint32_t cbFrame));
} VRDEVIDEOINCALLBACKS;
#endif /* VRDE_VIDEOIN_WITH_VRDEINTERFACE */
#pragma pack()
#endif /* !VBOX_INCLUDED_RemoteDesktop_VRDEVideoIn_h */
|