2019-10-08 22:05:54 +00:00
|
|
|
/*
|
2020-01-14 20:42:48 +00:00
|
|
|
* Copyright (c) 2019 - 2020 Andri Yngvason
|
2019-10-08 22:05:54 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdbool.h>
|
2019-10-10 20:48:01 +00:00
|
|
|
#include <sys/mman.h>
|
2019-12-27 14:41:54 +00:00
|
|
|
#include <wayland-client-protocol.h>
|
2019-10-08 22:05:54 +00:00
|
|
|
#include <wayland-client.h>
|
2019-10-10 22:32:54 +00:00
|
|
|
#include <libdrm/drm_fourcc.h>
|
2020-03-16 22:01:43 +00:00
|
|
|
#include <aml.h>
|
2019-10-08 22:05:54 +00:00
|
|
|
|
2020-06-20 21:07:58 +00:00
|
|
|
#include "wlr-screencopy-unstable-v1.h"
|
|
|
|
#include "buffer.h"
|
2020-04-04 15:01:38 +00:00
|
|
|
#include "frame-capture.h"
|
2019-10-08 22:05:54 +00:00
|
|
|
#include "shm.h"
|
|
|
|
#include "screencopy.h"
|
2020-01-14 20:40:57 +00:00
|
|
|
#include "smooth.h"
|
2019-12-29 11:47:31 +00:00
|
|
|
#include "time-util.h"
|
2020-03-28 11:44:40 +00:00
|
|
|
#include "render.h"
|
2020-04-02 00:34:00 +00:00
|
|
|
#include "usdt.h"
|
2019-12-29 11:47:31 +00:00
|
|
|
|
|
|
|
#define RATE_LIMIT 20.0 // Hz
|
2020-01-14 20:40:57 +00:00
|
|
|
#define DELAY_SMOOTHER_TIME_CONSTANT 0.5 // s
|
2019-10-08 22:05:54 +00:00
|
|
|
|
2019-10-10 22:32:54 +00:00
|
|
|
static void screencopy_stop(struct frame_capture* fc)
|
2019-10-08 22:05:54 +00:00
|
|
|
{
|
2019-10-10 22:32:54 +00:00
|
|
|
struct screencopy* self = (void*)fc;
|
|
|
|
|
2020-03-16 22:01:43 +00:00
|
|
|
aml_stop(aml_get_default(), self->timer);
|
2020-01-14 20:12:58 +00:00
|
|
|
|
2020-04-04 15:01:38 +00:00
|
|
|
self->frame_capture.status = CAPTURE_STOPPED;
|
|
|
|
|
2019-10-08 22:05:54 +00:00
|
|
|
if (self->frame) {
|
|
|
|
zwlr_screencopy_frame_v1_destroy(self->frame);
|
|
|
|
self->frame = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-23 23:04:57 +00:00
|
|
|
static void screencopy_linux_dmabuf(void* data,
|
2019-10-08 22:05:54 +00:00
|
|
|
struct zwlr_screencopy_frame_v1* frame,
|
2020-06-23 23:04:57 +00:00
|
|
|
uint32_t format, uint32_t width, uint32_t height)
|
2019-10-08 22:05:54 +00:00
|
|
|
{
|
|
|
|
struct screencopy* self = data;
|
|
|
|
|
2020-06-23 23:04:57 +00:00
|
|
|
self->have_linux_dmabuf = true;
|
|
|
|
self->dmabuf_width = width;
|
|
|
|
self->dmabuf_height = height;
|
|
|
|
self->fourcc = format;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void screencopy_buffer_done(void* data,
|
|
|
|
struct zwlr_screencopy_frame_v1* frame)
|
|
|
|
{
|
|
|
|
struct screencopy* self = data;
|
|
|
|
uint32_t width, height, stride, fourcc;
|
|
|
|
|
|
|
|
if (self->have_linux_dmabuf) {
|
|
|
|
width = self->dmabuf_width;
|
|
|
|
height = self->dmabuf_height;
|
|
|
|
stride = 0;
|
|
|
|
fourcc = self->fourcc;
|
|
|
|
wv_buffer_pool_resize(self->pool, WV_BUFFER_DMABUF, width,
|
|
|
|
height, stride, fourcc);
|
|
|
|
} else {
|
|
|
|
width = self->wl_shm_width;
|
|
|
|
height = self->wl_shm_height;
|
|
|
|
stride = self->wl_shm_stride;
|
|
|
|
fourcc = self->fourcc;
|
|
|
|
wv_buffer_pool_resize(self->pool, WV_BUFFER_SHM, width,
|
|
|
|
height, stride, self->wl_shm_format);
|
|
|
|
}
|
2020-06-20 21:07:58 +00:00
|
|
|
|
|
|
|
struct wv_buffer* buffer = wv_buffer_pool_acquire(self->pool);
|
|
|
|
if (!buffer) {
|
2019-10-10 22:32:54 +00:00
|
|
|
self->frame_capture.status = CAPTURE_FATAL;
|
|
|
|
screencopy_stop(&self->frame_capture);
|
|
|
|
self->frame_capture.on_done(&self->frame_capture);
|
2020-06-23 23:04:57 +00:00
|
|
|
return;
|
2019-10-08 22:05:54 +00:00
|
|
|
}
|
2019-10-09 21:59:13 +00:00
|
|
|
|
2020-06-23 23:04:57 +00:00
|
|
|
buffer->y_inverted = !self->have_linux_dmabuf;
|
2020-06-20 21:07:58 +00:00
|
|
|
|
|
|
|
assert(!self->front);
|
|
|
|
self->front = buffer;
|
|
|
|
|
|
|
|
self->frame_capture.frame_info.fourcc_format = fourcc;
|
2019-10-10 22:32:54 +00:00
|
|
|
self->frame_capture.frame_info.width = width;
|
|
|
|
self->frame_capture.frame_info.height = height;
|
|
|
|
self->frame_capture.frame_info.stride = stride;
|
2019-10-10 20:48:01 +00:00
|
|
|
|
2020-04-04 15:01:38 +00:00
|
|
|
if (self->is_immediate_copy)
|
2020-06-20 21:07:58 +00:00
|
|
|
zwlr_screencopy_frame_v1_copy(self->frame, buffer->wl_buffer);
|
2020-04-04 15:01:38 +00:00
|
|
|
else
|
|
|
|
zwlr_screencopy_frame_v1_copy_with_damage(self->frame,
|
2020-06-20 21:07:58 +00:00
|
|
|
buffer->wl_buffer);
|
2019-10-08 22:05:54 +00:00
|
|
|
}
|
|
|
|
|
2020-06-23 23:04:57 +00:00
|
|
|
static void screencopy_buffer(void* data,
|
|
|
|
struct zwlr_screencopy_frame_v1* frame,
|
|
|
|
enum wl_shm_format format, uint32_t width,
|
|
|
|
uint32_t height, uint32_t stride)
|
|
|
|
{
|
|
|
|
struct screencopy* self = data;
|
|
|
|
|
|
|
|
self->wl_shm_format = format;
|
|
|
|
self->wl_shm_width = width;
|
|
|
|
self->wl_shm_height = height;
|
|
|
|
self->wl_shm_stride = stride;
|
|
|
|
|
|
|
|
if (self->version < 3) {
|
|
|
|
self->have_linux_dmabuf = false;
|
|
|
|
screencopy_buffer_done(data, frame);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-08 22:05:54 +00:00
|
|
|
static void screencopy_flags(void* data,
|
|
|
|
struct zwlr_screencopy_frame_v1* frame,
|
|
|
|
uint32_t flags)
|
|
|
|
{
|
2020-06-20 21:07:58 +00:00
|
|
|
struct screencopy* self = data;
|
2019-10-08 22:05:54 +00:00
|
|
|
(void)frame;
|
|
|
|
|
2020-06-20 21:07:58 +00:00
|
|
|
// self->buffer->y_inverted = !!(flags & ZWLR_SCREENCOPY_FRAME_V1_FLAGS_Y_INVERT);
|
2019-10-08 22:05:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void screencopy_ready(void* data,
|
|
|
|
struct zwlr_screencopy_frame_v1* frame,
|
|
|
|
uint32_t sec_hi, uint32_t sec_lo, uint32_t nsec)
|
|
|
|
{
|
|
|
|
(void)sec_hi;
|
|
|
|
(void)sec_lo;
|
|
|
|
(void)nsec;
|
|
|
|
|
|
|
|
struct screencopy* self = data;
|
2019-10-10 22:32:54 +00:00
|
|
|
|
2020-04-02 00:34:00 +00:00
|
|
|
DTRACE_PROBE1(wayvnc, screencopy_ready, self);
|
|
|
|
|
2019-10-10 22:32:54 +00:00
|
|
|
screencopy_stop(&self->frame_capture);
|
|
|
|
|
2020-01-14 20:12:58 +00:00
|
|
|
self->last_time = gettime_us();
|
|
|
|
|
2020-01-14 20:40:57 +00:00
|
|
|
double delay = (self->last_time - self->start_time) * 1.0e-6;
|
|
|
|
self->delay = smooth(&self->delay_smoother, delay);
|
|
|
|
|
2020-04-04 15:01:38 +00:00
|
|
|
if (self->is_immediate_copy) {
|
|
|
|
self->frame_capture.damage_hint.x = 0;
|
|
|
|
self->frame_capture.damage_hint.y = 0;
|
|
|
|
self->frame_capture.damage_hint.width =
|
|
|
|
self->frame_capture.frame_info.width;
|
|
|
|
self->frame_capture.damage_hint.height =
|
|
|
|
self->frame_capture.frame_info.height;
|
|
|
|
}
|
|
|
|
|
2020-06-20 21:07:58 +00:00
|
|
|
if (self->back)
|
|
|
|
wv_buffer_pool_release(self->pool, self->back);
|
|
|
|
self->back = self->front;
|
|
|
|
self->front = NULL;
|
|
|
|
|
2020-06-24 18:31:29 +00:00
|
|
|
wv_buffer_map(self->back);
|
|
|
|
|
2019-10-10 22:32:54 +00:00
|
|
|
self->frame_capture.status = CAPTURE_DONE;
|
|
|
|
self->frame_capture.on_done(&self->frame_capture);
|
2019-10-08 22:05:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void screencopy_failed(void* data,
|
|
|
|
struct zwlr_screencopy_frame_v1* frame)
|
|
|
|
{
|
|
|
|
struct screencopy* self = data;
|
2019-10-10 22:32:54 +00:00
|
|
|
|
2020-04-02 00:34:00 +00:00
|
|
|
DTRACE_PROBE1(wayvnc, screencopy_failed, self);
|
|
|
|
|
2019-10-10 22:32:54 +00:00
|
|
|
screencopy_stop(&self->frame_capture);
|
|
|
|
self->frame_capture.status = CAPTURE_FAILED;
|
|
|
|
self->frame_capture.on_done(&self->frame_capture);
|
2019-10-08 22:05:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void screencopy_damage(void* data,
|
|
|
|
struct zwlr_screencopy_frame_v1* frame,
|
|
|
|
uint32_t x, uint32_t y,
|
|
|
|
uint32_t width, uint32_t height)
|
|
|
|
{
|
|
|
|
struct screencopy* self = data;
|
|
|
|
|
2020-04-02 00:34:00 +00:00
|
|
|
DTRACE_PROBE1(wayvnc, screencopy_damage, self);
|
|
|
|
|
2019-10-10 22:32:54 +00:00
|
|
|
self->frame_capture.damage_hint.x = x;
|
|
|
|
self->frame_capture.damage_hint.y = y;
|
|
|
|
self->frame_capture.damage_hint.width = width;
|
|
|
|
self->frame_capture.damage_hint.height = height;
|
2019-10-08 22:05:54 +00:00
|
|
|
}
|
|
|
|
|
2019-12-29 11:47:31 +00:00
|
|
|
static int screencopy__start_capture(struct frame_capture* fc)
|
2019-10-08 22:05:54 +00:00
|
|
|
{
|
2019-10-10 22:32:54 +00:00
|
|
|
struct screencopy* self = (void*)fc;
|
|
|
|
|
2020-04-02 00:34:00 +00:00
|
|
|
DTRACE_PROBE1(wayvnc, screencopy_start, self);
|
|
|
|
|
2019-10-08 22:05:54 +00:00
|
|
|
static const struct zwlr_screencopy_frame_v1_listener frame_listener = {
|
|
|
|
.buffer = screencopy_buffer,
|
2020-06-23 23:04:57 +00:00
|
|
|
.linux_dmabuf = screencopy_linux_dmabuf,
|
|
|
|
.buffer_done = screencopy_buffer_done,
|
2019-10-08 22:05:54 +00:00
|
|
|
.flags = screencopy_flags,
|
|
|
|
.ready = screencopy_ready,
|
|
|
|
.failed = screencopy_failed,
|
|
|
|
.damage = screencopy_damage,
|
|
|
|
};
|
|
|
|
|
2020-01-14 20:40:57 +00:00
|
|
|
self->start_time = gettime_us();
|
|
|
|
|
2019-10-08 22:05:54 +00:00
|
|
|
self->frame =
|
|
|
|
zwlr_screencopy_manager_v1_capture_output(self->manager,
|
2019-10-10 22:32:54 +00:00
|
|
|
fc->overlay_cursor,
|
|
|
|
fc->wl_output);
|
2019-10-08 22:05:54 +00:00
|
|
|
if (!self->frame)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
zwlr_screencopy_frame_v1_add_listener(self->frame, &frame_listener,
|
|
|
|
self);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2019-10-10 22:32:54 +00:00
|
|
|
|
2020-03-16 22:01:43 +00:00
|
|
|
static void screencopy__poll(void* obj)
|
2019-12-29 11:47:31 +00:00
|
|
|
{
|
2020-03-16 22:01:43 +00:00
|
|
|
struct screencopy* self = aml_get_userdata(obj);
|
2019-12-29 11:47:31 +00:00
|
|
|
struct frame_capture* fc = (struct frame_capture*)self;
|
|
|
|
|
|
|
|
screencopy__start_capture(fc);
|
|
|
|
}
|
|
|
|
|
2020-04-04 15:01:38 +00:00
|
|
|
static int screencopy_start(struct frame_capture* fc,
|
|
|
|
enum frame_capture_options options)
|
2019-12-29 11:47:31 +00:00
|
|
|
{
|
|
|
|
struct screencopy* self = (void*)fc;
|
|
|
|
|
2020-01-14 20:12:58 +00:00
|
|
|
if (fc->status == CAPTURE_IN_PROGRESS)
|
|
|
|
return -1;
|
|
|
|
|
2020-04-04 15:01:38 +00:00
|
|
|
self->is_immediate_copy = !!(options & CAPTURE_NOW);
|
|
|
|
|
2019-12-29 11:47:31 +00:00
|
|
|
uint64_t now = gettime_us();
|
|
|
|
double dt = (now - self->last_time) * 1.0e-6;
|
2020-01-14 20:40:57 +00:00
|
|
|
double time_left = (1.0 / RATE_LIMIT - dt - self->delay) * 1.0e3;
|
2019-12-29 11:47:31 +00:00
|
|
|
|
|
|
|
fc->status = CAPTURE_IN_PROGRESS;
|
|
|
|
|
2020-03-16 22:01:43 +00:00
|
|
|
if (time_left > 0) {
|
|
|
|
aml_set_duration(self->timer, time_left);
|
|
|
|
return aml_start(aml_get_default(), self->timer);
|
|
|
|
}
|
|
|
|
|
|
|
|
return screencopy__start_capture(fc);
|
2019-12-29 11:47:31 +00:00
|
|
|
}
|
|
|
|
|
2020-03-28 11:44:40 +00:00
|
|
|
static void screencopy_render(struct frame_capture* fc,
|
|
|
|
struct renderer* renderer, struct nvnc_fb* fb)
|
|
|
|
{
|
2020-06-20 21:07:58 +00:00
|
|
|
/*
|
2020-03-28 11:44:40 +00:00
|
|
|
uint32_t width = fc->frame_info.width;
|
|
|
|
uint32_t height = fc->frame_info.height;
|
|
|
|
uint32_t stride = fc->frame_info.stride;
|
|
|
|
uint32_t format = fc->frame_info.fourcc_format;
|
|
|
|
|
|
|
|
render_framebuffer(renderer, self->pixels, format, width, height, stride);
|
2020-06-20 21:07:58 +00:00
|
|
|
*/
|
2020-03-28 11:44:40 +00:00
|
|
|
}
|
|
|
|
|
2019-10-10 22:32:54 +00:00
|
|
|
void screencopy_init(struct screencopy* self)
|
|
|
|
{
|
2020-06-23 17:20:43 +00:00
|
|
|
self->pool = wv_buffer_pool_create(0, 0, 0, 0, 0);
|
2020-06-20 21:07:58 +00:00
|
|
|
assert(self->pool);
|
|
|
|
|
2020-03-16 22:01:43 +00:00
|
|
|
self->timer = aml_timer_new(0, screencopy__poll, self, NULL);
|
|
|
|
assert(self->timer);
|
2020-01-14 20:40:57 +00:00
|
|
|
|
|
|
|
self->delay_smoother.time_constant = DELAY_SMOOTHER_TIME_CONSTANT;
|
|
|
|
|
2019-10-10 22:32:54 +00:00
|
|
|
self->frame_capture.backend.start = screencopy_start;
|
|
|
|
self->frame_capture.backend.stop = screencopy_stop;
|
2020-03-28 11:44:40 +00:00
|
|
|
self->frame_capture.backend.render = screencopy_render;
|
2019-10-10 22:32:54 +00:00
|
|
|
}
|
2019-12-27 14:41:54 +00:00
|
|
|
|
|
|
|
void screencopy_destroy(struct screencopy* self)
|
|
|
|
{
|
2020-03-16 22:01:43 +00:00
|
|
|
aml_stop(aml_get_default(), self->timer);
|
|
|
|
aml_unref(self->timer);
|
2020-01-04 13:48:09 +00:00
|
|
|
|
2020-06-20 21:07:58 +00:00
|
|
|
if (self->back)
|
|
|
|
wv_buffer_pool_release(self->pool, self->back);
|
|
|
|
if (self->front)
|
|
|
|
wv_buffer_pool_release(self->pool, self->front);
|
|
|
|
|
|
|
|
wv_buffer_pool_destroy(self->pool);
|
2019-12-27 14:41:54 +00:00
|
|
|
}
|