1xcb_xvmc_create_subpicture(3) XCB Requests xcb_xvmc_create_subpicture(3)
2
3
4
6 xcb_xvmc_create_subpicture -
7
9 #include <xcb/xvmc.h>
10
11 Request function
12 xcb_xvmc_create_subpicture_cookie_t
13 xcb_xvmc_create_subpicture(xcb_connection_t *conn,
14 xcb_xvmc_subpicture_t subpicture_id, xcb_xvmc_context_t context,
15 uint32_t xvimage_id, uint16_t width, uint16_t height);
16
17 Reply datastructure
18 typedef struct xcb_xvmc_create_subpicture_reply_t {
19 uint8_t response_type;
20 uint8_t pad0;
21 uint16_t sequence;
22 uint32_t length;
23 uint16_t width_actual;
24 uint16_t height_actual;
25 uint16_t num_palette_entries;
26 uint16_t entry_bytes;
27 uint8_t component_order[4];
28 uint8_t pad1[12];
29 } xcb_xvmc_create_subpicture_reply_t;
30
31 Reply function
32 xcb_xvmc_create_subpicture_reply_t
33 *xcb_xvmc_create_subpicture_reply(xcb_connection_t *conn,
34 xcb_xvmc_create_subpicture_cookie_t cookie,
35 xcb_generic_error_t **e);
36
37 Reply accessors
38 uint32_t *xcb_xvmc_create_subpicture_priv_data(const
39 xcb_xvmc_create_subpicture_request_t *reply);
40
41 int xcb_xvmc_create_subpicture_priv_data_length(const
42 xcb_xvmc_create_subpicture_reply_t *reply);
43
44 xcb_generic_iterator_t xcb_xvmc_create_subpicture_priv_data_end(const
45 xcb_xvmc_create_subpicture_reply_t *reply);
46
48 conn The XCB connection to X11.
49
50 subpicture_id
51 TODO: NOT YET DOCUMENTED.
52
53 context TODO: NOT YET DOCUMENTED.
54
55 xvimage_id
56 TODO: NOT YET DOCUMENTED.
57
58 width TODO: NOT YET DOCUMENTED.
59
60 height TODO: NOT YET DOCUMENTED.
61
63 response_type
64 The type of this reply, in this case XCB_XVMC_CREATE_SUBPIC‐
65 TURE. This field is also present in the xcb_generic_reply_t
66 and can be used to tell replies apart from each other.
67
68 sequence The sequence number of the last request processed by the X11
69 server.
70
71 length The length of the reply, in words (a word is 4 bytes).
72
73 width_actual
74 TODO: NOT YET DOCUMENTED.
75
76 height_actual
77 TODO: NOT YET DOCUMENTED.
78
79 num_palette_entries
80 TODO: NOT YET DOCUMENTED.
81
82 entry_bytes
83 TODO: NOT YET DOCUMENTED.
84
85 component_order
86 TODO: NOT YET DOCUMENTED.
87
90 Returns an xcb_xvmc_create_subpicture_cookie_t. Errors have to be han‐
91 dled when calling the reply function xcb_xvmc_create_subpicture_reply.
92
93 If you want to handle errors in the event loop instead, use
94 xcb_xvmc_create_subpicture_unchecked. See xcb-requests(3) for details.
95
97 This request does never generate any errors.
98
101 Generated from xvmc.xml. Contact xcb@lists.freedesktop.org for correc‐
102 tions and improvements.
103
104
105
106X Version 11 libxcb 1.12 xcb_xvmc_create_subpicture(3)