2020-02-09 12:03:14 +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-12-30 09:59:51 +00:00
|
|
|
#pragma once
|
|
|
|
|
2020-07-08 14:46:12 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdint.h>
|
2020-04-03 22:31:16 +00:00
|
|
|
#include <zlib.h>
|
2020-07-08 14:46:12 +00:00
|
|
|
#include <pthread.h>
|
2020-04-02 21:52:04 +00:00
|
|
|
|
2020-07-08 14:46:12 +00:00
|
|
|
struct tight_tile;
|
2019-12-30 09:59:51 +00:00
|
|
|
struct pixman_region16;
|
2020-07-08 14:46:12 +00:00
|
|
|
struct aml_work;
|
2019-12-30 09:59:51 +00:00
|
|
|
|
2020-04-03 19:56:44 +00:00
|
|
|
enum tight_quality {
|
|
|
|
TIGHT_QUALITY_UNSPEC = 0,
|
|
|
|
TIGHT_QUALITY_LOSSLESS,
|
|
|
|
TIGHT_QUALITY_LOW,
|
|
|
|
TIGHT_QUALITY_HIGH,
|
|
|
|
};
|
|
|
|
|
2020-04-02 21:52:04 +00:00
|
|
|
struct tight_encoder {
|
2020-07-08 14:46:12 +00:00
|
|
|
uint32_t width;
|
|
|
|
uint32_t height;
|
|
|
|
uint32_t grid_width;
|
|
|
|
uint32_t grid_height;
|
2020-04-03 19:56:44 +00:00
|
|
|
enum tight_quality quality;
|
2020-07-08 14:46:12 +00:00
|
|
|
|
|
|
|
struct tight_tile* grid;
|
|
|
|
|
|
|
|
z_stream zs[4];
|
|
|
|
struct aml_work* zs_worker[4];
|
|
|
|
|
|
|
|
const struct rfb_pixel_format* dfmt;
|
|
|
|
const struct rfb_pixel_format* sfmt;
|
|
|
|
const struct nvnc_fb* fb;
|
|
|
|
|
|
|
|
uint32_t n_rects;
|
|
|
|
uint32_t n_jobs;
|
|
|
|
|
|
|
|
struct vec* dst;
|
|
|
|
|
|
|
|
pthread_mutex_t wait_mutex;
|
|
|
|
pthread_cond_t wait_cond;
|
2020-04-02 21:52:04 +00:00
|
|
|
};
|
|
|
|
|
2020-07-08 14:46:12 +00:00
|
|
|
int tight_encoder_init(struct tight_encoder* self, uint32_t width,
|
|
|
|
uint32_t height);
|
|
|
|
void tight_encoder_destroy(struct tight_encoder* self);
|
2020-04-02 21:52:04 +00:00
|
|
|
|
2020-07-19 16:57:44 +00:00
|
|
|
int tight_encoder_resize(struct tight_encoder* self, uint32_t width,
|
|
|
|
uint32_t height);
|
|
|
|
|
2020-04-02 21:52:04 +00:00
|
|
|
int tight_encode_frame(struct tight_encoder* self, struct vec* dst,
|
2020-07-08 14:46:12 +00:00
|
|
|
const struct rfb_pixel_format* dfmt,
|
|
|
|
const struct nvnc_fb* src,
|
|
|
|
const struct rfb_pixel_format* sfmt,
|
|
|
|
struct pixman_region16* damage,
|
|
|
|
enum tight_quality quality);
|