FFmpeg
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
iff.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2008 Jaikrishnan Menon <realityman@gmx.net>
3  * Copyright (c) 2010 Peter Ross <pross@xvid.org>
4  * Copyright (c) 2010 Sebastian Vater <cdgs.basty@googlemail.com>
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 /**
24  * @file
25  * IFF file demuxer
26  * by Jaikrishnan Menon
27  * for more information on the .iff file format, visit:
28  * http://wiki.multimedia.cx/index.php?title=IFF
29  */
30 
31 #include "libavutil/avassert.h"
33 #include "libavutil/intreadwrite.h"
34 #include "libavutil/dict.h"
35 #include "libavcodec/bytestream.h"
36 #include "avformat.h"
37 #include "internal.h"
38 
39 #define ID_8SVX MKTAG('8','S','V','X')
40 #define ID_16SV MKTAG('1','6','S','V')
41 #define ID_MAUD MKTAG('M','A','U','D')
42 #define ID_MHDR MKTAG('M','H','D','R')
43 #define ID_MDAT MKTAG('M','D','A','T')
44 #define ID_VHDR MKTAG('V','H','D','R')
45 #define ID_ATAK MKTAG('A','T','A','K')
46 #define ID_RLSE MKTAG('R','L','S','E')
47 #define ID_CHAN MKTAG('C','H','A','N')
48 #define ID_PBM MKTAG('P','B','M',' ')
49 #define ID_ILBM MKTAG('I','L','B','M')
50 #define ID_BMHD MKTAG('B','M','H','D')
51 #define ID_DGBL MKTAG('D','G','B','L')
52 #define ID_CAMG MKTAG('C','A','M','G')
53 #define ID_CMAP MKTAG('C','M','A','P')
54 #define ID_ACBM MKTAG('A','C','B','M')
55 #define ID_DEEP MKTAG('D','E','E','P')
56 #define ID_RGB8 MKTAG('R','G','B','8')
57 #define ID_RGBN MKTAG('R','G','B','N')
58 
59 #define ID_FORM MKTAG('F','O','R','M')
60 #define ID_ANNO MKTAG('A','N','N','O')
61 #define ID_AUTH MKTAG('A','U','T','H')
62 #define ID_CHRS MKTAG('C','H','R','S')
63 #define ID_COPYRIGHT MKTAG('(','c',')',' ')
64 #define ID_CSET MKTAG('C','S','E','T')
65 #define ID_FVER MKTAG('F','V','E','R')
66 #define ID_NAME MKTAG('N','A','M','E')
67 #define ID_TEXT MKTAG('T','E','X','T')
68 #define ID_ABIT MKTAG('A','B','I','T')
69 #define ID_BODY MKTAG('B','O','D','Y')
70 #define ID_DBOD MKTAG('D','B','O','D')
71 #define ID_DPEL MKTAG('D','P','E','L')
72 #define ID_DLOC MKTAG('D','L','O','C')
73 #define ID_TVDC MKTAG('T','V','D','C')
74 
75 #define LEFT 2
76 #define RIGHT 4
77 #define STEREO 6
78 
79 /**
80  * This number of bytes if added at the beginning of each AVPacket
81  * which contain additional information about video properties
82  * which has to be shared between demuxer and decoder.
83  * This number may change between frames, e.g. the demuxer might
84  * set it to smallest possible size of 2 to indicate that there's
85  * no extradata changing in this frame.
86  */
87 #define IFF_EXTRA_VIDEO_SIZE 41
88 
89 typedef enum {
94 
95 typedef struct {
96  uint64_t body_pos;
97  uint32_t body_size;
98  uint32_t sent_bytes;
100  unsigned maud_bits;
102  unsigned bitmap_compression; ///< delta compression method used
103  unsigned bpp; ///< bits per plane to decode (differs from bits_per_coded_sample if HAM)
104  unsigned ham; ///< 0 if non-HAM or number of hold bits (6 for bpp > 6, 4 otherwise)
105  unsigned flags; ///< 1 for EHB, 0 is no extra half darkening
106  unsigned transparency; ///< transparency color index in palette
107  unsigned masking; ///< masking method used
108  uint8_t tvdc[32]; ///< TVDC lookup table
110 
111 /* Metadata string read */
113  const char *const tag,
114  const unsigned data_size)
115 {
116  uint8_t *buf = ((data_size + 1) == 0) ? NULL : av_malloc(data_size + 1);
117 
118  if (!buf)
119  return AVERROR(ENOMEM);
120 
121  if (avio_read(s->pb, buf, data_size) < 0) {
122  av_free(buf);
123  return AVERROR(EIO);
124  }
125  buf[data_size] = 0;
127  return 0;
128 }
129 
130 static int iff_probe(AVProbeData *p)
131 {
132  const uint8_t *d = p->buf;
133 
134  if ( AV_RL32(d) == ID_FORM &&
135  (AV_RL32(d+8) == ID_8SVX ||
136  AV_RL32(d+8) == ID_16SV ||
137  AV_RL32(d+8) == ID_MAUD ||
138  AV_RL32(d+8) == ID_PBM ||
139  AV_RL32(d+8) == ID_ACBM ||
140  AV_RL32(d+8) == ID_DEEP ||
141  AV_RL32(d+8) == ID_ILBM ||
142  AV_RL32(d+8) == ID_RGB8 ||
143  AV_RL32(d+8) == ID_RGBN) )
144  return AVPROBE_SCORE_MAX;
145  return 0;
146 }
147 
148 static const uint8_t deep_rgb24[] = {0, 0, 0, 3, 0, 1, 0, 8, 0, 2, 0, 8, 0, 3, 0, 8};
149 static const uint8_t deep_rgba[] = {0, 0, 0, 4, 0, 1, 0, 8, 0, 2, 0, 8, 0, 3, 0, 8};
150 static const uint8_t deep_bgra[] = {0, 0, 0, 4, 0, 3, 0, 8, 0, 2, 0, 8, 0, 1, 0, 8};
151 static const uint8_t deep_argb[] = {0, 0, 0, 4, 0,17, 0, 8, 0, 1, 0, 8, 0, 2, 0, 8};
152 static const uint8_t deep_abgr[] = {0, 0, 0, 4, 0,17, 0, 8, 0, 3, 0, 8, 0, 2, 0, 8};
153 
155 {
156  IffDemuxContext *iff = s->priv_data;
157  AVIOContext *pb = s->pb;
158  AVStream *st;
159  uint8_t *buf;
160  uint32_t chunk_id, data_size;
161  uint32_t screenmode = 0, num, den;
162  unsigned transparency = 0;
163  unsigned masking = 0; // no mask
164  uint8_t fmt[16];
165  int fmt_size;
166 
167  st = avformat_new_stream(s, NULL);
168  if (!st)
169  return AVERROR(ENOMEM);
170 
171  st->codec->channels = 1;
173  avio_skip(pb, 8);
174  // codec_tag used by ByteRun1 decoder to distinguish progressive (PBM) and interlaced (ILBM) content
175  st->codec->codec_tag = avio_rl32(pb);
176  iff->bitmap_compression = -1;
177  iff->svx8_compression = -1;
178  iff->maud_bits = -1;
179  iff->maud_compression = -1;
180 
181  while(!url_feof(pb)) {
182  uint64_t orig_pos;
183  int res;
184  const char *metadata_tag = NULL;
185  chunk_id = avio_rl32(pb);
186  data_size = avio_rb32(pb);
187  orig_pos = avio_tell(pb);
188 
189  switch(chunk_id) {
190  case ID_VHDR:
192 
193  if (data_size < 14)
194  return AVERROR_INVALIDDATA;
195  avio_skip(pb, 12);
196  st->codec->sample_rate = avio_rb16(pb);
197  if (data_size >= 16) {
198  avio_skip(pb, 1);
199  iff->svx8_compression = avio_r8(pb);
200  }
201  break;
202 
203  case ID_MHDR:
205 
206  if (data_size < 32)
207  return AVERROR_INVALIDDATA;
208  avio_skip(pb, 4);
209  iff->maud_bits = avio_rb16(pb);
210  avio_skip(pb, 2);
211  num = avio_rb32(pb);
212  den = avio_rb16(pb);
213  if (!den)
214  return AVERROR_INVALIDDATA;
215  avio_skip(pb, 2);
216  st->codec->sample_rate = num / den;
217  st->codec->channels = avio_rb16(pb);
218  iff->maud_compression = avio_rb16(pb);
219  if (st->codec->channels == 1)
221  else if (st->codec->channels == 2)
223  break;
224 
225  case ID_ABIT:
226  case ID_BODY:
227  case ID_DBOD:
228  case ID_MDAT:
229  iff->body_pos = avio_tell(pb);
230  iff->body_size = data_size;
231  break;
232 
233  case ID_CHAN:
234  if (data_size < 4)
235  return AVERROR_INVALIDDATA;
236  if (avio_rb32(pb) < 6) {
237  st->codec->channels = 1;
239  } else {
240  st->codec->channels = 2;
242  }
243  break;
244 
245  case ID_CAMG:
246  if (data_size < 4)
247  return AVERROR_INVALIDDATA;
248  screenmode = avio_rb32(pb);
249  break;
250 
251  case ID_CMAP:
252  if (data_size < 3 || data_size > 768 || data_size % 3) {
253  av_log(s, AV_LOG_ERROR, "Invalid CMAP chunk size %d\n",
254  data_size);
255  return AVERROR_INVALIDDATA;
256  }
257  st->codec->extradata_size = data_size + IFF_EXTRA_VIDEO_SIZE;
258  st->codec->extradata = av_malloc(data_size + IFF_EXTRA_VIDEO_SIZE + FF_INPUT_BUFFER_PADDING_SIZE);
259  if (!st->codec->extradata)
260  return AVERROR(ENOMEM);
261  if (avio_read(pb, st->codec->extradata + IFF_EXTRA_VIDEO_SIZE, data_size) < 0)
262  return AVERROR(EIO);
263  break;
264 
265  case ID_BMHD:
267  if (data_size <= 8)
268  return AVERROR_INVALIDDATA;
269  st->codec->width = avio_rb16(pb);
270  st->codec->height = avio_rb16(pb);
271  avio_skip(pb, 4); // x, y offset
273  if (data_size >= 10)
274  masking = avio_r8(pb);
275  if (data_size >= 11)
276  iff->bitmap_compression = avio_r8(pb);
277  if (data_size >= 14) {
278  avio_skip(pb, 1); // padding
279  transparency = avio_rb16(pb);
280  }
281  if (data_size >= 16) {
282  st->sample_aspect_ratio.num = avio_r8(pb);
283  st->sample_aspect_ratio.den = avio_r8(pb);
284  }
285  break;
286 
287  case ID_DPEL:
288  if (data_size < 4 || (data_size & 3))
289  return AVERROR_INVALIDDATA;
290  if ((fmt_size = avio_read(pb, fmt, sizeof(fmt))) < 0)
291  return fmt_size;
292  if (fmt_size == sizeof(deep_rgb24) && !memcmp(fmt, deep_rgb24, sizeof(deep_rgb24)))
294  else if (fmt_size == sizeof(deep_rgba) && !memcmp(fmt, deep_rgba, sizeof(deep_rgba)))
296  else if (fmt_size == sizeof(deep_bgra) && !memcmp(fmt, deep_bgra, sizeof(deep_bgra)))
298  else if (fmt_size == sizeof(deep_argb) && !memcmp(fmt, deep_argb, sizeof(deep_argb)))
300  else if (fmt_size == sizeof(deep_abgr) && !memcmp(fmt, deep_abgr, sizeof(deep_abgr)))
302  else {
303  av_log_ask_for_sample(s, "unsupported color format\n");
304  return AVERROR_PATCHWELCOME;
305  }
306  break;
307 
308  case ID_DGBL:
310  if (data_size < 8)
311  return AVERROR_INVALIDDATA;
312  st->codec->width = avio_rb16(pb);
313  st->codec->height = avio_rb16(pb);
314  iff->bitmap_compression = avio_rb16(pb);
315  st->sample_aspect_ratio.num = avio_r8(pb);
316  st->sample_aspect_ratio.den = avio_r8(pb);
317  st->codec->bits_per_coded_sample = 24;
318  break;
319 
320  case ID_DLOC:
321  if (data_size < 4)
322  return AVERROR_INVALIDDATA;
323  st->codec->width = avio_rb16(pb);
324  st->codec->height = avio_rb16(pb);
325  break;
326 
327  case ID_TVDC:
328  if (data_size < sizeof(iff->tvdc))
329  return AVERROR_INVALIDDATA;
330  res = avio_read(pb, iff->tvdc, sizeof(iff->tvdc));
331  if (res < 0)
332  return res;
333  break;
334 
335  case ID_ANNO:
336  case ID_TEXT: metadata_tag = "comment"; break;
337  case ID_AUTH: metadata_tag = "artist"; break;
338  case ID_COPYRIGHT: metadata_tag = "copyright"; break;
339  case ID_NAME: metadata_tag = "title"; break;
340  }
341 
342  if (metadata_tag) {
343  if ((res = get_metadata(s, metadata_tag, data_size)) < 0) {
344  av_log(s, AV_LOG_ERROR, "cannot allocate metadata tag %s!\n", metadata_tag);
345  return res;
346  }
347  }
348  avio_skip(pb, data_size - (avio_tell(pb) - orig_pos) + (data_size & 1));
349  }
350 
351  avio_seek(pb, iff->body_pos, SEEK_SET);
352 
353  switch(st->codec->codec_type) {
354  case AVMEDIA_TYPE_AUDIO:
355  avpriv_set_pts_info(st, 32, 1, st->codec->sample_rate);
356 
357  if (st->codec->codec_tag == ID_16SV)
359  else if (st->codec->codec_tag == ID_MAUD) {
360  if (iff->maud_bits == 8 && !iff->maud_compression) {
362  } else if (iff->maud_bits == 16 && !iff->maud_compression) {
364  } else if (iff->maud_bits == 8 && iff->maud_compression == 2) {
366  } else if (iff->maud_bits == 8 && iff->maud_compression == 3) {
368  } else {
369  av_log_ask_for_sample(s, "unsupported compression %d and bit depth %d\n", iff->maud_compression, iff->maud_bits);
370  return AVERROR_PATCHWELCOME;
371  }
372 
375 
376  st->codec->block_align =
377  st->codec->bits_per_coded_sample * st->codec->channels / 8;
378  } else {
379  switch (iff->svx8_compression) {
380  case COMP_NONE:
382  break;
383  case COMP_FIB:
385  break;
386  case COMP_EXP:
388  break;
389  default:
390  av_log(s, AV_LOG_ERROR,
391  "Unknown SVX8 compression method '%d'\n", iff->svx8_compression);
392  return -1;
393  }
394  }
395 
399  break;
400 
401  case AVMEDIA_TYPE_VIDEO:
402  iff->bpp = st->codec->bits_per_coded_sample;
403  if ((screenmode & 0x800 /* Hold And Modify */) && iff->bpp <= 8) {
404  iff->ham = iff->bpp > 6 ? 6 : 4;
405  st->codec->bits_per_coded_sample = 24;
406  }
407  iff->flags = (screenmode & 0x80 /* Extra HalfBrite */) && iff->bpp <= 8;
408  iff->masking = masking;
409  iff->transparency = transparency;
410 
411  if (!st->codec->extradata) {
414  if (!st->codec->extradata)
415  return AVERROR(ENOMEM);
416  }
418  buf = st->codec->extradata;
419  bytestream_put_be16(&buf, IFF_EXTRA_VIDEO_SIZE);
420  bytestream_put_byte(&buf, iff->bitmap_compression);
421  bytestream_put_byte(&buf, iff->bpp);
422  bytestream_put_byte(&buf, iff->ham);
423  bytestream_put_byte(&buf, iff->flags);
424  bytestream_put_be16(&buf, iff->transparency);
425  bytestream_put_byte(&buf, iff->masking);
426  bytestream_put_buffer(&buf, iff->tvdc, sizeof(iff->tvdc));
428  break;
429  default:
430  return -1;
431  }
432 
433  return 0;
434 }
435 
437  AVPacket *pkt)
438 {
439  IffDemuxContext *iff = s->priv_data;
440  AVIOContext *pb = s->pb;
441  AVStream *st = s->streams[0];
442  int ret;
443 
444  if(iff->sent_bytes >= iff->body_size)
445  return AVERROR_EOF;
446 
447  if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
448  if (st->codec->codec_tag == ID_MAUD) {
449  ret = av_get_packet(pb, pkt,
450  FFMIN(iff->body_size - iff->sent_bytes, 1024 * st->codec->block_align));
451  } else {
452  ret = av_get_packet(pb, pkt, iff->body_size);
453  }
454  } else if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
455  uint8_t *buf;
456 
457  if (av_new_packet(pkt, iff->body_size + 2) < 0) {
458  return AVERROR(ENOMEM);
459  }
460 
461  buf = pkt->data;
462  bytestream_put_be16(&buf, 2);
463  ret = avio_read(pb, buf, iff->body_size);
464  } else {
465  av_assert0(0);
466  }
467 
468  if(iff->sent_bytes == 0)
469  pkt->flags |= AV_PKT_FLAG_KEY;
470  if (ret < 0)
471  return ret;
472  iff->sent_bytes += ret;
473  pkt->stream_index = 0;
474  return ret;
475 }
476 
478  .name = "iff",
479  .long_name = NULL_IF_CONFIG_SMALL("IFF (Interchange File Format)"),
480  .priv_data_size = sizeof(IffDemuxContext),
484 };