Blame libfreerdp/codec/rfx_constants.h

Packit Service fa4841
/**
Packit Service fa4841
 * FreeRDP: A Remote Desktop Protocol Implementation
Packit Service fa4841
 * RemoteFX Codec Library - API Header
Packit Service fa4841
 *
Packit Service fa4841
 * Copyright 2011 Vic Lee
Packit Service fa4841
 *
Packit Service fa4841
 * Licensed under the Apache License, Version 2.0 (the "License");
Packit Service fa4841
 * you may not use this file except in compliance with the License.
Packit Service fa4841
 * You may obtain a copy of the License at
Packit Service fa4841
 *
Packit Service fa4841
 *     http://www.apache.org/licenses/LICENSE-2.0
Packit Service fa4841
 *
Packit Service fa4841
 * Unless required by applicable law or agreed to in writing, software
Packit Service fa4841
 * distributed under the License is distributed on an "AS IS" BASIS,
Packit Service fa4841
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Packit Service fa4841
 * See the License for the specific language governing permissions and
Packit Service fa4841
 * limitations under the License.
Packit Service fa4841
 */
Packit Service fa4841
Packit Service fa4841
#ifndef FREERDP_LIB_CODEC_RFX_CONSTANTS_H
Packit Service fa4841
#define FREERDP_LIB_CODEC_RFX_CONSTANTS_H
Packit Service fa4841
Packit Service fa4841
/* sync */
Packit Service fa4841
#define WF_MAGIC 0xCACCACCA
Packit Service fa4841
#define WF_VERSION_1_0 0x0100
Packit Service fa4841
Packit Service fa4841
/* blockType */
Packit Service fa4841
#define WBT_SYNC 0xCCC0
Packit Service fa4841
#define WBT_CODEC_VERSIONS 0xCCC1
Packit Service fa4841
#define WBT_CHANNELS 0xCCC2
Packit Service fa4841
#define WBT_CONTEXT 0xCCC3
Packit Service fa4841
#define WBT_FRAME_BEGIN 0xCCC4
Packit Service fa4841
#define WBT_FRAME_END 0xCCC5
Packit Service fa4841
#define WBT_REGION 0xCCC6
Packit Service fa4841
#define WBT_EXTENSION 0xCCC7
Packit Service fa4841
#define CBT_REGION 0xCAC1
Packit Service fa4841
#define CBT_TILESET 0xCAC2
Packit Service fa4841
#define CBT_TILE 0xCAC3
Packit Service fa4841
Packit Service fa4841
/* tileSize */
Packit Service fa4841
#define CT_TILE_64x64 0x0040
Packit Service fa4841
Packit Service fa4841
/* properties.flags */
Packit Service fa4841
#define CODEC_MODE 0x02
Packit Service fa4841
Packit Service fa4841
/* properties.cct */
Packit Service fa4841
#define COL_CONV_ICT 0x1
Packit Service fa4841
Packit Service fa4841
/* properties.xft */
Packit Service fa4841
#define CLW_XFORM_DWT_53_A 0x1
Packit Service fa4841
Packit Service fa4841
/* properties.et */
Packit Service fa4841
#define CLW_ENTROPY_RLGR1 0x01
Packit Service fa4841
#define CLW_ENTROPY_RLGR3 0x04
Packit Service fa4841
Packit Service fa4841
/* properties.qt */
Packit Service fa4841
#define SCALAR_QUANTIZATION 0x1
Packit Service fa4841
Packit Service fa4841
#endif /* FREERDP_LIB_CODEC_RFX_CONSTANTS_H */