123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef POSTPROCESSD__POSTPROCESS_H
- #define POSTPROCESSD__POSTPROCESS_H
- #include <stdint.h>
- #include "util.h"
- #define TIFFTAG_FORWARDMATRIX1 50964
- #define JPEG_APP1 JPEG_APP0+1
- struct Imagedata {
- uint32_t width;
- uint32_t height;
- uint8_t bitspersample;
- char *make;
- char *model;
- char *software;
- int orientation;
- char *datetime;
- uint16_t exposure_program;
- float exposure_time;
- float aperture;
- int isospeed;
- int flash;
- float fnumber;
- float focal_length;
- float focal_length_35mm;
- };
- void
- postprocess_internal(char *burst_dir, char *target_dir);
- void
- postprocess_setup();
- #endif //POSTPROCESSD__POSTPROCESS_H
|