]> git.sesse.net Git - ffmpeg/blob - libavcodec/shorten.c
8svx: fix memleak in iff-fibonacci fate test.
[ffmpeg] / 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
24  * Shorten decoder
25  * @author Jeff Muizelaar
26  *
27  */
28
29 #include <limits.h>
30 #include "avcodec.h"
31 #include "bytestream.h"
32 #include "get_bits.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 /** indicates if the FN_* command is audio or non-audio */
74 static const uint8_t is_audio_command[10] = { 1, 1, 1, 1, 0, 0, 0, 1, 1, 0 };
75
76 #define VERBATIM_CKSIZE_SIZE 5
77 #define VERBATIM_BYTE_SIZE 8
78 #define CANONICAL_HEADER_SIZE 44
79
80 typedef struct ShortenContext {
81     AVCodecContext *avctx;
82     AVFrame frame;
83     GetBitContext gb;
84
85     int min_framesize, max_framesize;
86     int channels;
87
88     int32_t *decoded[MAX_CHANNELS];
89     int32_t *decoded_base[MAX_CHANNELS];
90     int32_t *offset[MAX_CHANNELS];
91     int *coeffs;
92     uint8_t *bitstream;
93     int bitstream_size;
94     int bitstream_index;
95     unsigned int allocated_bitstream_size;
96     int header_size;
97     uint8_t header[OUT_BUFFER_SIZE];
98     int version;
99     int cur_chan;
100     int bitshift;
101     int nmean;
102     int internal_ftype;
103     int nwrap;
104     int blocksize;
105     int bitindex;
106     int32_t lpcqoffset;
107     int got_header;
108     int got_quit_command;
109 } ShortenContext;
110
111 static av_cold int shorten_decode_init(AVCodecContext * avctx)
112 {
113     ShortenContext *s = avctx->priv_data;
114     s->avctx = avctx;
115     avctx->sample_fmt = AV_SAMPLE_FMT_S16;
116
117     avcodec_get_frame_defaults(&s->frame);
118     avctx->coded_frame = &s->frame;
119
120     return 0;
121 }
122
123 static int allocate_buffers(ShortenContext *s)
124 {
125     int i, chan;
126     int *coeffs;
127     void *tmp_ptr;
128
129     for (chan=0; chan<s->channels; chan++) {
130         if(FFMAX(1, s->nmean) >= UINT_MAX/sizeof(int32_t)){
131             av_log(s->avctx, AV_LOG_ERROR, "nmean too large\n");
132             return -1;
133         }
134         if(s->blocksize + s->nwrap >= UINT_MAX/sizeof(int32_t) || s->blocksize + s->nwrap <= (unsigned)s->nwrap){
135             av_log(s->avctx, AV_LOG_ERROR, "s->blocksize + s->nwrap too large\n");
136             return -1;
137         }
138
139         tmp_ptr = av_realloc(s->offset[chan], sizeof(int32_t)*FFMAX(1, s->nmean));
140         if (!tmp_ptr)
141             return AVERROR(ENOMEM);
142         s->offset[chan] = tmp_ptr;
143
144         tmp_ptr = av_realloc(s->decoded_base[chan], sizeof(int32_t)*(s->blocksize + s->nwrap));
145         if (!tmp_ptr)
146             return AVERROR(ENOMEM);
147         s->decoded_base[chan] = tmp_ptr;
148         for (i=0; i<s->nwrap; i++)
149             s->decoded_base[chan][i] = 0;
150         s->decoded[chan] = s->decoded_base[chan] + s->nwrap;
151     }
152
153     coeffs = av_realloc(s->coeffs, s->nwrap * sizeof(*s->coeffs));
154     if (!coeffs)
155         return AVERROR(ENOMEM);
156     s->coeffs = coeffs;
157
158     return 0;
159 }
160
161
162 static inline unsigned int get_uint(ShortenContext *s, int k)
163 {
164     if (s->version != 0)
165         k = get_ur_golomb_shorten(&s->gb, ULONGSIZE);
166     return get_ur_golomb_shorten(&s->gb, k);
167 }
168
169
170 static void fix_bitshift(ShortenContext *s, int32_t *buffer)
171 {
172     int i;
173
174     if (s->bitshift != 0)
175         for (i = 0; i < s->blocksize; i++)
176             buffer[i] <<= s->bitshift;
177 }
178
179
180 static int init_offset(ShortenContext *s)
181 {
182     int32_t mean = 0;
183     int  chan, i;
184     int nblock = FFMAX(1, s->nmean);
185     /* initialise offset */
186     switch (s->internal_ftype)
187     {
188         case TYPE_S16HL:
189         case TYPE_S16LH:
190             mean = 0;
191             break;
192         default:
193             av_log(s->avctx, AV_LOG_ERROR, "unknown audio type");
194             return AVERROR_INVALIDDATA;
195     }
196
197     for (chan = 0; chan < s->channels; chan++)
198         for (i = 0; i < nblock; i++)
199             s->offset[chan][i] = mean;
200     return 0;
201 }
202
203 static int decode_wave_header(AVCodecContext *avctx, const uint8_t *header,
204                               int header_size)
205 {
206     int len;
207     short wave_format;
208     const uint8_t *end= header + header_size;
209
210     if (bytestream_get_le32(&header) != MKTAG('R','I','F','F')) {
211         av_log(avctx, AV_LOG_ERROR, "missing RIFF tag\n");
212         return -1;
213     }
214
215     header += 4; /* chunk size */;
216
217     if (bytestream_get_le32(&header) != MKTAG('W','A','V','E')) {
218         av_log(avctx, AV_LOG_ERROR, "missing WAVE tag\n");
219         return -1;
220     }
221
222     while (bytestream_get_le32(&header) != MKTAG('f','m','t',' ')) {
223         len = bytestream_get_le32(&header);
224         if(len<0 || end - header - 8 < len)
225             return AVERROR_INVALIDDATA;
226         header += len;
227     }
228     len = bytestream_get_le32(&header);
229
230     if (len < 16) {
231         av_log(avctx, AV_LOG_ERROR, "fmt chunk was too short\n");
232         return -1;
233     }
234
235     wave_format = bytestream_get_le16(&header);
236
237     switch (wave_format) {
238         case WAVE_FORMAT_PCM:
239             break;
240         default:
241             av_log(avctx, AV_LOG_ERROR, "unsupported wave format\n");
242             return -1;
243     }
244
245     header += 2;        // skip channels    (already got from shorten header)
246     avctx->sample_rate = bytestream_get_le32(&header);
247     header += 4;        // skip bit rate    (represents original uncompressed bit rate)
248     header += 2;        // skip block align (not needed)
249     avctx->bits_per_coded_sample = bytestream_get_le16(&header);
250
251     if (avctx->bits_per_coded_sample != 16) {
252         av_log(avctx, AV_LOG_ERROR, "unsupported number of bits per sample\n");
253         return -1;
254     }
255
256     len -= 16;
257     if (len > 0)
258         av_log(avctx, AV_LOG_INFO, "%d header bytes unparsed\n", len);
259
260     return 0;
261 }
262
263 static void interleave_buffer(int16_t *samples, int nchan, int blocksize,
264                               int32_t **buffer)
265 {
266     int i, chan;
267     for (i=0; i<blocksize; i++)
268         for (chan=0; chan < nchan; chan++)
269             *samples++ = av_clip_int16(buffer[chan][i]);
270 }
271
272 static const int fixed_coeffs[3][3] = {
273     { 1,  0,  0 },
274     { 2, -1,  0 },
275     { 3, -3,  1 }
276 };
277
278 static int decode_subframe_lpc(ShortenContext *s, int command, int channel,
279                                int residual_size, int32_t coffset)
280 {
281     int pred_order, sum, qshift, init_sum, i, j;
282     const int *coeffs;
283
284     if (command == FN_QLPC) {
285         /* read/validate prediction order */
286         pred_order = get_ur_golomb_shorten(&s->gb, LPCQSIZE);
287         if (pred_order > s->nwrap) {
288             av_log(s->avctx, AV_LOG_ERROR, "invalid pred_order %d\n", pred_order);
289             return AVERROR(EINVAL);
290         }
291         /* read LPC coefficients */
292         for (i=0; i<pred_order; i++)
293             s->coeffs[i] = get_sr_golomb_shorten(&s->gb, LPCQUANT);
294         coeffs = s->coeffs;
295
296         qshift = LPCQUANT;
297     } else {
298         /* fixed LPC coeffs */
299         pred_order = command;
300         coeffs     = fixed_coeffs[pred_order-1];
301         qshift     = 0;
302     }
303
304     /* subtract offset from previous samples to use in prediction */
305     if (command == FN_QLPC && coffset)
306         for (i = -pred_order; i < 0; i++)
307             s->decoded[channel][i] -= coffset;
308
309     /* decode residual and do LPC prediction */
310     init_sum = pred_order ? (command == FN_QLPC ? s->lpcqoffset : 0) : coffset;
311     for (i=0; i < s->blocksize; i++) {
312         sum = init_sum;
313         for (j=0; j<pred_order; j++)
314             sum += coeffs[j] * s->decoded[channel][i-j-1];
315         s->decoded[channel][i] = get_sr_golomb_shorten(&s->gb, residual_size) + (sum >> qshift);
316     }
317
318     /* add offset to current samples */
319     if (command == FN_QLPC && coffset)
320         for (i = 0; i < s->blocksize; i++)
321             s->decoded[channel][i] += coffset;
322
323     return 0;
324 }
325
326 static int read_header(ShortenContext *s)
327 {
328     int i, ret;
329     int maxnlpc = 0;
330     /* shorten signature */
331     if (get_bits_long(&s->gb, 32) != AV_RB32("ajkg")) {
332         av_log(s->avctx, AV_LOG_ERROR, "missing shorten magic 'ajkg'\n");
333         return -1;
334     }
335
336     s->lpcqoffset = 0;
337     s->blocksize = DEFAULT_BLOCK_SIZE;
338     s->nmean = -1;
339     s->version = get_bits(&s->gb, 8);
340     s->internal_ftype = get_uint(s, TYPESIZE);
341
342     s->channels = get_uint(s, CHANSIZE);
343     if (s->channels > MAX_CHANNELS) {
344         av_log(s->avctx, AV_LOG_ERROR, "too many channels: %d\n", s->channels);
345         return -1;
346     }
347     s->avctx->channels = s->channels;
348
349     /* get blocksize if version > 0 */
350     if (s->version > 0) {
351         int skip_bytes, blocksize;
352
353         blocksize = get_uint(s, av_log2(DEFAULT_BLOCK_SIZE));
354         if (!blocksize || blocksize > MAX_BLOCKSIZE) {
355             av_log(s->avctx, AV_LOG_ERROR, "invalid or unsupported block size: %d\n",
356                    blocksize);
357             return AVERROR(EINVAL);
358         }
359         s->blocksize = blocksize;
360
361         maxnlpc = get_uint(s, LPCQSIZE);
362         s->nmean = get_uint(s, 0);
363
364         skip_bytes = get_uint(s, NSKIPSIZE);
365         for (i=0; i<skip_bytes; i++) {
366             skip_bits(&s->gb, 8);
367         }
368     }
369     s->nwrap = FFMAX(NWRAP, maxnlpc);
370
371     if ((ret = allocate_buffers(s)) < 0)
372         return ret;
373
374     if ((ret = init_offset(s)) < 0)
375         return ret;
376
377     if (s->version > 1)
378         s->lpcqoffset = V2LPCQOFFSET;
379
380     if (get_ur_golomb_shorten(&s->gb, FNSIZE) != FN_VERBATIM) {
381         av_log(s->avctx, AV_LOG_ERROR, "missing verbatim section at beginning of stream\n");
382         return -1;
383     }
384
385     s->header_size = get_ur_golomb_shorten(&s->gb, VERBATIM_CKSIZE_SIZE);
386     if (s->header_size >= OUT_BUFFER_SIZE || s->header_size < CANONICAL_HEADER_SIZE) {
387         av_log(s->avctx, AV_LOG_ERROR, "header is wrong size: %d\n", s->header_size);
388         return -1;
389     }
390
391     for (i=0; i<s->header_size; i++)
392         s->header[i] = (char)get_ur_golomb_shorten(&s->gb, VERBATIM_BYTE_SIZE);
393
394     if (decode_wave_header(s->avctx, s->header, s->header_size) < 0)
395         return -1;
396
397     s->cur_chan = 0;
398     s->bitshift = 0;
399
400     s->got_header = 1;
401
402     return 0;
403 }
404
405 static int shorten_decode_frame(AVCodecContext *avctx, void *data,
406                                 int *got_frame_ptr, AVPacket *avpkt)
407 {
408     const uint8_t *buf = avpkt->data;
409     int buf_size = avpkt->size;
410     ShortenContext *s = avctx->priv_data;
411     int i, input_buf_size = 0;
412     int ret;
413
414     /* allocate internal bitstream buffer */
415     if(s->max_framesize == 0){
416         void *tmp_ptr;
417         s->max_framesize= 1024; // should hopefully be enough for the first header
418         tmp_ptr = av_fast_realloc(s->bitstream, &s->allocated_bitstream_size,
419                                   s->max_framesize);
420         if (!tmp_ptr) {
421             av_log(avctx, AV_LOG_ERROR, "error allocating bitstream buffer\n");
422             return AVERROR(ENOMEM);
423         }
424         s->bitstream = tmp_ptr;
425     }
426
427     /* append current packet data to bitstream buffer */
428     if(1 && s->max_framesize){//FIXME truncated
429         buf_size= FFMIN(buf_size, s->max_framesize - s->bitstream_size);
430         input_buf_size= buf_size;
431
432         if(s->bitstream_index + s->bitstream_size + buf_size > s->allocated_bitstream_size){
433             memmove(s->bitstream, &s->bitstream[s->bitstream_index], s->bitstream_size);
434             s->bitstream_index=0;
435         }
436         if (buf)
437             memcpy(&s->bitstream[s->bitstream_index + s->bitstream_size], buf, buf_size);
438         buf= &s->bitstream[s->bitstream_index];
439         buf_size += s->bitstream_size;
440         s->bitstream_size= buf_size;
441
442         /* do not decode until buffer has at least max_framesize bytes or
443            the end of the file has been reached */
444         if (buf_size < s->max_framesize && avpkt->data) {
445             *got_frame_ptr = 0;
446             return input_buf_size;
447         }
448     }
449     /* init and position bitstream reader */
450     init_get_bits(&s->gb, buf, buf_size*8);
451     skip_bits(&s->gb, s->bitindex);
452
453     /* process header or next subblock */
454     if (!s->got_header) {
455         if ((ret = read_header(s)) < 0)
456             return ret;
457         *got_frame_ptr = 0;
458         goto finish_frame;
459     }
460
461     /* if quit command was read previously, don't decode anything */
462     if (s->got_quit_command) {
463         *got_frame_ptr = 0;
464         return avpkt->size;
465     }
466
467     s->cur_chan = 0;
468     while (s->cur_chan < s->channels) {
469         int cmd;
470         int len;
471
472         if (get_bits_left(&s->gb) < 3+FNSIZE) {
473             *got_frame_ptr = 0;
474             break;
475         }
476
477         cmd = get_ur_golomb_shorten(&s->gb, FNSIZE);
478
479         if (cmd > FN_VERBATIM) {
480             av_log(avctx, AV_LOG_ERROR, "unknown shorten function %d\n", cmd);
481             *got_frame_ptr = 0;
482             break;
483         }
484
485         if (!is_audio_command[cmd]) {
486             /* process non-audio command */
487             switch (cmd) {
488                 case FN_VERBATIM:
489                     len = get_ur_golomb_shorten(&s->gb, VERBATIM_CKSIZE_SIZE);
490                     while (len--) {
491                         get_ur_golomb_shorten(&s->gb, VERBATIM_BYTE_SIZE);
492                     }
493                     break;
494                 case FN_BITSHIFT:
495                     s->bitshift = get_ur_golomb_shorten(&s->gb, BITSHIFTSIZE);
496                     break;
497                 case FN_BLOCKSIZE: {
498                     int blocksize = get_uint(s, av_log2(s->blocksize));
499                     if (blocksize > s->blocksize) {
500                         av_log(avctx, AV_LOG_ERROR, "Increasing block size is not supported\n");
501                         return AVERROR_PATCHWELCOME;
502                     }
503                     if (!blocksize || blocksize > MAX_BLOCKSIZE) {
504                         av_log(avctx, AV_LOG_ERROR, "invalid or unsupported "
505                                "block size: %d\n", blocksize);
506                         return AVERROR(EINVAL);
507                     }
508                     s->blocksize = blocksize;
509                     break;
510                 }
511                 case FN_QUIT:
512                     s->got_quit_command = 1;
513                     break;
514             }
515             if (cmd == FN_BLOCKSIZE || cmd == FN_QUIT) {
516                 *got_frame_ptr = 0;
517                 break;
518             }
519         } else {
520             /* process audio command */
521             int residual_size = 0;
522             int channel = s->cur_chan;
523             int32_t coffset;
524
525             /* get Rice code for residual decoding */
526             if (cmd != FN_ZERO) {
527                 residual_size = get_ur_golomb_shorten(&s->gb, ENERGYSIZE);
528                 /* this is a hack as version 0 differed in defintion of get_sr_golomb_shorten */
529                 if (s->version == 0)
530                     residual_size--;
531             }
532
533             /* calculate sample offset using means from previous blocks */
534             if (s->nmean == 0)
535                 coffset = s->offset[channel][0];
536             else {
537                 int32_t sum = (s->version < 2) ? 0 : s->nmean / 2;
538                 for (i=0; i<s->nmean; i++)
539                     sum += s->offset[channel][i];
540                 coffset = sum / s->nmean;
541                 if (s->version >= 2)
542                     coffset >>= FFMIN(1, s->bitshift);
543             }
544
545             /* decode samples for this channel */
546             if (cmd == FN_ZERO) {
547                 for (i=0; i<s->blocksize; i++)
548                     s->decoded[channel][i] = 0;
549             } else {
550                 if ((ret = decode_subframe_lpc(s, cmd, channel, residual_size, coffset)) < 0)
551                     return ret;
552             }
553
554             /* update means with info from the current block */
555             if (s->nmean > 0) {
556                 int32_t sum = (s->version < 2) ? 0 : s->blocksize / 2;
557                 for (i=0; i<s->blocksize; i++)
558                     sum += s->decoded[channel][i];
559
560                 for (i=1; i<s->nmean; i++)
561                     s->offset[channel][i-1] = s->offset[channel][i];
562
563                 if (s->version < 2)
564                     s->offset[channel][s->nmean - 1] = sum / s->blocksize;
565                 else
566                     s->offset[channel][s->nmean - 1] = (sum / s->blocksize) << s->bitshift;
567             }
568
569             /* copy wrap samples for use with next block */
570             for (i=-s->nwrap; i<0; i++)
571                 s->decoded[channel][i] = s->decoded[channel][i + s->blocksize];
572
573             /* shift samples to add in unused zero bits which were removed
574                during encoding */
575             fix_bitshift(s, s->decoded[channel]);
576
577             /* if this is the last channel in the block, output the samples */
578             s->cur_chan++;
579             if (s->cur_chan == s->channels) {
580                 /* get output buffer */
581                 s->frame.nb_samples = s->blocksize;
582                 if ((ret = avctx->get_buffer(avctx, &s->frame)) < 0) {
583                     av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
584                     return ret;
585                 }
586                 /* interleave output */
587                 interleave_buffer((int16_t *)s->frame.data[0], s->channels,
588                                   s->blocksize, s->decoded);
589
590                 *got_frame_ptr   = 1;
591                 *(AVFrame *)data = s->frame;
592             }
593         }
594     }
595     if (s->cur_chan < s->channels)
596         *got_frame_ptr = 0;
597
598 finish_frame:
599     s->bitindex = get_bits_count(&s->gb) - 8*((get_bits_count(&s->gb))/8);
600     i= (get_bits_count(&s->gb))/8;
601     if (i > buf_size) {
602         av_log(s->avctx, AV_LOG_ERROR, "overread: %d\n", i - buf_size);
603         s->bitstream_size=0;
604         s->bitstream_index=0;
605         return -1;
606     }
607     if (s->bitstream_size) {
608         s->bitstream_index += i;
609         s->bitstream_size  -= i;
610         return input_buf_size;
611     } else
612         return i;
613 }
614
615 static av_cold int shorten_decode_close(AVCodecContext *avctx)
616 {
617     ShortenContext *s = avctx->priv_data;
618     int i;
619
620     for (i = 0; i < s->channels; i++) {
621         s->decoded[i] = NULL;
622         av_freep(&s->decoded_base[i]);
623         av_freep(&s->offset[i]);
624     }
625     av_freep(&s->bitstream);
626     av_freep(&s->coeffs);
627
628     return 0;
629 }
630
631 AVCodec ff_shorten_decoder = {
632     .name           = "shorten",
633     .type           = AVMEDIA_TYPE_AUDIO,
634     .id             = CODEC_ID_SHORTEN,
635     .priv_data_size = sizeof(ShortenContext),
636     .init           = shorten_decode_init,
637     .close          = shorten_decode_close,
638     .decode         = shorten_decode_frame,
639     .capabilities   = CODEC_CAP_DELAY | CODEC_CAP_DR1,
640     .long_name= NULL_IF_CONFIG_SMALL("Shorten"),
641 };