1XvQueryEncodings(3) Library Functions Manual XvQueryEncodings(3)
2
3
4
6 XvQueryEncodings - return list of encodings for an adaptor
7
9 #include <X11/extensions/Xvlib.h>
10
11 XvQueryEncodings(dpy, port, p_num_encodings, pp_encoding_info)
12
13 register Display *dpy;
14 XvPortID port;
15 unsigned long *p_num_encodings;
16 XvEncodingInfo **pp_encoding_info;
17
19 *dpy Specifies the connection to the X server.
20
21 port Specifies the port whose adaptor is to be queried for
22 its list of encodings.
23
24 p_num_encodings
25 A pointer to where the number of encodings supported by
26 the adaptor is written.
27
28 pp_encoding_info
29 A pointer to where the list of returned encoding infor‐
30 mation is returned. XvEncodingInfo has the following
31 structure:
32
33 typedef struct {
34 XvEncodingID encoding_id;
35 char *name;
36 unsigned long width;
37 unsigned long height;
38 XvRational rate;
39 unsigned long num_encodings;
40 } XvEncodingInfo;
41
42
43 encoding_id Specifies the encoding-id of the encoding. The encod‐
44 ing-id is used to identify an encoding when a port's
45 encoding attribute is changed.
46
47 name A pointer to a formatted string that identifies the
48 encoding. The string has the format "timing-signal‐
49 type". For example "ntsc-composite".
50
51 width,height The width and height, in pixels, of the decoded video
52 image.
53
54 rate The field rate of the decoded video.
55
56 The XvRational structure is used to specify a fractional number. It
57 has the following structure:
58
59 typedef struct {
60 int numerator;
61 int denominator;
62 } XvRational;
63
64 The numerator and denominator fields specify the appropriate parts of a
65 fractional number.
66
68 XvQueryEncodings(3) returns encoding information about an adaptor.
69 Each encoding is described by the XvEncodingInfo structure described
70 above. The encodings are identified by an encoding-id, which can be
71 used to set or get the encoding attribute of a port.
72
74 [Success]
75 Returned if XvQueryEncodings(3) completed successfully.
76
77 [XvBadExtension]
78 Returned if the Xv extension is unavailable.
79
80 [XvBadAlloc]
81 Returned if XvQueryEncodings(3) failed to allocate memory to
82 process the request.
83
85 [XvBadPort]
86 Generated if the requested port does not exist.
87
89 XvFreeEncodingInfo(3)
90
91
92
93X Version 11 libXv 1.0.3 XvQueryEncodings(3)