lzo.c 6.66 KB
Newer Older
1 2 3 4
/*
 * LZO 1x decompression
 * Copyright (c) 2006 Reimar Doeffinger
 *
5 6 7
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
8 9
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
10
 * version 2.1 of the License, or (at your option) any later version.
11
 *
12
 * FFmpeg is distributed in the hope that it will be useful,
13 14 15 16 17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
18
 * License along with FFmpeg; if not, write to the Free Software
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20
 */
21

22 23
#include <string.h>

24
#include "avutil.h"
25
#include "common.h"
26
#include "intreadwrite.h"
27 28
#include "lzo.h"

29
/// Define if we may write up to 12 bytes beyond the output buffer.
30
#define OUTBUF_PADDED 1
31
/// Define if we may read up to 8 bytes beyond the input buffer.
32
#define INBUF_PADDED 1
33

34
typedef struct LZOContext {
35
    const uint8_t *in, *in_end;
36
    uint8_t *out_start, *out, *out_end;
37 38 39 40
    int error;
} LZOContext;

/**
41 42
 * @brief Reads one byte from the input buffer, avoiding an overrun.
 * @return byte read
43
 */
44 45
static inline int get_byte(LZOContext *c)
{
46 47
    if (c->in < c->in_end)
        return *c->in++;
48
    c->error |= AV_LZO_INPUT_DEPLETED;
49
    return 1;
50 51
}

52 53 54 55 56 57
#ifdef INBUF_PADDED
#define GETB(c) (*(c).in++)
#else
#define GETB(c) get_byte(&(c))
#endif

58
/**
59 60 61 62
 * @brief Decodes a length value in the coding used by lzo.
 * @param x previous byte value
 * @param mask bits used from x
 * @return decoded length value
63
 */
64 65
static inline int get_len(LZOContext *c, int x, int mask)
{
66 67
    int cnt = x & mask;
    if (!cnt) {
68 69
        while (!(x = get_byte(c)))
            cnt += 255;
70 71 72 73 74 75
        cnt += mask + x;
    }
    return cnt;
}

/**
76 77
 * @brief Copies bytes from input to output buffer with checking.
 * @param cnt number of bytes to copy, must be >= 0
78
 */
79 80
static inline void copy(LZOContext *c, int cnt)
{
81
    register const uint8_t *src = c->in;
82
    register uint8_t *dst       = c->out;
83
    if (cnt > c->in_end - src) {
84
        cnt       = FFMAX(c->in_end - src, 0);
85
        c->error |= AV_LZO_INPUT_DEPLETED;
86
    }
87
    if (cnt > c->out_end - dst) {
88
        cnt       = FFMAX(c->out_end - dst, 0);
89
        c->error |= AV_LZO_OUTPUT_FULL;
90
    }
91
#if defined(INBUF_PADDED) && defined(OUTBUF_PADDED)
92
    AV_COPY32U(dst, src);
93 94 95 96 97
    src += 4;
    dst += 4;
    cnt -= 4;
    if (cnt > 0)
#endif
98 99
    memcpy(dst, src, cnt);
    c->in  = src + cnt;
100
    c->out = dst + cnt;
101 102 103
}

/**
104
 * @brief Copies previously decoded bytes to current position.
105
 * @param back how many bytes back we start, must be > 0
106
 * @param cnt number of bytes to copy, must be >= 0
107
 *
108 109
 * cnt > back is valid, this will copy the bytes we just copied,
 * thus creating a repeating pattern with a period length of back.
110
 */
111 112 113
static inline void copy_backptr(LZOContext *c, int back, int cnt)
{
    register uint8_t *dst       = c->out;
114
    if (dst - c->out_start < back) {
115
        c->error |= AV_LZO_INVALID_BACKPTR;
116 117
        return;
    }
118
    if (cnt > c->out_end - dst) {
119
        cnt       = FFMAX(c->out_end - dst, 0);
120
        c->error |= AV_LZO_OUTPUT_FULL;
121
    }
122
    av_memcpy_backptr(dst, back, cnt);
123 124 125
    c->out = dst + cnt;
}

126 127 128
int av_lzo1x_decode(void *out, int *outlen, const void *in, int *inlen)
{
    int state = 0;
129 130
    int x;
    LZOContext c;
131
    if (*outlen <= 0 || *inlen <= 0) {
132
        int res = 0;
133
        if (*outlen <= 0)
134
            res |= AV_LZO_OUTPUT_FULL;
135
        if (*inlen <= 0)
136 137 138
            res |= AV_LZO_INPUT_DEPLETED;
        return res;
    }
139 140 141 142 143 144
    c.in      = in;
    c.in_end  = (const uint8_t *)in + *inlen;
    c.out     = c.out_start = out;
    c.out_end = (uint8_t *)out + *outlen;
    c.error   = 0;
    x         = GETB(c);
145 146
    if (x > 17) {
        copy(&c, x - 17);
147
        x = GETB(c);
148 149
        if (x < 16)
            c.error |= AV_LZO_ERROR;
150
    }
151
    if (c.in > c.in_end)
152
        c.error |= AV_LZO_INPUT_DEPLETED;
153 154
    while (!c.error) {
        int cnt, back;
155 156
        if (x > 15) {
            if (x > 63) {
157
                cnt  = (x >> 5) - 1;
158
                back = (GETB(c) << 3) + ((x >> 2) & 7) + 1;
159
            } else if (x > 31) {
160 161
                cnt  = get_len(&c, x, 31);
                x    = GETB(c);
162
                back = (GETB(c) << 6) + (x >> 2) + 1;
163
            } else {
164 165 166
                cnt   = get_len(&c, x, 7);
                back  = (1 << 14) + ((x & 8) << 11);
                x     = GETB(c);
167
                back += (GETB(c) << 6) + (x >> 2);
168 169
                if (back == (1 << 14)) {
                    if (cnt != 1)
170
                        c.error |= AV_LZO_ERROR;
171 172 173
                    break;
                }
            }
174 175 176 177 178 179 180 181
        } else if (!state) {
            cnt = get_len(&c, x, 15);
            copy(&c, cnt + 3);
            x = GETB(c);
            if (x > 15)
                continue;
            cnt  = 1;
            back = (1 << 11) + (GETB(c) << 2) + (x >> 2) + 1;
182
        } else {
183 184
            cnt  = 0;
            back = (GETB(c) << 2) + (x >> 2) + 1;
185 186
        }
        copy_backptr(&c, back, cnt + 2);
187 188
        state =
        cnt   = x & 3;
189
        copy(&c, cnt);
190
        x = GETB(c);
191 192
    }
    *inlen = c.in_end - c.in;
193 194
    if (c.in > c.in_end)
        *inlen = 0;
195 196 197
    *outlen = c.out_end - c.out;
    return c.error;
}
Reimar Döffinger's avatar
Reimar Döffinger committed
198 199 200 201 202 203

#ifdef TEST
#include <stdio.h>
#include <lzo/lzo1x.h>
#include "log.h"
#define MAXSZ (10*1024*1024)
204 205 206 207 208 209

/* Define one of these to 1 if you wish to benchmark liblzo
 * instead of our native implementation. */
#define BENCHMARK_LIBLZO_SAFE   0
#define BENCHMARK_LIBLZO_UNSAFE 0

Reimar Döffinger's avatar
Reimar Döffinger committed
210 211 212 213 214 215 216 217 218 219
int main(int argc, char *argv[]) {
    FILE *in = fopen(argv[1], "rb");
    uint8_t *orig = av_malloc(MAXSZ + 16);
    uint8_t *comp = av_malloc(2*MAXSZ + 16);
    uint8_t *decomp = av_malloc(MAXSZ + 16);
    size_t s = fread(orig, 1, MAXSZ, in);
    lzo_uint clen = 0;
    long tmp[LZO1X_MEM_COMPRESS];
    int inlen, outlen;
    int i;
220
    av_log_set_level(AV_LOG_DEBUG);
Reimar Döffinger's avatar
Reimar Döffinger committed
221 222 223 224
    lzo1x_999_compress(orig, s, comp, &clen, tmp);
    for (i = 0; i < 300; i++) {
START_TIMER
        inlen = clen; outlen = MAXSZ;
225
#if BENCHMARK_LIBLZO_SAFE
226
        if (lzo1x_decompress_safe(comp, inlen, decomp, &outlen, NULL))
227
#elif BENCHMARK_LIBLZO_UNSAFE
228 229
        if (lzo1x_decompress(comp, inlen, decomp, &outlen, NULL))
#else
230
        if (av_lzo1x_decode(decomp, &outlen, comp, &inlen))
231
#endif
Reimar Döffinger's avatar
Reimar Döffinger committed
232 233 234 235 236 237
            av_log(NULL, AV_LOG_ERROR, "decompression error\n");
STOP_TIMER("lzod")
    }
    if (memcmp(orig, decomp, s))
        av_log(NULL, AV_LOG_ERROR, "decompression incorrect\n");
    else
238
        av_log(NULL, AV_LOG_ERROR, "decompression OK\n");
Reimar Döffinger's avatar
Reimar Döffinger committed
239 240 241
    return 0;
}
#endif