]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavcodec/shorten.c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
[frescor/ffmpeg.git] / libavcodec / shorten.c
1 /*
2  * Shorten decoder
3  * Copyright (c) 2005 Jeff Muizelaar
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 /**
23  * @file shorten.c
24  * Shorten decoder
25  * @author Jeff Muizelaar
26  *
27  */
28
29 #define DEBUG
30 #include <limits.h>
31 #include "avcodec.h"
32 #include "bitstream.h"
33 #include "golomb.h"
34
35 #define MAX_CHANNELS 8
36 #define MAX_BLOCKSIZE 65535
37
38 #define OUT_BUFFER_SIZE 16384
39
40 #define ULONGSIZE 2
41
42 #define WAVE_FORMAT_PCM 0x0001
43
44 #define DEFAULT_BLOCK_SIZE 256
45
46 #define TYPESIZE 4
47 #define CHANSIZE 0
48 #define LPCQSIZE 2
49 #define ENERGYSIZE 3
50 #define BITSHIFTSIZE 2
51
52 #define TYPE_S16HL 3
53 #define TYPE_S16LH 5
54
55 #define NWRAP 3
56 #define NSKIPSIZE 1
57
58 #define LPCQUANT 5
59 #define V2LPCQOFFSET (1 << LPCQUANT)
60
61 #define FNSIZE 2
62 #define FN_DIFF0        0
63 #define FN_DIFF1        1
64 #define FN_DIFF2        2
65 #define FN_DIFF3        3
66 #define FN_QUIT         4
67 #define FN_BLOCKSIZE    5
68 #define FN_BITSHIFT     6
69 #define FN_QLPC         7
70 #define FN_ZERO         8
71 #define FN_VERBATIM     9
72
73 #define VERBATIM_CKSIZE_SIZE 5
74 #define VERBATIM_BYTE_SIZE 8
75 #define CANONICAL_HEADER_SIZE 44
76
77 typedef struct ShortenContext {
78     AVCodecContext *avctx;
79     GetBitContext gb;
80
81     int min_framesize, max_framesize;
82     int channels;
83
84     int32_t *decoded[MAX_CHANNELS];
85     int32_t *offset[MAX_CHANNELS];
86     uint8_t *bitstream;
87     int bitstream_size;
88     int bitstream_index;
89     unsigned int allocated_bitstream_size;
90     int header_size;
91     uint8_t header[OUT_BUFFER_SIZE];
92     int version;
93     int cur_chan;
94     int bitshift;
95     int nmean;
96     int internal_ftype;
97     int nwrap;
98     int blocksize;
99     int bitindex;
100     int32_t lpcqoffset;
101 } ShortenContext;
102
103 static int shorten_decode_init(AVCodecContext * avctx)
104 {
105     ShortenContext *s = avctx->priv_data;
106     s->avctx = avctx;
107
108     return 0;
109 }
110
111 static int allocate_buffers(ShortenContext *s)
112 {
113     int i, chan;
114     for (chan=0; chan<s->channels; chan++) {
115         if(FFMAX(1, s->nmean) >= UINT_MAX/sizeof(int32_t)){
116             av_log(s->avctx, AV_LOG_ERROR, "nmean too large\n");
117             return -1;
118         }
119         if(s->blocksize + s->nwrap >= UINT_MAX/sizeof(int32_t) || s->blocksize + s->nwrap <= (unsigned)s->nwrap){
120             av_log(s->avctx, AV_LOG_ERROR, "s->blocksize + s->nwrap too large\n");
121             return -1;
122         }
123
124         s->offset[chan] = av_realloc(s->offset[chan], sizeof(int32_t)*FFMAX(1, s->nmean));
125
126         s->decoded[chan] = av_realloc(s->decoded[chan], sizeof(int32_t)*(s->blocksize + s->nwrap));
127         for (i=0; i<s->nwrap; i++)
128             s->decoded[chan][i] = 0;
129         s->decoded[chan] += s->nwrap;
130     }
131     return 0;
132 }
133
134
135 static inline unsigned int get_uint(ShortenContext *s, int k)
136 {
137     if (s->version != 0)
138         k = get_ur_golomb_shorten(&s->gb, ULONGSIZE);
139     return get_ur_golomb_shorten(&s->gb, k);
140 }
141
142
143 static void fix_bitshift(ShortenContext *s, int32_t *buffer)
144 {
145     int i;
146
147     if (s->bitshift != 0)
148         for (i = 0; i < s->blocksize; i++)
149             buffer[s->nwrap + i] <<= s->bitshift;
150 }
151
152
153 static void init_offset(ShortenContext *s)
154 {
155     int32_t mean = 0;
156     int  chan, i;
157     int nblock = FFMAX(1, s->nmean);
158     /* initialise offset */
159     switch (s->internal_ftype)
160     {
161         case TYPE_S16HL:
162         case TYPE_S16LH:
163             mean = 0;
164             break;
165         default:
166             av_log(s->avctx, AV_LOG_ERROR, "unknown audio type");
167             abort();
168     }
169
170     for (chan = 0; chan < s->channels; chan++)
171         for (i = 0; i < nblock; i++)
172             s->offset[chan][i] = mean;
173 }
174
175 static int inline get_le32(GetBitContext *gb)
176 {
177     return bswap_32(get_bits_long(gb, 32));
178 }
179
180 static short inline get_le16(GetBitContext *gb)
181 {
182     return bswap_16(get_bits_long(gb, 16));
183 }
184
185 static int decode_wave_header(AVCodecContext *avctx, uint8_t *header, int header_size)
186 {
187     GetBitContext hb;
188     int len;
189     int chunk_size;
190     short wave_format;
191
192     init_get_bits(&hb, header, header_size*8);
193     if (get_le32(&hb) != MKTAG('R','I','F','F')) {
194         av_log(avctx, AV_LOG_ERROR, "missing RIFF tag\n");
195         return -1;
196     }
197
198     chunk_size = get_le32(&hb);
199
200     if (get_le32(&hb) != MKTAG('W','A','V','E')) {
201         av_log(avctx, AV_LOG_ERROR, "missing WAVE tag\n");
202         return -1;
203     }
204
205     while (get_le32(&hb) != MKTAG('f','m','t',' ')) {
206         len = get_le32(&hb);
207         skip_bits(&hb, 8*len);
208     }
209     len = get_le32(&hb);
210
211     if (len < 16) {
212         av_log(avctx, AV_LOG_ERROR, "fmt chunk was too short\n");
213         return -1;
214     }
215
216     wave_format = get_le16(&hb);
217
218     switch (wave_format) {
219         case WAVE_FORMAT_PCM:
220             break;
221         default:
222             av_log(avctx, AV_LOG_ERROR, "unsupported wave format\n");
223             return -1;
224     }
225
226     avctx->channels = get_le16(&hb);
227     avctx->sample_rate = get_le32(&hb);
228     avctx->bit_rate = get_le32(&hb) * 8;
229     avctx->block_align = get_le16(&hb);
230     avctx->bits_per_sample = get_le16(&hb);
231
232     if (avctx->bits_per_sample != 16) {
233         av_log(avctx, AV_LOG_ERROR, "unsupported number of bits per sample\n");
234         return -1;
235     }
236
237     len -= 16;
238     if (len > 0)
239         av_log(avctx, AV_LOG_INFO, "%d header bytes unparsed\n", len);
240
241     return 0;
242 }
243
244 static int16_t * interleave_buffer(int16_t *samples, int nchan, int blocksize, int32_t **buffer) {
245     int i, chan;
246     for (i=0; i<blocksize; i++)
247         for (chan=0; chan < nchan; chan++)
248             *samples++ = FFMIN(buffer[chan][i], 32768);
249     return samples;
250 }
251
252 static void decode_subframe_lpc(ShortenContext *s, int channel, int residual_size, int pred_order)
253 {
254     int sum, i, j;
255     int coeffs[pred_order];
256
257     for (i=0; i<pred_order; i++)
258         coeffs[i] = get_sr_golomb_shorten(&s->gb, LPCQUANT);
259
260     for (i=0; i < s->blocksize; i++) {
261         sum = s->lpcqoffset;
262         for (j=0; j<pred_order; j++)
263             sum += coeffs[j] * s->decoded[channel][i-j-1];
264         s->decoded[channel][i] = get_sr_golomb_shorten(&s->gb, residual_size) + (sum >> LPCQUANT);
265     }
266 }
267
268
269 static int shorten_decode_frame(AVCodecContext *avctx,
270         void *data, int *data_size,
271         uint8_t *buf, int buf_size)
272 {
273     ShortenContext *s = avctx->priv_data;
274     int i, input_buf_size = 0;
275     int16_t *samples = data;
276     if(s->max_framesize == 0){
277         s->max_framesize= 1024; // should hopefully be enough for the first header
278         s->bitstream= av_fast_realloc(s->bitstream, &s->allocated_bitstream_size, s->max_framesize);
279     }
280
281     if(1 && s->max_framesize){//FIXME truncated
282         buf_size= FFMIN(buf_size, s->max_framesize - s->bitstream_size);
283         input_buf_size= buf_size;
284
285         if(s->bitstream_index + s->bitstream_size + buf_size > s->allocated_bitstream_size){
286             //                printf("memmove\n");
287             memmove(s->bitstream, &s->bitstream[s->bitstream_index], s->bitstream_size);
288             s->bitstream_index=0;
289         }
290         memcpy(&s->bitstream[s->bitstream_index + s->bitstream_size], buf, buf_size);
291         buf= &s->bitstream[s->bitstream_index];
292         buf_size += s->bitstream_size;
293         s->bitstream_size= buf_size;
294
295         if(buf_size < s->max_framesize){
296             //dprintf("wanna more data ... %d\n", buf_size);
297             return input_buf_size;
298         }
299     }
300     init_get_bits(&s->gb, buf, buf_size*8);
301     get_bits(&s->gb, s->bitindex);
302     if (!s->blocksize)
303     {
304         int maxnlpc = 0;
305         /* shorten signature */
306         if (get_bits_long(&s->gb, 32) != bswap_32(ff_get_fourcc("ajkg"))) {
307             av_log(s->avctx, AV_LOG_ERROR, "missing shorten magic 'ajkg'\n");
308             return -1;
309         }
310
311         s->lpcqoffset = 0;
312         s->blocksize = DEFAULT_BLOCK_SIZE;
313         s->channels = 1;
314         s->nmean = -1;
315         s->version = get_bits(&s->gb, 8);
316         s->internal_ftype = get_uint(s, TYPESIZE);
317
318         s->channels = get_uint(s, CHANSIZE);
319         if (s->channels > MAX_CHANNELS) {
320             av_log(s->avctx, AV_LOG_ERROR, "too many channels: %d\n", s->channels);
321             return -1;
322         }
323
324         /* get blocksize if version > 0 */
325         if (s->version > 0) {
326             int skip_bytes;
327             s->blocksize = get_uint(s, av_log2(DEFAULT_BLOCK_SIZE));
328             maxnlpc = get_uint(s, LPCQSIZE);
329             s->nmean = get_uint(s, 0);
330
331             skip_bytes = get_uint(s, NSKIPSIZE);
332             for (i=0; i<skip_bytes; i++) {
333                 skip_bits(&s->gb, 8);
334             }
335         }
336         s->nwrap = FFMAX(NWRAP, maxnlpc);
337
338         allocate_buffers(s);
339
340         init_offset(s);
341
342         if (s->version > 1)
343             s->lpcqoffset = V2LPCQOFFSET;
344
345         if (get_ur_golomb_shorten(&s->gb, FNSIZE) != FN_VERBATIM) {
346             av_log(s->avctx, AV_LOG_ERROR, "missing verbatim section at begining of stream\n");
347             return -1;
348         }
349
350         s->header_size = get_ur_golomb_shorten(&s->gb, VERBATIM_CKSIZE_SIZE);
351         if (s->header_size >= OUT_BUFFER_SIZE || s->header_size < CANONICAL_HEADER_SIZE) {
352             av_log(s->avctx, AV_LOG_ERROR, "header is wrong size: %d\n", s->header_size);
353             return -1;
354         }
355
356         for (i=0; i<s->header_size; i++)
357             s->header[i] = (char)get_ur_golomb_shorten(&s->gb, VERBATIM_BYTE_SIZE);
358
359         if (decode_wave_header(avctx, s->header, s->header_size) < 0)
360             return -1;
361
362         s->cur_chan = 0;
363         s->bitshift = 0;
364     }
365     else
366     {
367         int cmd;
368         int len;
369         cmd = get_ur_golomb_shorten(&s->gb, FNSIZE);
370         switch (cmd) {
371             case FN_ZERO:
372             case FN_DIFF0:
373             case FN_DIFF1:
374             case FN_DIFF2:
375             case FN_DIFF3:
376             case FN_QLPC:
377                 {
378                     int residual_size = 0;
379                     int channel = s->cur_chan;
380                     int32_t coffset;
381                     if (cmd != FN_ZERO) {
382                         residual_size = get_ur_golomb_shorten(&s->gb, ENERGYSIZE);
383                         /* this is a hack as version 0 differed in defintion of get_sr_golomb_shorten */
384                         if (s->version == 0)
385                             residual_size--;
386                     }
387
388                     if (s->nmean == 0)
389                         coffset = s->offset[channel][0];
390                     else {
391                         int32_t sum = (s->version < 2) ? 0 : s->nmean / 2;
392                         for (i=0; i<s->nmean; i++)
393                             sum += s->offset[channel][i];
394                         coffset = sum / s->nmean;
395                         if (s->version >= 2)
396                             coffset >>= FFMIN(1, s->bitshift);
397                     }
398                     switch (cmd) {
399                         case FN_ZERO:
400                             for (i=0; i<s->blocksize; i++)
401                                 s->decoded[channel][i] = 0;
402                             break;
403                         case FN_DIFF0:
404                             for (i=0; i<s->blocksize; i++)
405                                 s->decoded[channel][i] = get_sr_golomb_shorten(&s->gb, residual_size) + coffset;
406                             break;
407                         case FN_DIFF1:
408                             for (i=0; i<s->blocksize; i++)
409                                 s->decoded[channel][i] = get_sr_golomb_shorten(&s->gb, residual_size) + s->decoded[channel][i - 1];
410                             break;
411                         case FN_DIFF2:
412                             for (i=0; i<s->blocksize; i++)
413                                 s->decoded[channel][i] = get_sr_golomb_shorten(&s->gb, residual_size) + 2*s->decoded[channel][i-1]
414                                                                                                       -   s->decoded[channel][i-2];
415                             break;
416                         case FN_DIFF3:
417                             for (i=0; i<s->blocksize; i++)
418                                 s->decoded[channel][i] = get_sr_golomb_shorten(&s->gb, residual_size) + 3*s->decoded[channel][i-1]
419                                                                                                       - 3*s->decoded[channel][i-2]
420                                                                                                       +   s->decoded[channel][i-3];
421                             break;
422                         case FN_QLPC:
423                             {
424                                 int pred_order = get_ur_golomb_shorten(&s->gb, LPCQSIZE);
425                                 for (i=0; i<pred_order; i++)
426                                     s->decoded[channel][i - pred_order] -= coffset;
427                                 decode_subframe_lpc(s, channel, residual_size, pred_order);
428                                 if (coffset != 0)
429                                     for (i=0; i < s->blocksize; i++)
430                                         s->decoded[channel][i] += coffset;
431                             }
432                     }
433                     if (s->nmean > 0) {
434                         int32_t sum = (s->version < 2) ? 0 : s->blocksize / 2;
435                         for (i=0; i<s->blocksize; i++)
436                             sum += s->decoded[channel][i];
437
438                         for (i=1; i<s->nmean; i++)
439                             s->offset[channel][i-1] = s->offset[channel][i];
440
441                         if (s->version < 2)
442                             s->offset[channel][s->nmean - 1] = sum / s->blocksize;
443                         else
444                             s->offset[channel][s->nmean - 1] = (sum / s->blocksize) << s->bitshift;
445                     }
446                     for (i=-s->nwrap; i<0; i++)
447                         s->decoded[channel][i] = s->decoded[channel][i + s->blocksize];
448
449                     fix_bitshift(s, s->decoded[channel]);
450
451                     s->cur_chan++;
452                     if (s->cur_chan == s->channels) {
453                         samples = interleave_buffer(samples, s->channels, s->blocksize, s->decoded);
454                         s->cur_chan = 0;
455                         goto frame_done;
456                     }
457                     break;
458                 }
459                 break;
460             case FN_VERBATIM:
461                 len = get_ur_golomb_shorten(&s->gb, VERBATIM_CKSIZE_SIZE);
462                 while (len--) {
463                     get_ur_golomb_shorten(&s->gb, VERBATIM_BYTE_SIZE);
464                 }
465                 break;
466             case FN_BITSHIFT:
467                 s->bitshift = get_ur_golomb_shorten(&s->gb, BITSHIFTSIZE);
468                 break;
469             case FN_BLOCKSIZE:
470                 s->blocksize = get_uint(s, av_log2(s->blocksize));
471                 break;
472             case FN_QUIT:
473                 return buf_size;
474                 break;
475             default:
476                 av_log(avctx, AV_LOG_ERROR, "unknown shorten function %d\n", cmd);
477                 return -1;
478                 break;
479         }
480     }
481 frame_done:
482     *data_size = (int8_t *)samples - (int8_t *)data;
483
484     //    s->last_blocksize = s->blocksize;
485     s->bitindex = get_bits_count(&s->gb) - 8*((get_bits_count(&s->gb))/8);
486     i= (get_bits_count(&s->gb))/8;
487     if (i > buf_size) {
488         av_log(s->avctx, AV_LOG_ERROR, "overread: %d\n", i - buf_size);
489         s->bitstream_size=0;
490         s->bitstream_index=0;
491         return -1;
492     }
493     if (s->bitstream_size) {
494         s->bitstream_index += i;
495         s->bitstream_size  -= i;
496         return input_buf_size;
497     } else
498         return i;
499 }
500
501 static int shorten_decode_close(AVCodecContext *avctx)
502 {
503     ShortenContext *s = avctx->priv_data;
504     int i;
505
506     for (i = 0; i < s->channels; i++) {
507         s->decoded[i] -= s->nwrap;
508         av_freep(&s->decoded[i]);
509         av_freep(&s->offset[i]);
510     }
511     av_freep(&s->bitstream);
512     return 0;
513 }
514
515 static void shorten_flush(AVCodecContext *avctx){
516     ShortenContext *s = avctx->priv_data;
517
518     s->bitstream_size=
519         s->bitstream_index= 0;
520 }
521
522 AVCodec shorten_decoder = {
523     "shorten",
524     CODEC_TYPE_AUDIO,
525     CODEC_ID_SHORTEN,
526     sizeof(ShortenContext),
527     shorten_decode_init,
528     NULL,
529     shorten_decode_close,
530     shorten_decode_frame,
531     .flush= shorten_flush,
532 };