2014-03-10 19:41:10 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
* Bulk Compression
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FREERDP_CORE_BULK_H
|
|
|
|
#define FREERDP_CORE_BULK_H
|
|
|
|
|
|
|
|
typedef struct rdp_bulk rdpBulk;
|
|
|
|
|
|
|
|
#include "rdp.h"
|
|
|
|
|
|
|
|
#include <freerdp/codec/mppc.h>
|
2014-03-17 04:54:07 +04:00
|
|
|
#include <freerdp/codec/ncrush.h>
|
2014-05-05 05:50:17 +04:00
|
|
|
#include <freerdp/codec/xcrush.h>
|
2014-03-10 19:41:10 +04:00
|
|
|
|
|
|
|
struct rdp_bulk
|
|
|
|
{
|
|
|
|
rdpContext* context;
|
2014-03-12 04:58:35 +04:00
|
|
|
UINT32 CompressionLevel;
|
2014-03-12 06:33:41 +04:00
|
|
|
UINT32 CompressionMaxSize;
|
2014-03-10 23:06:23 +04:00
|
|
|
MPPC_CONTEXT* mppcSend;
|
|
|
|
MPPC_CONTEXT* mppcRecv;
|
2014-03-17 04:54:07 +04:00
|
|
|
NCRUSH_CONTEXT* ncrushRecv;
|
2014-03-31 22:48:47 +04:00
|
|
|
NCRUSH_CONTEXT* ncrushSend;
|
2014-05-05 05:50:17 +04:00
|
|
|
XCRUSH_CONTEXT* xcrushRecv;
|
|
|
|
XCRUSH_CONTEXT* xcrushSend;
|
2014-03-10 23:06:23 +04:00
|
|
|
BYTE OutputBuffer[65536];
|
2014-03-10 19:41:10 +04:00
|
|
|
};
|
|
|
|
|
2014-04-21 05:28:09 +04:00
|
|
|
#define BULK_COMPRESSION_FLAGS_MASK 0xE0
|
|
|
|
#define BULK_COMPRESSION_TYPE_MASK 0x0F
|
|
|
|
|
2014-03-12 06:33:41 +04:00
|
|
|
UINT32 bulk_compression_level(rdpBulk* bulk);
|
|
|
|
UINT32 bulk_compression_max_size(rdpBulk* bulk);
|
|
|
|
|
2014-03-10 21:15:10 +04:00
|
|
|
int bulk_decompress(rdpBulk* bulk, BYTE* pSrcData, UINT32 SrcSize, BYTE** ppDstData, UINT32* pDstSize, UINT32 flags);
|
|
|
|
int bulk_compress(rdpBulk* bulk, BYTE* pSrcData, UINT32 SrcSize, BYTE** ppDstData, UINT32* pDstSize, UINT32* pFlags);
|
|
|
|
|
2014-03-10 19:41:10 +04:00
|
|
|
void bulk_reset(rdpBulk* bulk);
|
|
|
|
|
|
|
|
rdpBulk* bulk_new(rdpContext* context);
|
|
|
|
void bulk_free(rdpBulk* bulk);
|
|
|
|
|
|
|
|
#endif /* FREERDP_CORE_BULK_H */
|