cws2fws.c 3.09 KB
Newer Older
1
/*
2
 * cws2fws by Alex Beregszaszi
3 4
 * This file is placed in the public domain.
 * Use the program however you see fit.
5 6 7 8 9 10
 *
 * This utility converts compressed Macromedia Flash files to uncompressed ones.
 */

#include <sys/stat.h>
#include <fcntl.h>
11 12
#include <stdio.h>
#include <stdlib.h>
13 14 15 16 17 18
#include <unistd.h>
#include <zlib.h>

#ifdef DEBUG
#define dbgprintf printf
#else
Benoit Fouet's avatar
Benoit Fouet committed
19
#define dbgprintf(...)
20 21
#endif

22
int main(int argc, char *argv[])
23
{
Diego Biurrun's avatar
Diego Biurrun committed
24
    int fd_in, fd_out, comp_len, uncomp_len, i, last_out;
25
    char buf_in[1024], buf_out[65536];
26 27 28 29 30
    z_stream zstream;
    struct stat statbuf;

    if (argc < 3)
    {
31 32
        printf("Usage: %s <infile.swf> <outfile.swf>\n", argv[0]);
        exit(1);
33
    }
34

35 36 37
    fd_in = open(argv[1], O_RDONLY);
    if (fd_in < 0)
    {
38 39
        perror("Error while opening: ");
        exit(1);
40 41 42 43 44
    }

    fd_out = open(argv[2], O_WRONLY|O_CREAT, 00644);
    if (fd_out < 0)
    {
45 46 47
        perror("Error while opening: ");
        close(fd_in);
        exit(1);
48
    }
49

50 51
    if (read(fd_in, &buf_in, 8) != 8)
    {
52 53 54 55
        printf("Header error\n");
        close(fd_in);
        close(fd_out);
        exit(1);
56
    }
57

58 59
    if (buf_in[0] != 'C' || buf_in[1] != 'W' || buf_in[2] != 'S')
    {
60 61
        printf("Not a compressed flash file\n");
        exit(1);
62 63 64 65 66
    }

    fstat(fd_in, &statbuf);
    comp_len = statbuf.st_size;
    uncomp_len = buf_in[4] | (buf_in[5] << 8) | (buf_in[6] << 16) | (buf_in[7] << 24);
67

68 69 70 71 72 73 74 75 76 77
    printf("Compressed size: %d Uncompressed size: %d\n", comp_len-4, uncomp_len-4);

    // write out modified header
    buf_in[0] = 'F';
    write(fd_out, &buf_in, 8);

    zstream.zalloc = NULL;
    zstream.zfree = NULL;
    zstream.opaque = NULL;
    inflateInit(&zstream);
78

79
    for (i = 0; i < comp_len-8;)
80
    {
81
        int ret, len = read(fd_in, &buf_in, 1024);
82

83
        dbgprintf("read %d bytes\n", len);
84

85
        last_out = zstream.total_out;
86

87 88 89
        zstream.next_in = &buf_in[0];
        zstream.avail_in = len;
        zstream.next_out = &buf_out[0];
90
        zstream.avail_out = 65536;
91

92
        ret = inflate(&zstream, Z_SYNC_FLUSH);
93
        if (ret != Z_STREAM_END && ret != Z_OK)
94 95 96 97 98
        {
            printf("Error while decompressing: %d\n", ret);
            inflateEnd(&zstream);
            exit(1);
        }
99

Benoit Fouet's avatar
Benoit Fouet committed
100
        dbgprintf("a_in: %d t_in: %lu a_out: %d t_out: %lu -- %lu out\n",
101 102
            zstream.avail_in, zstream.total_in, zstream.avail_out, zstream.total_out,
            zstream.total_out-last_out);
103

104
        write(fd_out, &buf_out, zstream.total_out-last_out);
105

106
        i += len;
107 108 109

        if (ret == Z_STREAM_END || ret == Z_BUF_ERROR)
            break;
110
    }
111

112 113
    if (zstream.total_out != uncomp_len-8)
    {
Benoit Fouet's avatar
Benoit Fouet committed
114
        printf("Size mismatch (%lu != %d), updating header...\n",
115
            zstream.total_out, uncomp_len-8);
116

117
        buf_in[0] = (zstream.total_out+8) & 0xff;
Benoit Fouet's avatar
Benoit Fouet committed
118 119 120
        buf_in[1] = ((zstream.total_out+8) >> 8) & 0xff;
        buf_in[2] = ((zstream.total_out+8) >> 16) & 0xff;
        buf_in[3] = ((zstream.total_out+8) >> 24) & 0xff;
121

122 123
        lseek(fd_out, 4, SEEK_SET);
        write(fd_out, &buf_in, 4);
124
    }
125

126 127 128
    inflateEnd(&zstream);
    close(fd_in);
    close(fd_out);
129
    return 0;
130
}