WPD_CAPTURE_MODES

banner art

Previous Next

WPD_CAPTURE_MODES

The WPD_CAPTURE_MODES enumeration type describes the capture timing mode of a still image capture.

Syntax

  typedef enum WPD_CAPTURE_MODES{
  WPD_CAPTURE_MODE_UNDEFINED  =0,
  WPD_CAPTURE_MODE_NORMAL  =1,
  WPD_CAPTURE_MODE_BURST  =2,
  WPD_CAPTURE_MODE_TIMELAPSE  =3
};

Members

WPD_CAPTURE_MODE_UNDEFINED

The capture mode has not been defined.

WPD_CAPTURE_MODE_NORMAL

No delay or burst mode should be used.

WPD_CAPTURE_MODE_BURST

Specifies that a defined number of images should be captured with a defined interval between them. The number of images to capture and time delay between them are specified by the WPD_STILL_IMAGE_BURST_NUMBER and WPD_STILL_IMAGE_BURST_INTERVAL properties.

WPD_CAPTURE_MODE_TIMELAPSE

Image capture should use time lapse photography. The number of images and interval between them are described by the WPD_STILL_IMAGE_TIMELAPSE_NUMBER and WPD_STILL_IMAGE_TIMELAPSE_INTERVAL properties.

Remarks

This enumeration is used by the WPD_STILL_IMAGE_CAPTURE_MODE property.

Requirements

Header: Defined in PortableDevice.h

See Also

Previous Next