• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * BRSTM demuxer
3  * Copyright (c) 2012 Paul B Mahol
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 "libavutil/intreadwrite.h"
23 #include "libavcodec/bytestream.h"
24 #include "avformat.h"
25 #include "demux.h"
26 #include "internal.h"
27 
28 typedef struct BRSTMCoeffOffset {
29     uint8_t  channel;
30     uint32_t offset;
31 } BRSTMCoeffOffset;
32 
33 typedef struct BRSTMDemuxContext {
34     uint32_t    block_size;
35     uint32_t    block_count;
36     uint32_t    current_block;
37     uint32_t    samples_per_block;
38     uint32_t    last_block_used_bytes;
39     uint32_t    last_block_size;
40     uint32_t    last_block_samples;
41     uint32_t    data_start;
42     uint8_t     table[256 * 32];
43     uint8_t     *adpc;
44     BRSTMCoeffOffset offsets[256];
45     int         little_endian;
46 } BRSTMDemuxContext;
47 
probe(const AVProbeData * p)48 static int probe(const AVProbeData *p)
49 {
50     if (AV_RL32(p->buf) == MKTAG('R','S','T','M') &&
51         (AV_RL16(p->buf + 4) == 0xFFFE ||
52          AV_RL16(p->buf + 4) == 0xFEFF))
53         return AVPROBE_SCORE_MAX / 3 * 2;
54     return 0;
55 }
56 
probe_bfstm(const AVProbeData * p)57 static int probe_bfstm(const AVProbeData *p)
58 {
59     if ((AV_RL32(p->buf) == MKTAG('F','S','T','M') ||
60          AV_RL32(p->buf) == MKTAG('C','S','T','M')) &&
61         (AV_RL16(p->buf + 4) == 0xFFFE ||
62          AV_RL16(p->buf + 4) == 0xFEFF))
63         return AVPROBE_SCORE_MAX / 3 * 2;
64     return 0;
65 }
66 
read_close(AVFormatContext * s)67 static int read_close(AVFormatContext *s)
68 {
69     BRSTMDemuxContext *b = s->priv_data;
70 
71     av_freep(&b->adpc);
72 
73     return 0;
74 }
75 
sort_offsets(const void * a,const void * b)76 static int sort_offsets(const void *a, const void *b)
77 {
78     const BRSTMCoeffOffset *s1 = a;
79     const BRSTMCoeffOffset *s2 = b;
80     return FFDIFFSIGN(s1->offset, s2->offset);
81 }
82 
read16(AVFormatContext * s)83 static av_always_inline unsigned int read16(AVFormatContext *s)
84 {
85     BRSTMDemuxContext *b = s->priv_data;
86     if (b->little_endian)
87         return avio_rl16(s->pb);
88     else
89         return avio_rb16(s->pb);
90 }
91 
read32(AVFormatContext * s)92 static av_always_inline unsigned int read32(AVFormatContext *s)
93 {
94     BRSTMDemuxContext *b = s->priv_data;
95     if (b->little_endian)
96         return avio_rl32(s->pb);
97     else
98         return avio_rb32(s->pb);
99 }
100 
read_header(AVFormatContext * s)101 static int read_header(AVFormatContext *s)
102 {
103     BRSTMDemuxContext *b = s->priv_data;
104     int bom, major, minor, codec, chunk;
105     int64_t h1offset, pos, toffset;
106     uint32_t size, asize, start = 0;
107     AVStream *st;
108     int loop = 0;
109     int bfstm = !strcmp("bfstm", s->iformat->name);
110 
111     st = avformat_new_stream(s, NULL);
112     if (!st)
113         return AVERROR(ENOMEM);
114     st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
115 
116     avio_skip(s->pb, 4);
117 
118     bom = avio_rb16(s->pb);
119     if (bom != 0xFEFF && bom != 0xFFFE) {
120         av_log(s, AV_LOG_ERROR, "invalid byte order: %X\n", bom);
121         return AVERROR_INVALIDDATA;
122     }
123 
124     if (bom == 0xFFFE)
125         b->little_endian = 1;
126 
127     if (!bfstm) {
128         major = avio_r8(s->pb);
129         minor = avio_r8(s->pb);
130         avio_skip(s->pb, 4); // size of file
131         size = read16(s);
132         if (size < 14)
133             return AVERROR_INVALIDDATA;
134 
135         avio_skip(s->pb, size - 14);
136         pos = avio_tell(s->pb);
137         if (avio_rl32(s->pb) != MKTAG('H','E','A','D'))
138             return AVERROR_INVALIDDATA;
139     } else {
140         uint32_t info_offset = 0;
141         uint16_t section_count, header_size, i;
142 
143         header_size = read16(s); // 6
144 
145         avio_skip(s->pb, 4); // Unknown constant 0x00030000
146         avio_skip(s->pb, 4); // size of file
147         section_count = read16(s);
148         avio_skip(s->pb, 2); // padding
149         for (i = 0; avio_tell(s->pb) < header_size
150                     && !(start && info_offset)
151                     && i < section_count; i++) {
152             uint16_t flag = read16(s);
153             avio_skip(s->pb, 2);
154             switch (flag) {
155             case 0x4000:
156                 info_offset = read32(s);
157                 /*info_size =*/ read32(s);
158                 break;
159             case 0x4001:
160                 avio_skip(s->pb, 4); // seek offset
161                 avio_skip(s->pb, 4); // seek size
162                 break;
163             case 0x4002:
164                 start = read32(s) + 8;
165                 avio_skip(s->pb, 4); //data_size = read32(s);
166                 break;
167             case 0x4003:
168                 avio_skip(s->pb, 4); // REGN offset
169                 avio_skip(s->pb, 4); // REGN size
170                 break;
171             }
172         }
173 
174         if (!info_offset || !start)
175             return AVERROR_INVALIDDATA;
176 
177         avio_skip(s->pb, info_offset - avio_tell(s->pb));
178         pos = avio_tell(s->pb);
179         if (avio_rl32(s->pb) != MKTAG('I','N','F','O'))
180             return AVERROR_INVALIDDATA;
181     }
182 
183     size = read32(s);
184     if (size < 40)
185         return AVERROR_INVALIDDATA;
186     avio_skip(s->pb, 4); // unknown
187     h1offset = read32(s);
188     if (h1offset > size)
189         return AVERROR_INVALIDDATA;
190     avio_skip(s->pb, 12);
191     toffset = read32(s) + 16LL;
192     if (toffset > size)
193         return AVERROR_INVALIDDATA;
194 
195     avio_skip(s->pb, pos + h1offset + 8 - avio_tell(s->pb));
196     codec = avio_r8(s->pb);
197 
198     switch (codec) {
199     case 0: codec = AV_CODEC_ID_PCM_S8_PLANAR;    break;
200     case 1: codec = b->little_endian ?
201                     AV_CODEC_ID_PCM_S16LE_PLANAR :
202                     AV_CODEC_ID_PCM_S16BE_PLANAR; break;
203     case 2: codec = b->little_endian ?
204                     AV_CODEC_ID_ADPCM_THP_LE :
205                     AV_CODEC_ID_ADPCM_THP;        break;
206     default:
207         avpriv_request_sample(s, "codec %d", codec);
208         return AVERROR_PATCHWELCOME;
209     }
210 
211     loop = avio_r8(s->pb); // loop flag
212     st->codecpar->codec_id = codec;
213     st->codecpar->ch_layout.nb_channels = avio_r8(s->pb);
214     if (!st->codecpar->ch_layout.nb_channels)
215         return AVERROR_INVALIDDATA;
216 
217     avio_skip(s->pb, 1); // padding
218 
219     st->codecpar->sample_rate = bfstm ? read32(s) : read16(s);
220     if (st->codecpar->sample_rate <= 0)
221         return AVERROR_INVALIDDATA;
222 
223     if (!bfstm)
224         avio_skip(s->pb, 2); // padding
225 
226     if (loop) {
227         if (av_dict_set_int(&s->metadata, "loop_start",
228                             av_rescale(read32(s), AV_TIME_BASE,
229                                        st->codecpar->sample_rate),
230                             0) < 0)
231             return AVERROR(ENOMEM);
232     } else {
233         avio_skip(s->pb, 4);
234     }
235 
236     st->start_time = 0;
237     st->duration = read32(s);
238     avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
239 
240     if (!bfstm)
241         start = read32(s);
242     b->current_block = 0;
243     b->block_count = read32(s);
244     if (b->block_count > UINT16_MAX) {
245         av_log(s, AV_LOG_WARNING, "too many blocks: %"PRIu32"\n", b->block_count);
246         return AVERROR_INVALIDDATA;
247     }
248 
249     b->block_size = read32(s);
250     if (b->block_size > UINT32_MAX / st->codecpar->ch_layout.nb_channels)
251         return AVERROR_INVALIDDATA;
252 
253     b->samples_per_block = read32(s);
254     b->last_block_used_bytes = read32(s);
255     b->last_block_samples = read32(s);
256     b->last_block_size = read32(s);
257     if (b->last_block_size > UINT32_MAX / st->codecpar->ch_layout.nb_channels)
258         return AVERROR_INVALIDDATA;
259     if (b->last_block_used_bytes > b->last_block_size)
260         return AVERROR_INVALIDDATA;
261 
262 
263     if (codec == AV_CODEC_ID_ADPCM_THP || codec == AV_CODEC_ID_ADPCM_THP_LE) {
264         int ch;
265 
266         avio_skip(s->pb, pos + toffset - avio_tell(s->pb));
267         if (!bfstm)
268             toffset = read32(s) + 16LL;
269         else
270             toffset = toffset + read32(s) + st->codecpar->ch_layout.nb_channels * 8 - 8;
271         if (toffset > size)
272             return AVERROR_INVALIDDATA;
273 
274         if (!bfstm) {
275             avio_skip(s->pb, pos + toffset - avio_tell(s->pb) - 8LL * (st->codecpar->ch_layout.nb_channels + 1));
276             for (ch = 0; ch < st->codecpar->ch_layout.nb_channels; ch++) {
277                 avio_skip(s->pb, 4);
278                 b->offsets[ch].channel = ch;
279                 b->offsets[ch].offset = read32(s);
280             }
281 
282             qsort(b->offsets, st->codecpar->ch_layout.nb_channels, sizeof(*b->offsets), sort_offsets);
283         }
284 
285         avio_skip(s->pb, pos + toffset - avio_tell(s->pb));
286 
287         for (ch = 0; ch < st->codecpar->ch_layout.nb_channels; ch++) {
288             if (!bfstm)
289                 avio_skip(s->pb, pos + 16LL + b->offsets[ch].offset - avio_tell(s->pb));
290 
291             if (avio_read(s->pb, b->table + ch * 32, 32) != 32)
292                 return AVERROR_INVALIDDATA;
293 
294             if (bfstm)
295                 avio_skip(s->pb, 14);
296         }
297     }
298 
299     if (size < (avio_tell(s->pb) - pos))
300         return AVERROR_INVALIDDATA;
301 
302     avio_skip(s->pb, size - (avio_tell(s->pb) - pos));
303 
304     while (!avio_feof(s->pb)) {
305         chunk = avio_rl32(s->pb);
306         size  = read32(s);
307         if (size < 8)
308             return AVERROR_INVALIDDATA;
309         size -= 8;
310         switch (chunk) {
311         case MKTAG('S','E','E','K'):
312         case MKTAG('A','D','P','C'):
313             if (codec != AV_CODEC_ID_ADPCM_THP &&
314                 codec != AV_CODEC_ID_ADPCM_THP_LE)
315                 goto skip;
316 
317             asize = b->block_count * st->codecpar->ch_layout.nb_channels * 4;
318             if (size < asize)
319                 return AVERROR_INVALIDDATA;
320             if (b->adpc) {
321                 av_log(s, AV_LOG_WARNING, "skipping additional ADPC chunk\n");
322                 goto skip;
323             } else {
324                 b->adpc = av_mallocz(asize);
325                 if (!b->adpc)
326                     return AVERROR(ENOMEM);
327                 if (bfstm && codec != AV_CODEC_ID_ADPCM_THP_LE) {
328                     // Big-endian BFSTMs have little-endian SEEK tables
329                     // for some strange reason.
330                     int i;
331                     for (i = 0; i < asize; i += 2) {
332                         b->adpc[i+1] = avio_r8(s->pb);
333                         b->adpc[i]   = avio_r8(s->pb);
334                     }
335                 } else {
336                     avio_read(s->pb, b->adpc, asize);
337                 }
338                 avio_skip(s->pb, size - asize);
339             }
340             break;
341         case MKTAG('D','A','T','A'):
342             if ((start < avio_tell(s->pb)) ||
343                 (!b->adpc && (codec == AV_CODEC_ID_ADPCM_THP ||
344                               codec == AV_CODEC_ID_ADPCM_THP_LE)))
345                 return AVERROR_INVALIDDATA;
346             avio_skip(s->pb, start - avio_tell(s->pb));
347 
348             if (bfstm && (codec == AV_CODEC_ID_ADPCM_THP ||
349                           codec == AV_CODEC_ID_ADPCM_THP_LE))
350                 avio_skip(s->pb, 24);
351 
352             b->data_start = avio_tell(s->pb);
353 
354             if (!bfstm && (major != 1 || minor))
355                 avpriv_request_sample(s, "Version %d.%d", major, minor);
356 
357             return 0;
358         default:
359             av_log(s, AV_LOG_WARNING, "skipping unknown chunk: %X\n", chunk);
360 skip:
361             avio_skip(s->pb, size);
362         }
363     }
364 
365     return AVERROR_EOF;
366 }
367 
read_packet(AVFormatContext * s,AVPacket * pkt)368 static int read_packet(AVFormatContext *s, AVPacket *pkt)
369 {
370     AVCodecParameters *par = s->streams[0]->codecpar;
371     BRSTMDemuxContext *b = s->priv_data;
372     uint32_t samples, size, skip = 0;
373     int channels = par->ch_layout.nb_channels;
374     int ret, i;
375 
376     if (avio_feof(s->pb))
377         return AVERROR_EOF;
378     b->current_block++;
379     if (b->current_block == b->block_count) {
380         size    = b->last_block_used_bytes;
381         samples = b->last_block_samples;
382         skip    = b->last_block_size - b->last_block_used_bytes;
383 
384         if (samples < size * 14 / 8) {
385             uint32_t adjusted_size = samples / 14 * 8;
386             if (samples % 14)
387                 adjusted_size += (samples % 14 + 1) / 2 + 1;
388 
389             skip += size - adjusted_size;
390             size = adjusted_size;
391         }
392     } else if (b->current_block < b->block_count) {
393         size    = b->block_size;
394         samples = b->samples_per_block;
395     } else {
396         return AVERROR_EOF;
397     }
398 
399     if (par->codec_id == AV_CODEC_ID_ADPCM_THP ||
400         par->codec_id == AV_CODEC_ID_ADPCM_THP_LE) {
401         uint8_t *dst;
402 
403         if (!b->adpc) {
404             av_log(s, AV_LOG_ERROR, "adpcm_thp requires ADPC chunk, but none was found.\n");
405             return AVERROR_INVALIDDATA;
406         }
407 
408         if (size > (INT_MAX - 32 - 4) ||
409             (32 + 4 + size) > (INT_MAX / channels) ||
410             (32 + 4 + size) * channels > INT_MAX - 8)
411             return AVERROR_INVALIDDATA;
412         if ((ret = av_new_packet(pkt, 8 + (32 + 4 + size) * channels)) < 0)
413             return ret;
414         dst = pkt->data;
415         if (par->codec_id == AV_CODEC_ID_ADPCM_THP_LE) {
416             bytestream_put_le32(&dst, size * channels);
417             bytestream_put_le32(&dst, samples);
418         } else {
419             bytestream_put_be32(&dst, size * channels);
420             bytestream_put_be32(&dst, samples);
421         }
422         bytestream_put_buffer(&dst, b->table, 32 * channels);
423         bytestream_put_buffer(&dst, b->adpc + 4 * channels *
424                                     (b->current_block - 1), 4 * channels);
425 
426         for (i = 0; i < channels; i++) {
427             ret = avio_read(s->pb, dst, size);
428             dst += size;
429             avio_skip(s->pb, skip);
430             if (ret != size) {
431                 return AVERROR(EIO);
432             }
433         }
434         pkt->duration = samples;
435     } else {
436         size *= channels;
437         ret = av_get_packet(s->pb, pkt, size);
438     }
439 
440     pkt->stream_index = 0;
441 
442     if (ret != size)
443         ret = AVERROR(EIO);
444 
445     return ret;
446 }
447 
read_seek(AVFormatContext * s,int stream_index,int64_t timestamp,int flags)448 static int read_seek(AVFormatContext *s, int stream_index,
449                      int64_t timestamp, int flags)
450 {
451     AVStream *st = s->streams[stream_index];
452     BRSTMDemuxContext *b = s->priv_data;
453     int64_t ret = 0;
454 
455     if (timestamp < 0)
456         timestamp = 0;
457     timestamp /= b->samples_per_block;
458     if (timestamp >= b->block_count)
459         timestamp = b->block_count - 1;
460     ret = avio_seek(s->pb, b->data_start + timestamp * b->block_size *
461                            st->codecpar->ch_layout.nb_channels, SEEK_SET);
462     if (ret < 0)
463         return ret;
464 
465     b->current_block = timestamp;
466     avpriv_update_cur_dts(s, st, timestamp * b->samples_per_block);
467     return 0;
468 }
469 
470 const AVInputFormat ff_brstm_demuxer = {
471     .name           = "brstm",
472     .long_name      = NULL_IF_CONFIG_SMALL("BRSTM (Binary Revolution Stream)"),
473     .priv_data_size = sizeof(BRSTMDemuxContext),
474     .flags_internal = FF_FMT_INIT_CLEANUP,
475     .read_probe     = probe,
476     .read_header    = read_header,
477     .read_packet    = read_packet,
478     .read_close     = read_close,
479     .read_seek      = read_seek,
480     .extensions     = "brstm",
481 };
482 
483 const AVInputFormat ff_bfstm_demuxer = {
484     .name           = "bfstm",
485     .long_name      = NULL_IF_CONFIG_SMALL("BFSTM (Binary Cafe Stream)"),
486     .priv_data_size = sizeof(BRSTMDemuxContext),
487     .flags_internal = FF_FMT_INIT_CLEANUP,
488     .read_probe     = probe_bfstm,
489     .read_header    = read_header,
490     .read_packet    = read_packet,
491     .read_close     = read_close,
492     .read_seek      = read_seek,
493     .extensions     = "bfstm,bcstm",
494 };
495