2020-03-28 11:44:40 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2019 - 2020 Andri Yngvason
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
|
|
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
|
|
* AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
|
|
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
|
|
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
|
|
|
|
* OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
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-12-29 11:47:31 +00:00
|
|
|
#include "smooth.h"
|
2020-06-20 21:07:58 +00:00
|
|
|
#include "buffer.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;
|
2020-03-28 11:44:40 +00:00
|
|
|
struct renderer;
|
2019-10-08 22:05:54 +00:00
|
|
|
|
|
|
|
enum screencopy_status {
|
2020-06-26 21:44:58 +00:00
|
|
|
SCREENCOPY_STOPPED = 0,
|
|
|
|
SCREENCOPY_IN_PROGRESS,
|
|
|
|
SCREENCOPY_FAILED,
|
|
|
|
SCREENCOPY_FATAL,
|
|
|
|
SCREENCOPY_DONE,
|
2019-10-08 22:05:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct screencopy {
|
2020-06-26 21:44:58 +00:00
|
|
|
enum screencopy_status status;
|
2019-10-10 22:32:54 +00:00
|
|
|
|
2020-06-20 21:07:58 +00:00
|
|
|
struct wv_buffer_pool* pool;
|
|
|
|
struct wv_buffer* front;
|
|
|
|
struct wv_buffer* back;
|
2019-10-10 20:48:01 +00:00
|
|
|
|
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
|
|
|
|
2020-06-26 21:44:58 +00:00
|
|
|
void* userdata;
|
|
|
|
void (*on_done)(struct screencopy*);
|
|
|
|
|
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;
|
2020-04-04 15:01:38 +00:00
|
|
|
bool is_immediate_copy;
|
2020-06-26 21:44:58 +00:00
|
|
|
bool overlay_cursor;
|
|
|
|
struct wl_output* wl_output;
|
2020-06-23 23:04:57 +00:00
|
|
|
|
|
|
|
uint32_t wl_shm_width, wl_shm_height, wl_shm_stride;
|
|
|
|
enum wl_shm_format wl_shm_format;
|
|
|
|
|
|
|
|
bool have_linux_dmabuf;
|
2022-07-09 17:34:05 +00:00
|
|
|
bool enable_linux_dmabuf;
|
2020-06-23 23:04:57 +00:00
|
|
|
uint32_t dmabuf_width, dmabuf_height;
|
|
|
|
uint32_t fourcc;
|
2020-07-07 14:22:38 +00:00
|
|
|
|
|
|
|
double rate_limit;
|
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);
|
2020-06-26 21:44:58 +00:00
|
|
|
|
|
|
|
int screencopy_start(struct screencopy* self);
|
|
|
|
int screencopy_start_immediate(struct screencopy* self);
|
|
|
|
|
|
|
|
void screencopy_stop(struct screencopy* self);
|