2019-10-08 22:05:54 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
2019-12-29 11:47:31 +00:00
|
|
|
|
2019-10-08 22:05:54 +00:00
|
|
|
#include "wlr-screencopy-unstable-v1.h"
|
2019-10-10 22:32:54 +00:00
|
|
|
#include "frame-capture.h"
|
2019-12-29 11:47:31 +00:00
|
|
|
#include "smooth.h"
|
2019-10-08 22:05:54 +00:00
|
|
|
|
|
|
|
struct zwlr_screencopy_manager_v1;
|
|
|
|
struct zwlr_screencopy_frame_v1;
|
|
|
|
struct wl_output;
|
|
|
|
struct wl_buffer;
|
|
|
|
struct wl_shm;
|
2020-03-16 22:01:43 +00:00
|
|
|
struct aml_timer;
|
2019-10-08 22:05:54 +00:00
|
|
|
|
|
|
|
enum screencopy_status {
|
|
|
|
SCREENCOPY_STATUS_CAPTURING = 0,
|
|
|
|
SCREENCOPY_STATUS_FATAL,
|
|
|
|
SCREENCOPY_STATUS_FAILED,
|
|
|
|
SCREENCOPY_STATUS_DONE,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct screencopy {
|
2019-10-10 22:32:54 +00:00
|
|
|
struct frame_capture frame_capture;
|
|
|
|
|
2019-10-08 22:05:54 +00:00
|
|
|
struct wl_shm* wl_shm;
|
|
|
|
struct wl_buffer* buffer;
|
2019-10-10 20:48:01 +00:00
|
|
|
|
|
|
|
void* pixels;
|
|
|
|
size_t bufsize;
|
|
|
|
|
2019-10-08 22:05:54 +00:00
|
|
|
struct zwlr_screencopy_manager_v1* manager;
|
|
|
|
struct zwlr_screencopy_frame_v1* frame;
|
2019-12-29 11:47:31 +00:00
|
|
|
|
|
|
|
uint64_t last_time;
|
2020-01-14 20:40:57 +00:00
|
|
|
uint64_t start_time;
|
2020-03-16 22:01:43 +00:00
|
|
|
struct aml_timer* timer;
|
2020-01-14 20:40:57 +00:00
|
|
|
|
|
|
|
struct smooth delay_smoother;
|
|
|
|
double delay;
|
2019-10-08 22:05:54 +00:00
|
|
|
};
|
2019-10-10 20:48:01 +00:00
|
|
|
|
2019-10-10 22:32:54 +00:00
|
|
|
void screencopy_init(struct screencopy* self);
|
2019-12-27 14:41:54 +00:00
|
|
|
void screencopy_destroy(struct screencopy* self);
|