wayvnc/src/screencopy.c

259 lines
6.5 KiB
C
Raw Normal View History

/*
* Copyright (c) 2019 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.
*/
#include <unistd.h>
#include <stdlib.h>
#include <assert.h>
#include <stdbool.h>
#include <sys/mman.h>
2019-12-27 14:41:54 +00:00
#include <wayland-client-protocol.h>
#include <wayland-client.h>
2019-10-10 22:32:54 +00:00
#include <libdrm/drm_fourcc.h>
#include <uv.h>
#include "shm.h"
#include "screencopy.h"
#include "time-util.h"
#define RATE_FILTER_TIME_CONSTANT 1.0 // s
#define RATE_LIMIT 20.0 // Hz
#define RATE_LIMIT_HYSTERISIS 5.0 // Hz
2019-10-10 22:32:54 +00:00
static uint32_t fourcc_from_wl_shm(enum wl_shm_format in)
{
switch (in) {
case WL_SHM_FORMAT_ARGB8888: return DRM_FORMAT_ARGB8888;
case WL_SHM_FORMAT_XRGB8888: return DRM_FORMAT_XRGB8888;
default: return in;
}
}
static int screencopy_buffer_init(struct screencopy* self,
enum wl_shm_format format, uint32_t width,
uint32_t height, uint32_t stride)
{
if (self->buffer)
return 0;
size_t size = stride * height;
int fd = shm_alloc_fd(size);
if (fd < 0)
return -1;
void* addr = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
if (!addr)
goto mmap_failure;
struct wl_shm_pool* pool = wl_shm_create_pool(self->wl_shm, fd, size);
if (!pool)
goto shm_failure;
struct wl_buffer* buffer =
wl_shm_pool_create_buffer(pool, 0, width, height, stride,
format);
wl_shm_pool_destroy(pool);
if (!buffer)
goto shm_failure;
self->buffer = buffer;
self->pixels = addr;
self->bufsize = size;
close(fd);
return 0;
shm_failure:
munmap(addr, size);
mmap_failure:
close(fd);
return -1;
}
2019-10-10 22:32:54 +00:00
static void screencopy_stop(struct frame_capture* fc)
{
2019-10-10 22:32:54 +00:00
struct screencopy* self = (void*)fc;
if (self->frame) {
zwlr_screencopy_frame_v1_destroy(self->frame);
self->frame = NULL;
}
}
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;
if (screencopy_buffer_init(self, format, width, height, stride) < 0) {
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);
}
2019-10-10 22:32:54 +00:00
self->frame_capture.frame_info.fourcc_format =
fourcc_from_wl_shm(format);
self->frame_capture.frame_info.width = width;
self->frame_capture.frame_info.height = height;
self->frame_capture.frame_info.stride = stride;
2019-10-10 21:40:22 +00:00
zwlr_screencopy_frame_v1_copy_with_damage(self->frame, self->buffer);
}
static void screencopy_flags(void* data,
struct zwlr_screencopy_frame_v1* frame,
uint32_t flags)
{
(void)data;
(void)frame;
(void)flags;
/* TODO. Assume y-invert for now */
}
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
screencopy_stop(&self->frame_capture);
self->frame_capture.status = CAPTURE_DONE;
self->frame_capture.on_done(&self->frame_capture);
uint64_t t = gettime_us();
double dt = (t - self->last_time) * 1.0e-6;
self->last_time = t;
self->rate = smooth(&self->rate_filter, 1.0 / dt);
if (self->rate > RATE_LIMIT + RATE_LIMIT_HYSTERISIS)
self->is_rate_limited = true;
else if (self->rate < RATE_LIMIT - RATE_LIMIT_HYSTERISIS)
self->is_rate_limited = false;
}
static void screencopy_failed(void* data,
struct zwlr_screencopy_frame_v1* frame)
{
struct screencopy* self = data;
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);
}
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;
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;
}
static int screencopy__start_capture(struct frame_capture* fc)
{
2019-10-10 22:32:54 +00:00
struct screencopy* self = (void*)fc;
static const struct zwlr_screencopy_frame_v1_listener frame_listener = {
.buffer = screencopy_buffer,
.flags = screencopy_flags,
.ready = screencopy_ready,
.failed = screencopy_failed,
.damage = screencopy_damage,
};
self->frame =
zwlr_screencopy_manager_v1_capture_output(self->manager,
2019-10-10 22:32:54 +00:00
fc->overlay_cursor,
fc->wl_output);
if (!self->frame)
return -1;
zwlr_screencopy_frame_v1_add_listener(self->frame, &frame_listener,
self);
2019-10-10 22:32:54 +00:00
fc->status = CAPTURE_IN_PROGRESS;
return 0;
}
2019-10-10 22:32:54 +00:00
static void screencopy__poll(uv_timer_t* timer)
{
struct screencopy* self = wl_container_of(timer, self, timer);
struct frame_capture* fc = (struct frame_capture*)self;
screencopy__start_capture(fc);
}
static int screencopy__start_capture_limited(struct frame_capture* fc)
{
struct screencopy* self = (void*)fc;
uint64_t now = gettime_us();
double dt = (now - self->last_time) * 1.0e-6;
double time_left = (.5 / RATE_LIMIT - dt) * 1.0e3;
if (time_left < 0)
return screencopy__start_capture(fc);
if (uv_timer_start(&self->timer, screencopy__poll, time_left, 0) < 0)
return -1;
fc->status = CAPTURE_IN_PROGRESS;
return 0;
}
static int screencopy_start(struct frame_capture* fc)
{
struct screencopy* self = (void*)fc;
if (fc->status == CAPTURE_IN_PROGRESS)
return -1;
return self->is_rate_limited ? screencopy__start_capture_limited(fc)
: screencopy__start_capture(fc);
}
2019-10-10 22:32:54 +00:00
void screencopy_init(struct screencopy* self)
{
uv_timer_init(uv_default_loop(), &self->timer);
self->rate_filter.time_constant = RATE_FILTER_TIME_CONSTANT;
2019-10-10 22:32:54 +00:00
self->frame_capture.backend.start = screencopy_start;
self->frame_capture.backend.stop = screencopy_stop;
}
2019-12-27 14:41:54 +00:00
void screencopy_destroy(struct screencopy* self)
{
uv_timer_stop(&self->timer);
if (self->buffer)
wl_buffer_destroy(self->buffer);
2019-12-27 14:41:54 +00:00
}