1 /*
2 * LZO 1x decompression
3 * Copyright (c) 2006 Reimar Doeffinger
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * 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 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * 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 #include <string.h>
23
29
30 /// Define if we may write up to 12 bytes beyond the output buffer.
31 #define OUTBUF_PADDED 1
32 /// Define if we may read up to 8 bytes beyond the input buffer.
33 #define INBUF_PADDED 1
34
40
41 /**
42 * @brief Reads one byte from the input buffer, avoiding an overrun.
43 * @return byte read
44 */
46 {
50 return 1;
51 }
52
53 #ifdef INBUF_PADDED
54 #define GETB(c) (*(c).in++)
55 #else
56 #define GETB(c) get_byte(&(c))
57 #endif
58
59 /**
60 * @brief Decodes a length value in the coding used by lzo.
61 * @param x previous byte value
62 * @param mask bits used from x
63 * @return decoded length value
64 */
66 {
68 if (!cnt) {
70 if (cnt >= INT_MAX - 1000) {
72 break;
73 }
74 cnt += 255;
75 }
76 cnt += mask + x;
77 }
78 return cnt;
79 }
80
81 /**
82 * @brief Copies bytes from input to output buffer with checking.
83 * @param cnt number of bytes to copy, must be >= 0
84 */
86 {
90 if (cnt > c->
in_end - src) {
93 }
97 }
98 #if defined(INBUF_PADDED) && defined(OUTBUF_PADDED)
100 src += 4;
101 dst += 4;
102 cnt -= 4;
103 if (cnt > 0)
104 #endif
105 memcpy(dst, src, cnt);
108 }
109
110 /**
111 * @brief Copies previously decoded bytes to current position.
112 * @param back how many bytes back we start, must be > 0
113 * @param cnt number of bytes to copy, must be > 0
114 *
115 * cnt > back is valid, this will copy the bytes we just copied,
116 * thus creating a repeating pattern with a period length of back.
117 */
119 {
124 return;
125 }
129 }
132 }
133
135 {
137 int x;
139 if (*outlen <= 0 || *inlen <= 0) {
140 int res = 0;
141 if (*outlen <= 0)
143 if (*inlen <= 0)
145 return res;
146 }
153 if (x > 17) {
156 if (x < 16)
158 }
162 int cnt, back;
163 if (x > 15) {
164 if (x > 63) {
165 cnt = (x >> 5) - 1;
166 back = (
GETB(c) << 3) + ((x >> 2) & 7) + 1;
167 } else if (x > 31) {
170 back = (
GETB(c) << 6) + (x >> 2) + 1;
171 } else {
173 back = (1 << 14) + ((x & 8) << 11);
175 back += (
GETB(c) << 6) + (x >> 2);
176 if (back == (1 << 14)) {
177 if (cnt != 1)
179 break;
180 }
181 }
182 } else if (!state) {
186 if (x > 15)
187 continue;
188 cnt = 1;
189 back = (1 << 11) + (
GETB(c) << 2) + (x >> 2) + 1;
190 } else {
191 cnt = 0;
192 back = (
GETB(c) << 2) + (x >> 2) + 1;
193 }
195 state =
196 cnt = x & 3;
199 }
202 *inlen = 0;
205 }
#define AV_LZO_ERROR
a non-specific error in the compressed bitstream
static int get_len(LZOContext *c, int x, int mask)
Decodes a length value in the coding used by lzo.
Convenience header that includes libavutil's core.
#define AV_LZO_OUTPUT_FULL
decoded data did not fit into output buffer
#define av_assert0(cond)
assert() equivalent, that is always enabled.
void av_memcpy_backptr(uint8_t *dst, int back, int cnt)
Overlapping memcpy() implementation.
static void copy(LZOContext *c, int cnt)
Copies bytes from input to output buffer with checking.
static const uint16_t mask[17]
simple assert() macros that are a bit more flexible than ISO C assert().
static void copy_backptr(LZOContext *c, int back, int cnt)
Copies previously decoded bytes to current position.
int av_lzo1x_decode(void *out, int *outlen, const void *in, int *inlen)
Decodes LZO 1x compressed data.
#define AV_LZO_INPUT_DEPLETED
end of the input buffer reached before decoding finished
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> in
common internal and external API header
#define AV_LZO_INVALID_BACKPTR
a reference to previously decoded data was wrong
static int get_byte(LZOContext *c)
Reads one byte from the input buffer, avoiding an overrun.