1XvPortNotify(3) libXv Functions XvPortNotify(3)
2
3
4
6 XvPortNotify - event generated when port attributes change
7
9 #include <X11/extensions/Xvlib.h>
10
11
12 typedef union {
13 int type;
14 XvVideoNotifyEvent xvvideo;
15 XvPortNotifyEvent xvport;
16 long pad[24];
17 } XvEvent;
18
19 typedef struct {
20 int type;
21 unsigned long serial;
22 Bool send_event;
23 Display *display;
24 XvPortID port_id;
25 Time time;
26 Atom attribute;
27 long value;
28 } XvPortNotifyEvent;
29
30
31 type Specifies the type of event: XvPortNotify.
32
33 serial Number of the last request processed by the server.
34
35 send_event True if the event was generated by a SendEvent request.
36
37 display A pointer to the display the event was read from.
38
39 port_id The port whose attribute has changed.
40
41 attribute An atom specifying the attribute that changed.
42
43 value The new value of the attribute.
44
46 XvPortNotify events are generated when a port attribute is set using
47 the XvSetPortAttribute(3) function.
48
50 XvSetPortAttribute(3), XvGetPortAttribute(3), XvSelectPortNotify(3).
51
52
53
54X Version 11 libXv 1.0.11 XvPortNotify(3)