This manual page is for Mac OS X version 10.6.3

If you are running a different version of Mac OS X, view the documentation locally:

  • In Terminal, using the man(1) command

Reading manual pages

Manual pages are intended as a quick reference for people who already understand a technology.

  • For more information about the manual page format, see the manual page for manpages(5).

  • For more information about this technology, look for other documentation in the Apple Reference Library.

  • For general information about writing shell scripts, read Shell Scripting Primer.



XvQueryEncodings(3)                                                                      XvQueryEncodings(3)



Name
       XvQueryEncodings - return list of encodings for an adaptor

Syntax
       #include <X11/extensions/Xvlib.h>

       XvQueryEncodings(Display *dpy, XvPortID port,
                        unsigned int *p_num_encodings,
                        XvEncodingInfo **pp_encoding_info);

Arguments
       dpy     Specifies the connection to the X server.

       XvPortID
               Specifies the port whose adaptor is to be queried for its list of encodings.

       p_num_encodings
               A pointer to where the number of encodings supported by the adaptor is written.

       pp_encoding_info
               A pointer to where the list of returned encoding information is returned.  XvEncodingInfo has
               the following structure:

                   typedef struct {
                     XvEncodingID encoding_id;
                     char *name;
                     unsigned long width;
                     unsigned long height;
                     XvRational rate;
                     unsigned long num_encodings;
                   } XvEncodingInfo;


       encoding_id
               Specifies the encoding-id of the encoding.  The encoding-id is used to identify  an  encoding
               when a port's encoding attribute is changed.

       name    A  pointer  to  a  formatted  string that identifies the encoding.  The string has the format
               "timing-signaltype".  For example "ntsc-composite".

       width,height
               The width and height, in pixels, of the decoded video image.

       rate    The field rate of the decoded video.

       The XvRational structure is used to specify a fractional number.  It has the following structure:

           typedef struct {
             int numerator;
             int denominator;
           } XvRational;

       The numerator and denominator fields specify the appropriate parts of a fractional number.

Description
       XvQueryEncodings(3) returns encoding information about an adaptor.  Each encoding is described by the
       XvEncodingInfo  structure described above.  The encodings are identified by an encoding-id, which can
       be used to set or get the encoding attribute of a port.

Returned Values
       [Success]
               Returned if XvQueryEncodings(3) completed successfully.

       [XvBadExtension]
               Returned if the Xv extension is unavailable.

       [XvBadAlloc]
               Returned if XvQueryEncodings(3) failed to allocate memory to process the request.

Diagnostics
       [XvBadPort]
               Generated if the requested port does not exist.

See Also
       XvFreeEncodingInfo(3)



X Version 11                                     libXv 1.0.4                             XvQueryEncodings(3)

Reporting Problems

The way to report a problem with this manual page depends on the type of problem:

Content errors
Report errors in the content of this documentation with the feedback links below.
Bug reports
Report bugs in the functionality of the described tool or API through Bug Reporter.
Formatting problems
Report formatting mistakes in the online version of these pages with the feedback links below.

Did this document help you? Yes It's good, but... Not helpful...