ipecamera.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. #ifndef _IPECAMERA_H
  2. #define _IPECAMERA_H
  3. typedef struct ipecamera_s ipecamera_t;
  4. typedef struct {
  5. unsigned int bpp; /*<< Bits per pixel (8, 16, or 32) as returned by IPECAMERA_IMAGE_DATA */
  6. unsigned int real_bpp; /*<< Bits per pixel as returned by camera and IPECAMERA_PACKED_IMAGE */
  7. unsigned int width, height;
  8. } ipecamera_image_dimensions_t;
  9. typedef enum {
  10. IPECAMERA_IMAGE_DATA = 0,
  11. IPECAMERA_RAW_DATA = 1,
  12. IPECAMERA_DIMENSIONS = 0x8000,
  13. IPECAMERA_IMAGE_REGION = 0x8010,
  14. IPECAMERA_PACKED_IMAGE = 0x8020,
  15. IPECAMERA_PACKED_LINE = 0x8021,
  16. IPECAMERA_PACKED_PAYLOAD = 0x8022,
  17. IPECAMERA_CHANGE_MASK = 0x8030
  18. } ipecamera_data_type_t;
  19. typedef uint16_t ipecamera_change_mask_t;
  20. typedef uint16_t ipecamera_pixel_t;
  21. typedef struct {
  22. pcilib_event_info_t info;
  23. int image_ready; /**< Indicates if image data is parsed */
  24. int image_broken; /**< Unlike the info.flags this is bound to the reconstructed image (i.e. is not updated on rawdata overwrite) */
  25. size_t raw_size; /**< Indicates the actual size of raw data */
  26. } ipecamera_event_info_t;
  27. int ipecamera_set_buffer_size(ipecamera_t *ctx, int size);
  28. #endif /* _IPECAMERA_H */