1
1
Fork 0
mirror of https://git.sr.ht/~martijnbraam/megapixels synced 2023-12-14 05:32:55 +01:00
megapixels/src/io_pipeline.h
2021-06-14 00:32:55 +02:00

33 lines
549 B
C

#pragma once
#include "camera_config.h"
struct mp_io_pipeline_state {
const struct mp_camera_config *camera;
int burst_length;
int preview_width;
int preview_height;
int device_rotation;
bool gain_is_manual;
int gain;
bool exposure_is_manual;
int exposure;
bool save_dng;
};
void mp_io_pipeline_start();
void mp_io_pipeline_stop();
void mp_io_pipeline_focus();
void mp_io_pipeline_capture();
void mp_io_pipeline_release_buffer(uint32_t buffer_index);
void mp_io_pipeline_update_state(const struct mp_io_pipeline_state *state);