FreeRDP
TestFreeRDPCodecClear.c
1 #include <winpr/crt.h>
2 #include <winpr/print.h>
3 #include <winpr/platform.h>
4 
5 #include <freerdp/codec/clear.h>
6 
7 WINPR_PRAGMA_DIAG_PUSH
8 WINPR_PRAGMA_DIAG_IGNORED_UNUSED_CONST_VAR
9 /* [MS-RDPEGFX] 4.1.1.1 Example 1 */
10 static const BYTE PREPARE_CLEAR_EXAMPLE_1[] = "\x03\xc3\x11\x00";
11 static const BYTE TEST_CLEAR_EXAMPLE_1[] = "\x03\xc3\x11\x00";
12 WINPR_PRAGMA_DIAG_POP
13 
14 /* [MS-RDPEGFX] 4.1.1.1 Example 2 */
15 static const BYTE TEST_CLEAR_EXAMPLE_2[] =
16  "\x00\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x82\x00\x00\x00\x00\x00"
17  "\x00\x00\x4e\x00\x11\x00\x75\x00\x00\x00\x02\x0e\xff\xff\xff\x00"
18  "\x00\x00\xdb\xff\xff\x00\x3a\x90\xff\xb6\x66\x66\xb6\xff\xb6\x66"
19  "\x00\x90\xdb\xff\x00\x00\x3a\xdb\x90\x3a\x3a\x90\xdb\x66\x00\x00"
20  "\xff\xff\xb6\x64\x64\x64\x11\x04\x11\x4c\x11\x4c\x11\x4c\x11\x4c"
21  "\x11\x4c\x00\x47\x13\x00\x01\x01\x04\x00\x01\x00\x00\x47\x16\x00"
22  "\x11\x02\x00\x47\x29\x00\x11\x01\x00\x49\x0a\x00\x01\x00\x04\x00"
23  "\x01\x00\x00\x4a\x0a\x00\x09\x00\x01\x00\x00\x47\x05\x00\x01\x01"
24  "\x1c\x00\x01\x00\x11\x4c\x11\x4c\x11\x4c\x00\x47\x0d\x4d\x00\x4d";
25 
26 /* [MS-RDPEGFX] 4.1.1.1 Example 3 */
27 static const BYTE TEST_CLEAR_EXAMPLE_3[] =
28  "\x00\xdf\x0e\x00\x00\x00\x8b\x00\x00\x00\x00\x00\x00\x00\xfe\xfe"
29  "\xfe\xff\x80\x05\xff\xff\xff\x40\xfe\xfe\xfe\x40\x00\x00\x3f\x00"
30  "\x03\x00\x0b\x00\xfe\xfe\xfe\xc5\xd0\xc6\xd0\xc7\xd0\x68\xd4\x69"
31  "\xd4\x6a\xd4\x6b\xd4\x6c\xd4\x6d\xd4\x1a\xd4\x1a\xd4\xa6\xd0\x6e"
32  "\xd4\x6f\xd4\x70\xd4\x71\xd4\x72\xd4\x73\xd4\x74\xd4\x21\xd4\x22"
33  "\xd4\x23\xd4\x24\xd4\x25\xd4\xd9\xd0\xda\xd0\xdb\xd0\xc5\xd0\xc5"
34  "\xd0\xdc\xd0\xc2\xd0\x21\xd4\x22\xd4\x23\xd4\x24\xd4\x25\xd4\xc9"
35  "\xd0\xca\xd0\x5a\xd4\x2b\xd1\x28\xd1\x2c\xd1\x75\xd4\x27\xd4\x28"
36  "\xd4\x29\xd4\x2a\xd4\x1a\xd4\x1a\xd4\x1a\xd4\xb7\xd0\xb8\xd0\xb9"
37  "\xd0\xba\xd0\xbb\xd0\xbc\xd0\xbd\xd0\xbe\xd0\xbf\xd0\xc0\xd0\xc1"
38  "\xd0\xc2\xd0\xc3\xd0\xc4\xd0";
39 
40 /* [MS-RDPEGFX] 4.1.1.1 Example 4 */
41 static const BYTE TEST_CLEAR_EXAMPLE_4[] =
42  "\x01\x0b\x78\x00\x00\x00\x00\x00\x46\x00\x00\x00\x00\x00\x00\x00"
43  "\x00\x00\x06\x00\x00\x00\x0e\x00\x00\x00\x00\x00\x0f\xff\xff\xff"
44  "\xff\xff\xff\xff\xff\xff\xb6\xff\xff\xff\xff\xff\xff\xff\xff\xff"
45  "\xb6\x66\xff\xff\xff\xff\xff\xff\xff\xb6\x66\xdb\x90\x3a\xff\xff"
46  "\xb6\xff\xff\xff\xff\xff\xff\xff\xff\xff\x46\x91\x47\x91\x48\x91"
47  "\x49\x91\x4a\x91\x1b\x91";
48 
49 static BOOL test_ClearDecompressExample(UINT32 nr, UINT32 width, UINT32 height,
50  const BYTE* pSrcData, const UINT32 SrcSize)
51 {
52  BOOL rc = FALSE;
53  int status = 0;
54  BYTE* pDstData = calloc(4ULL * width, height);
55  CLEAR_CONTEXT* clear = clear_context_new(FALSE);
56 
57  if (!clear || !pDstData)
58  goto fail;
59 
60  status = clear_decompress(clear, pSrcData, SrcSize, width, height, pDstData,
61  PIXEL_FORMAT_XRGB32, 0, 0, 0, width, height, NULL);
62  (void)printf("clear_decompress example %" PRIu32 " status: %d\n", nr, status);
63  (void)fflush(stdout);
64  rc = (status == 0);
65 fail:
66  clear_context_free(clear);
67  free(pDstData);
68  return rc;
69 }
70 
71 int TestFreeRDPCodecClear(int argc, char* argv[])
72 {
73  WINPR_UNUSED(argc);
74  WINPR_UNUSED(argv);
75 
76  /* Example 1 needs a filled glyph cache
77  if (!test_ClearDecompressExample(1, 8, 9, TEST_CLEAR_EXAMPLE_1,
78  sizeof(TEST_CLEAR_EXAMPLE_1)))
79  return -1;
80  */
81  if (!test_ClearDecompressExample(2, 78, 17, TEST_CLEAR_EXAMPLE_2, sizeof(TEST_CLEAR_EXAMPLE_2)))
82  return -1;
83 
84  if (!test_ClearDecompressExample(3, 64, 24, TEST_CLEAR_EXAMPLE_3, sizeof(TEST_CLEAR_EXAMPLE_3)))
85  return -1;
86 
87  if (!test_ClearDecompressExample(4, 7, 15, TEST_CLEAR_EXAMPLE_4, sizeof(TEST_CLEAR_EXAMPLE_4)))
88  return -1;
89 
90  return 0;
91 }