2014-07-11 20:49:56 -04:00
|
|
|
/**
|
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
|
*
|
|
|
|
|
* Copyright 2014 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-06-06 14:01:41 +02:00
|
|
|
#ifndef FREERDP_SERVER_SHADOW_ENCODER_H
|
|
|
|
|
#define FREERDP_SERVER_SHADOW_ENCODER_H
|
2014-07-11 20:49:56 -04:00
|
|
|
|
|
|
|
|
#include <winpr/crt.h>
|
|
|
|
|
#include <winpr/stream.h>
|
|
|
|
|
|
|
|
|
|
#include <freerdp/freerdp.h>
|
2014-09-20 15:25:33 -04:00
|
|
|
#include <freerdp/codecs.h>
|
2014-07-11 20:49:56 -04:00
|
|
|
|
|
|
|
|
#include <freerdp/server/shadow.h>
|
|
|
|
|
|
|
|
|
|
struct rdp_shadow_encoder
|
|
|
|
|
{
|
2014-09-19 12:06:12 -04:00
|
|
|
rdpShadowClient* client;
|
2014-07-11 20:49:56 -04:00
|
|
|
rdpShadowServer* server;
|
|
|
|
|
|
2021-06-16 12:59:25 +02:00
|
|
|
UINT32 width;
|
|
|
|
|
UINT32 height;
|
2014-07-16 14:11:37 -04:00
|
|
|
UINT32 codecs;
|
2014-07-11 20:49:56 -04:00
|
|
|
|
|
|
|
|
BYTE** grid;
|
2021-06-16 12:59:25 +02:00
|
|
|
UINT32 gridWidth;
|
|
|
|
|
UINT32 gridHeight;
|
2014-07-11 20:49:56 -04:00
|
|
|
BYTE* gridBuffer;
|
2021-06-16 12:59:25 +02:00
|
|
|
UINT32 maxTileWidth;
|
|
|
|
|
UINT32 maxTileHeight;
|
2014-07-11 20:49:56 -04:00
|
|
|
|
|
|
|
|
wStream* bs;
|
2014-07-16 14:11:37 -04:00
|
|
|
|
|
|
|
|
RFX_CONTEXT* rfx;
|
|
|
|
|
NSC_CONTEXT* nsc;
|
2014-07-11 20:49:56 -04:00
|
|
|
BITMAP_PLANAR_CONTEXT* planar;
|
2014-09-20 15:25:33 -04:00
|
|
|
BITMAP_INTERLEAVED_CONTEXT* interleaved;
|
2016-04-24 01:49:10 +08:00
|
|
|
H264_CONTEXT* h264;
|
2021-06-28 14:45:19 +02:00
|
|
|
PROGRESSIVE_CONTEXT* progressive;
|
2014-07-13 19:42:57 -04:00
|
|
|
|
2021-06-18 10:00:43 +02:00
|
|
|
UINT32 fps;
|
|
|
|
|
UINT32 maxFps;
|
2014-07-13 19:42:57 -04:00
|
|
|
BOOL frameAck;
|
|
|
|
|
UINT32 frameId;
|
2015-04-10 02:33:54 +08:00
|
|
|
UINT32 lastAckframeId;
|
2016-12-10 02:25:50 +08:00
|
|
|
UINT32 queueDepth;
|
2014-07-11 20:49:56 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2019-11-06 15:24:51 +01:00
|
|
|
extern "C"
|
|
|
|
|
{
|
2014-07-11 20:49:56 -04:00
|
|
|
#endif
|
|
|
|
|
|
2026-01-23 13:15:46 +01:00
|
|
|
WINPR_ATTR_NODISCARD int shadow_encoder_reset(rdpShadowEncoder* encoder);
|
|
|
|
|
WINPR_ATTR_NODISCARD int shadow_encoder_prepare(rdpShadowEncoder* encoder, UINT32 codecs);
|
|
|
|
|
WINPR_ATTR_NODISCARD UINT32 shadow_encoder_create_frame_id(rdpShadowEncoder* encoder);
|
2014-07-13 19:42:57 -04:00
|
|
|
|
2019-11-06 15:24:51 +01:00
|
|
|
void shadow_encoder_free(rdpShadowEncoder* encoder);
|
2014-07-11 20:49:56 -04:00
|
|
|
|
2024-01-26 13:09:00 +01:00
|
|
|
WINPR_ATTR_MALLOC(shadow_encoder_free, 1)
|
2026-01-26 13:08:14 +01:00
|
|
|
WINPR_ATTR_NODISCARD
|
2024-01-26 13:09:00 +01:00
|
|
|
rdpShadowEncoder* shadow_encoder_new(rdpShadowClient* client);
|
|
|
|
|
|
2014-07-11 20:49:56 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-06-06 14:01:41 +02:00
|
|
|
#endif /* FREERDP_SERVER_SHADOW_ENCODER_H */
|