Commit | Line | Data |
---|---|---|
f7599d5f | 1 | /* |
a7b91ac6 | 2 | * cws2fws by Alex Beregszaszi |
3d0c32d4 | 3 | * Public domain. |
f7599d5f AB |
4 | * |
5 | * This utility converts compressed Macromedia Flash files to uncompressed ones. | |
6 | * | |
7 | */ | |
8 | ||
9 | #include <sys/stat.h> | |
10 | #include <fcntl.h> | |
a65bafef DB |
11 | #include <stdio.h> |
12 | #include <stdlib.h> | |
f7599d5f AB |
13 | #include <unistd.h> |
14 | #include <zlib.h> | |
15 | ||
16 | #ifdef DEBUG | |
17 | #define dbgprintf printf | |
18 | #else | |
19 | #define dbgprintf | |
20 | #endif | |
21 | ||
226cbe07 | 22 | int main(int argc, char *argv[]) |
f7599d5f | 23 | { |
15bf461b | 24 | int fd_in, fd_out, comp_len, uncomp_len, i, last_out; |
0c2ed2df | 25 | char buf_in[1024], buf_out[65536]; |
f7599d5f AB |
26 | z_stream zstream; |
27 | struct stat statbuf; | |
28 | ||
29 | if (argc < 3) | |
30 | { | |
bb270c08 DB |
31 | printf("Usage: %s <infile.swf> <outfile.swf>\n", argv[0]); |
32 | exit(1); | |
f7599d5f | 33 | } |
115329f1 | 34 | |
f7599d5f AB |
35 | fd_in = open(argv[1], O_RDONLY); |
36 | if (fd_in < 0) | |
37 | { | |
bb270c08 DB |
38 | perror("Error while opening: "); |
39 | exit(1); | |
f7599d5f AB |
40 | } |
41 | ||
42 | fd_out = open(argv[2], O_WRONLY|O_CREAT, 00644); | |
43 | if (fd_out < 0) | |
44 | { | |
bb270c08 DB |
45 | perror("Error while opening: "); |
46 | close(fd_in); | |
47 | exit(1); | |
f7599d5f | 48 | } |
115329f1 | 49 | |
f7599d5f AB |
50 | if (read(fd_in, &buf_in, 8) != 8) |
51 | { | |
bb270c08 DB |
52 | printf("Header error\n"); |
53 | close(fd_in); | |
54 | close(fd_out); | |
55 | exit(1); | |
f7599d5f | 56 | } |
115329f1 | 57 | |
f7599d5f AB |
58 | if (buf_in[0] != 'C' || buf_in[1] != 'W' || buf_in[2] != 'S') |
59 | { | |
bb270c08 DB |
60 | printf("Not a compressed flash file\n"); |
61 | exit(1); | |
f7599d5f AB |
62 | } |
63 | ||
64 | fstat(fd_in, &statbuf); | |
65 | comp_len = statbuf.st_size; | |
66 | uncomp_len = buf_in[4] | (buf_in[5] << 8) | (buf_in[6] << 16) | (buf_in[7] << 24); | |
115329f1 | 67 | |
f7599d5f AB |
68 | printf("Compressed size: %d Uncompressed size: %d\n", comp_len-4, uncomp_len-4); |
69 | ||
70 | // write out modified header | |
71 | buf_in[0] = 'F'; | |
72 | write(fd_out, &buf_in, 8); | |
73 | ||
74 | zstream.zalloc = NULL; | |
75 | zstream.zfree = NULL; | |
76 | zstream.opaque = NULL; | |
77 | inflateInit(&zstream); | |
115329f1 | 78 | |
0c2ed2df | 79 | for (i = 0; i < comp_len-8;) |
f7599d5f | 80 | { |
bb270c08 | 81 | int ret, len = read(fd_in, &buf_in, 1024); |
f7599d5f | 82 | |
bb270c08 | 83 | dbgprintf("read %d bytes\n", len); |
115329f1 | 84 | |
bb270c08 | 85 | last_out = zstream.total_out; |
115329f1 | 86 | |
bb270c08 DB |
87 | zstream.next_in = &buf_in[0]; |
88 | zstream.avail_in = len; | |
89 | zstream.next_out = &buf_out[0]; | |
0c2ed2df | 90 | zstream.avail_out = 65536; |
115329f1 | 91 | |
bb270c08 | 92 | ret = inflate(&zstream, Z_SYNC_FLUSH); |
0c2ed2df | 93 | if (ret != Z_STREAM_END && ret != Z_OK) |
bb270c08 DB |
94 | { |
95 | printf("Error while decompressing: %d\n", ret); | |
96 | inflateEnd(&zstream); | |
97 | exit(1); | |
98 | } | |
115329f1 | 99 | |
bb270c08 DB |
100 | dbgprintf("a_in: %d t_in: %d a_out: %d t_out: %d -- %d out\n", |
101 | zstream.avail_in, zstream.total_in, zstream.avail_out, zstream.total_out, | |
102 | zstream.total_out-last_out); | |
115329f1 | 103 | |
bb270c08 | 104 | write(fd_out, &buf_out, zstream.total_out-last_out); |
f7599d5f | 105 | |
bb270c08 | 106 | i += len; |
0c2ed2df AB |
107 | |
108 | if (ret == Z_STREAM_END || ret == Z_BUF_ERROR) | |
109 | break; | |
f7599d5f | 110 | } |
115329f1 | 111 | |
f7599d5f AB |
112 | if (zstream.total_out != uncomp_len-8) |
113 | { | |
bb270c08 DB |
114 | printf("Size mismatch (%d != %d), updating header...\n", |
115 | zstream.total_out, uncomp_len-8); | |
f7599d5f | 116 | |
bb270c08 DB |
117 | buf_in[0] = (zstream.total_out+8) & 0xff; |
118 | buf_in[1] = (zstream.total_out+8 >> 8) & 0xff; | |
119 | buf_in[2] = (zstream.total_out+8 >> 16) & 0xff; | |
120 | buf_in[3] = (zstream.total_out+8 >> 24) & 0xff; | |
115329f1 | 121 | |
bb270c08 DB |
122 | lseek(fd_out, 4, SEEK_SET); |
123 | write(fd_out, &buf_in, 4); | |
f7599d5f | 124 | } |
115329f1 | 125 | |
f7599d5f AB |
126 | inflateEnd(&zstream); |
127 | close(fd_in); | |
128 | close(fd_out); | |
226cbe07 | 129 | return 0; |
f7599d5f | 130 | } |