[Previous] [Contents] [Index] [Next]

Caution: This version of this document is no longer maintained. For the latest documentation, see http://www.qnx.com/developers/docs.

disp_vcap_channel_caps_t

Capabilities of a video capture unit

Synopsis:

typedef struct {
    unsigned    flags;

    unsigned    input_format;
    int     frame_width;
    int     frame_height;
    int     frame_rate;

    unsigned    output_format;

    unsigned    reserved[10];
} disp_vcap_channel_caps_t;

Description:

The disp_vcap_channel_caps_t structure describes the capabilities of a video capture unit. The members include:

flags
Flags that describe the capabilities:
input_format
The format of the incoming video signal; one of:
frame_width
The width of the output frames, in pixels, prior to scaling.
frame_height
The height of the output frames, in scanlines, prior to scaling.
frame_rate
The frequency of frames output, in Hz (e.g. 30 for NTSC).
output_format
The data format of the frames output by the scaler unit; see "Pixel formats" in the Writing a Graphics Driver chapter.

Classification:

Photon

See also:

disp_vcapfuncs_t


[Previous] [Contents] [Index] [Next]