libavformat/iff.c
3a027f5e
 /*
  * Copyright (c) 2008 Jaikrishnan Menon <realityman@gmx.net>
02c4f626
  * Copyright (c) 2010 Peter Ross <pross@xvid.org>
46dcabf8
  * Copyright (c) 2010 Sebastian Vater <cdgs.basty@googlemail.com>
3a027f5e
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /**
ba87f080
  * @file
4477dedc
  * IFF file demuxer
3a027f5e
  * by Jaikrishnan Menon
  * for more information on the .iff file format, visit:
  * http://wiki.multimedia.cx/index.php?title=IFF
  */
 
b2bc48ae
 #include "libavutil/avassert.h"
024e0370
 #include "libavutil/channel_layout.h"
6a5d31ac
 #include "libavutil/intreadwrite.h"
d2d67e42
 #include "libavutil/dict.h"
7eb40d85
 #include "libavcodec/bytestream.h"
3a027f5e
 #include "avformat.h"
c3f9ebf7
 #include "internal.h"
3a027f5e
 
 #define ID_8SVX       MKTAG('8','S','V','X')
01eed8c6
 #define ID_16SV       MKTAG('1','6','S','V')
50b5c229
 #define ID_MAUD       MKTAG('M','A','U','D')
 #define ID_MHDR       MKTAG('M','H','D','R')
 #define ID_MDAT       MKTAG('M','D','A','T')
3a027f5e
 #define ID_VHDR       MKTAG('V','H','D','R')
 #define ID_ATAK       MKTAG('A','T','A','K')
 #define ID_RLSE       MKTAG('R','L','S','E')
 #define ID_CHAN       MKTAG('C','H','A','N')
02c4f626
 #define ID_PBM        MKTAG('P','B','M',' ')
 #define ID_ILBM       MKTAG('I','L','B','M')
 #define ID_BMHD       MKTAG('B','M','H','D')
af55a9d8
 #define ID_DGBL       MKTAG('D','G','B','L')
18313287
 #define ID_CAMG       MKTAG('C','A','M','G')
02c4f626
 #define ID_CMAP       MKTAG('C','M','A','P')
cf14c822
 #define ID_ACBM       MKTAG('A','C','B','M')
af55a9d8
 #define ID_DEEP       MKTAG('D','E','E','P')
53ae32d3
 #define ID_RGB8       MKTAG('R','G','B','8')
 #define ID_RGBN       MKTAG('R','G','B','N')
3a027f5e
 
 #define ID_FORM       MKTAG('F','O','R','M')
 #define ID_ANNO       MKTAG('A','N','N','O')
 #define ID_AUTH       MKTAG('A','U','T','H')
 #define ID_CHRS       MKTAG('C','H','R','S')
 #define ID_COPYRIGHT  MKTAG('(','c',')',' ')
 #define ID_CSET       MKTAG('C','S','E','T')
 #define ID_FVER       MKTAG('F','V','E','R')
 #define ID_NAME       MKTAG('N','A','M','E')
 #define ID_TEXT       MKTAG('T','E','X','T')
cf14c822
 #define ID_ABIT       MKTAG('A','B','I','T')
3a027f5e
 #define ID_BODY       MKTAG('B','O','D','Y')
af55a9d8
 #define ID_DBOD       MKTAG('D','B','O','D')
 #define ID_DPEL       MKTAG('D','P','E','L')
05001dd7
 #define ID_DLOC       MKTAG('D','L','O','C')
1696c72a
 #define ID_TVDC       MKTAG('T','V','D','C')
3a027f5e
 
 #define LEFT    2
 #define RIGHT   4
 #define STEREO  6
 
18313287
 /**
  * This number of bytes if added at the beginning of each AVPacket
  * which contain additional information about video properties
  * which has to be shared between demuxer and decoder.
  * This number may change between frames, e.g. the demuxer might
  * set it to smallest possible size of 2 to indicate that there's
  * no extradata changing in this frame.
  */
1696c72a
 #define IFF_EXTRA_VIDEO_SIZE 41
18313287
 
e5953464
 typedef enum {
     COMP_NONE,
     COMP_FIB,
     COMP_EXP
 } svx8_compression_type;
 
3a027f5e
 typedef struct {
7f7f31bf
     int64_t  body_pos;
     int64_t  body_end;
3a027f5e
     uint32_t  body_size;
1af99b02
     svx8_compression_type   svx8_compression;
50b5c229
     unsigned  maud_bits;
     unsigned  maud_compression;
76f60788
     unsigned  bitmap_compression;  ///< delta compression method used
18313287
     unsigned  bpp;          ///< bits per plane to decode (differs from bits_per_coded_sample if HAM)
     unsigned  ham;          ///< 0 if non-HAM or number of hold bits (6 for bpp > 6, 4 otherwise)
     unsigned  flags;        ///< 1 for EHB, 0 is no extra half darkening
     unsigned  transparency; ///< transparency color index in palette
     unsigned  masking;      ///< masking method used
1696c72a
     uint8_t   tvdc[32];     ///< TVDC lookup table
3a027f5e
 } IffDemuxContext;
 
8af7dbce
 /* Metadata string read */
 static int get_metadata(AVFormatContext *s,
                         const char *const tag,
                         const unsigned data_size)
 {
     uint8_t *buf = ((data_size + 1) == 0) ? NULL : av_malloc(data_size + 1);
 
     if (!buf)
         return AVERROR(ENOMEM);
 
8e90c728
     if (avio_read(s->pb, buf, data_size) != data_size) {
8af7dbce
         av_free(buf);
         return AVERROR(EIO);
     }
     buf[data_size] = 0;
d2d67e42
     av_dict_set(&s->metadata, tag, buf, AV_DICT_DONT_STRDUP_VAL);
8af7dbce
     return 0;
 }
 
3a027f5e
 static int iff_probe(AVProbeData *p)
 {
     const uint8_t *d = p->buf;
 
39337827
     if (  AV_RL32(d)   == ID_FORM &&
          (AV_RL32(d+8) == ID_8SVX ||
01eed8c6
           AV_RL32(d+8) == ID_16SV ||
50b5c229
           AV_RL32(d+8) == ID_MAUD ||
39337827
           AV_RL32(d+8) == ID_PBM  ||
           AV_RL32(d+8) == ID_ACBM ||
           AV_RL32(d+8) == ID_DEEP ||
53ae32d3
           AV_RL32(d+8) == ID_ILBM ||
           AV_RL32(d+8) == ID_RGB8 ||
           AV_RL32(d+8) == ID_RGBN) )
3a027f5e
         return AVPROBE_SCORE_MAX;
     return 0;
 }
 
af55a9d8
 static const uint8_t deep_rgb24[] = {0, 0, 0, 3, 0, 1, 0, 8, 0, 2, 0, 8, 0, 3, 0, 8};
 static const uint8_t deep_rgba[]  = {0, 0, 0, 4, 0, 1, 0, 8, 0, 2, 0, 8, 0, 3, 0, 8};
d26eeb0d
 static const uint8_t deep_bgra[]  = {0, 0, 0, 4, 0, 3, 0, 8, 0, 2, 0, 8, 0, 1, 0, 8};
 static const uint8_t deep_argb[]  = {0, 0, 0, 4, 0,17, 0, 8, 0, 1, 0, 8, 0, 2, 0, 8};
 static const uint8_t deep_abgr[]  = {0, 0, 0, 4, 0,17, 0, 8, 0, 3, 0, 8, 0, 2, 0, 8};
af55a9d8
 
6e9651d1
 static int iff_read_header(AVFormatContext *s)
3a027f5e
 {
     IffDemuxContext *iff = s->priv_data;
471fe57e
     AVIOContext *pb = s->pb;
3a027f5e
     AVStream *st;
18313287
     uint8_t *buf;
3a027f5e
     uint32_t chunk_id, data_size;
50b5c229
     uint32_t screenmode = 0, num, den;
18313287
     unsigned transparency = 0;
     unsigned masking = 0; // no mask
af55a9d8
     uint8_t fmt[16];
     int fmt_size;
3a027f5e
 
3b3bbdd3
     st = avformat_new_stream(s, NULL);
3a027f5e
     if (!st)
4f5e6ef1
         return AVERROR(ENOMEM);
3a027f5e
 
     st->codec->channels = 1;
024e0370
     st->codec->channel_layout = AV_CH_LAYOUT_MONO;
45a8a02a
     avio_skip(pb, 8);
02c4f626
     // codec_tag used by ByteRun1 decoder to distinguish progressive (PBM) and interlaced (ILBM) content
e63a3628
     st->codec->codec_tag = avio_rl32(pb);
1560c329
     iff->bitmap_compression = -1;
     iff->svx8_compression = -1;
     iff->maud_bits = -1;
     iff->maud_compression = -1;
3a027f5e
 
46dcabf8
     while(!url_feof(pb)) {
         uint64_t orig_pos;
8af7dbce
         int res;
         const char *metadata_tag = NULL;
e63a3628
         chunk_id = avio_rl32(pb);
         data_size = avio_rb32(pb);
384c9c2f
         orig_pos = avio_tell(pb);
3a027f5e
 
         switch(chunk_id) {
         case ID_VHDR:
72415b2a
             st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
46dcabf8
 
             if (data_size < 14)
                 return AVERROR_INVALIDDATA;
45a8a02a
             avio_skip(pb, 12);
e63a3628
             st->codec->sample_rate = avio_rb16(pb);
46dcabf8
             if (data_size >= 16) {
45a8a02a
                 avio_skip(pb, 1);
1af99b02
                 iff->svx8_compression = avio_r8(pb);
46dcabf8
             }
3a027f5e
             break;
 
50b5c229
         case ID_MHDR:
             st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
 
             if (data_size < 32)
                 return AVERROR_INVALIDDATA;
             avio_skip(pb, 4);
             iff->maud_bits = avio_rb16(pb);
             avio_skip(pb, 2);
             num = avio_rb32(pb);
             den = avio_rb16(pb);
             if (!den)
                 return AVERROR_INVALIDDATA;
             avio_skip(pb, 2);
             st->codec->sample_rate = num / den;
             st->codec->channels = avio_rb16(pb);
             iff->maud_compression = avio_rb16(pb);
             if (st->codec->channels == 1)
                 st->codec->channel_layout = AV_CH_LAYOUT_MONO;
             else if (st->codec->channels == 2)
                 st->codec->channel_layout = AV_CH_LAYOUT_STEREO;
             break;
 
cf14c822
         case ID_ABIT:
3a027f5e
         case ID_BODY:
af55a9d8
         case ID_DBOD:
50b5c229
         case ID_MDAT:
384c9c2f
             iff->body_pos = avio_tell(pb);
7f7f31bf
             iff->body_end = iff->body_pos + data_size;
3a027f5e
             iff->body_size = data_size;
             break;
 
         case ID_CHAN:
46dcabf8
             if (data_size < 4)
                 return AVERROR_INVALIDDATA;
024e0370
             if (avio_rb32(pb) < 6) {
                 st->codec->channels       = 1;
                 st->codec->channel_layout = AV_CH_LAYOUT_MONO;
             } else {
                 st->codec->channels       = 2;
                 st->codec->channel_layout = AV_CH_LAYOUT_STEREO;
             }
3a027f5e
             break;
 
18313287
         case ID_CAMG:
             if (data_size < 4)
                 return AVERROR_INVALIDDATA;
             screenmode                = avio_rb32(pb);
             break;
 
02c4f626
         case ID_CMAP:
50c449ac
             if (data_size < 3 || data_size > 768 || data_size % 3) {
                  av_log(s, AV_LOG_ERROR, "Invalid CMAP chunk size %d\n",
                         data_size);
                  return AVERROR_INVALIDDATA;
             }
18313287
             st->codec->extradata_size = data_size + IFF_EXTRA_VIDEO_SIZE;
             st->codec->extradata      = av_malloc(data_size + IFF_EXTRA_VIDEO_SIZE + FF_INPUT_BUFFER_PADDING_SIZE);
02c4f626
             if (!st->codec->extradata)
                 return AVERROR(ENOMEM);
18313287
             if (avio_read(pb, st->codec->extradata + IFF_EXTRA_VIDEO_SIZE, data_size) < 0)
02c4f626
                 return AVERROR(EIO);
             break;
 
         case ID_BMHD:
72415b2a
             st->codec->codec_type            = AVMEDIA_TYPE_VIDEO;
46dcabf8
             if (data_size <= 8)
                 return AVERROR_INVALIDDATA;
e63a3628
             st->codec->width                 = avio_rb16(pb);
             st->codec->height                = avio_rb16(pb);
45a8a02a
             avio_skip(pb, 4); // x, y offset
e63a3628
             st->codec->bits_per_coded_sample = avio_r8(pb);
18313287
             if (data_size >= 10)
                 masking                      = avio_r8(pb);
             if (data_size >= 11)
1af99b02
                 iff->bitmap_compression      = avio_r8(pb);
18313287
             if (data_size >= 14) {
                 avio_skip(pb, 1); // padding
                 transparency                 = avio_rb16(pb);
46dcabf8
             }
             if (data_size >= 16) {
e63a3628
                 st->sample_aspect_ratio.num  = avio_r8(pb);
                 st->sample_aspect_ratio.den  = avio_r8(pb);
46dcabf8
             }
02c4f626
             break;
 
af55a9d8
         case ID_DPEL:
             if (data_size < 4 || (data_size & 3))
                 return AVERROR_INVALIDDATA;
             if ((fmt_size = avio_read(pb, fmt, sizeof(fmt))) < 0)
                 return fmt_size;
             if (fmt_size == sizeof(deep_rgb24) && !memcmp(fmt, deep_rgb24, sizeof(deep_rgb24)))
ac627b3d
                 st->codec->pix_fmt = AV_PIX_FMT_RGB24;
af55a9d8
             else if (fmt_size == sizeof(deep_rgba) && !memcmp(fmt, deep_rgba, sizeof(deep_rgba)))
ac627b3d
                 st->codec->pix_fmt = AV_PIX_FMT_RGBA;
d26eeb0d
             else if (fmt_size == sizeof(deep_bgra) && !memcmp(fmt, deep_bgra, sizeof(deep_bgra)))
                 st->codec->pix_fmt = AV_PIX_FMT_BGRA;
             else if (fmt_size == sizeof(deep_argb) && !memcmp(fmt, deep_argb, sizeof(deep_argb)))
                 st->codec->pix_fmt = AV_PIX_FMT_ARGB;
             else if (fmt_size == sizeof(deep_abgr) && !memcmp(fmt, deep_abgr, sizeof(deep_abgr)))
                 st->codec->pix_fmt = AV_PIX_FMT_ABGR;
af55a9d8
             else {
a9b42487
                 avpriv_request_sample(s, "color format %.16s", fmt);
af55a9d8
                 return AVERROR_PATCHWELCOME;
             }
             break;
 
         case ID_DGBL:
             st->codec->codec_type            = AVMEDIA_TYPE_VIDEO;
             if (data_size < 8)
                 return AVERROR_INVALIDDATA;
             st->codec->width                 = avio_rb16(pb);
             st->codec->height                = avio_rb16(pb);
             iff->bitmap_compression          = avio_rb16(pb);
             st->sample_aspect_ratio.num      = avio_r8(pb);
             st->sample_aspect_ratio.den      = avio_r8(pb);
             st->codec->bits_per_coded_sample = 24;
             break;
 
05001dd7
         case ID_DLOC:
             if (data_size < 4)
                 return AVERROR_INVALIDDATA;
             st->codec->width  = avio_rb16(pb);
             st->codec->height = avio_rb16(pb);
             break;
 
1696c72a
         case ID_TVDC:
             if (data_size < sizeof(iff->tvdc))
                 return AVERROR_INVALIDDATA;
             res = avio_read(pb, iff->tvdc, sizeof(iff->tvdc));
             if (res < 0)
                 return res;
             break;
 
899605f1
         case ID_ANNO:
d8353256
         case ID_TEXT:      metadata_tag = "comment";   break;
         case ID_AUTH:      metadata_tag = "artist";    break;
         case ID_COPYRIGHT: metadata_tag = "copyright"; break;
         case ID_NAME:      metadata_tag = "title";     break;
3a027f5e
         }
46dcabf8
 
8af7dbce
         if (metadata_tag) {
             if ((res = get_metadata(s, metadata_tag, data_size)) < 0) {
08277a45
                 av_log(s, AV_LOG_ERROR, "cannot allocate metadata tag %s!\n", metadata_tag);
8af7dbce
                 return res;
             }
         }
45a8a02a
         avio_skip(pb, data_size - (avio_tell(pb) - orig_pos) + (data_size & 1));
3a027f5e
     }
 
f59d8ff8
     avio_seek(pb, iff->body_pos, SEEK_SET);
46dcabf8
 
02c4f626
     switch(st->codec->codec_type) {
72415b2a
     case AVMEDIA_TYPE_AUDIO:
c3f9ebf7
         avpriv_set_pts_info(st, 32, 1, st->codec->sample_rate);
3a027f5e
 
01eed8c6
         if (st->codec->codec_tag == ID_16SV)
             st->codec->codec_id = AV_CODEC_ID_PCM_S16BE_PLANAR;
50b5c229
         else if (st->codec->codec_tag == ID_MAUD) {
             if (iff->maud_bits == 8 && !iff->maud_compression) {
                 st->codec->codec_id = AV_CODEC_ID_PCM_U8;
             } else if (iff->maud_bits == 16 && !iff->maud_compression) {
                 st->codec->codec_id = AV_CODEC_ID_PCM_S16BE;
             } else if (iff->maud_bits ==  8 && iff->maud_compression == 2) {
                 st->codec->codec_id = AV_CODEC_ID_PCM_ALAW;
             } else if (iff->maud_bits ==  8 && iff->maud_compression == 3) {
                 st->codec->codec_id = AV_CODEC_ID_PCM_MULAW;
             } else {
a9b42487
                 avpriv_request_sample(s, "compression %d and bit depth %d", iff->maud_compression, iff->maud_bits);
50b5c229
                 return AVERROR_PATCHWELCOME;
             }
 
             st->codec->bits_per_coded_sample =
                 av_get_bits_per_sample(st->codec->codec_id);
 
             st->codec->block_align =
                 st->codec->bits_per_coded_sample * st->codec->channels / 8;
         } else {
1af99b02
         switch (iff->svx8_compression) {
e5953464
         case COMP_NONE:
36ef5369
             st->codec->codec_id = AV_CODEC_ID_PCM_S8_PLANAR;
e5953464
             break;
         case COMP_FIB:
36ef5369
             st->codec->codec_id = AV_CODEC_ID_8SVX_FIB;
e5953464
             break;
         case COMP_EXP:
36ef5369
             st->codec->codec_id = AV_CODEC_ID_8SVX_EXP;
e5953464
             break;
         default:
1af99b02
             av_log(s, AV_LOG_ERROR,
                    "Unknown SVX8 compression method '%d'\n", iff->svx8_compression);
e5953464
             return -1;
         }
01eed8c6
         }
3a027f5e
 
01eed8c6
         st->codec->bits_per_coded_sample = av_get_bits_per_sample(st->codec->codec_id);
e5953464
         st->codec->bit_rate = st->codec->channels * st->codec->sample_rate * st->codec->bits_per_coded_sample;
         st->codec->block_align = st->codec->channels * st->codec->bits_per_coded_sample;
         break;
02c4f626
 
72415b2a
     case AVMEDIA_TYPE_VIDEO:
18313287
         iff->bpp          = st->codec->bits_per_coded_sample;
         if ((screenmode & 0x800 /* Hold And Modify */) && iff->bpp <= 8) {
             iff->ham      = iff->bpp > 6 ? 6 : 4;
             st->codec->bits_per_coded_sample = 24;
         }
         iff->flags        = (screenmode & 0x80 /* Extra HalfBrite */) && iff->bpp <= 8;
         iff->masking      = masking;
         iff->transparency = transparency;
 
         if (!st->codec->extradata) {
             st->codec->extradata_size = IFF_EXTRA_VIDEO_SIZE;
             st->codec->extradata      = av_malloc(IFF_EXTRA_VIDEO_SIZE + FF_INPUT_BUFFER_PADDING_SIZE);
             if (!st->codec->extradata)
                 return AVERROR(ENOMEM);
         }
3dbc0ff9
         av_assert0(st->codec->extradata_size >= IFF_EXTRA_VIDEO_SIZE);
18313287
         buf = st->codec->extradata;
         bytestream_put_be16(&buf, IFF_EXTRA_VIDEO_SIZE);
1af99b02
         bytestream_put_byte(&buf, iff->bitmap_compression);
18313287
         bytestream_put_byte(&buf, iff->bpp);
         bytestream_put_byte(&buf, iff->ham);
         bytestream_put_byte(&buf, iff->flags);
         bytestream_put_be16(&buf, iff->transparency);
         bytestream_put_byte(&buf, iff->masking);
1696c72a
         bytestream_put_buffer(&buf, iff->tvdc, sizeof(iff->tvdc));
76f60788
         st->codec->codec_id = AV_CODEC_ID_IFF_ILBM;
02c4f626
         break;
     default:
         return -1;
     }
3a027f5e
 
     return 0;
 }
 
 static int iff_read_packet(AVFormatContext *s,
                            AVPacket *pkt)
 {
     IffDemuxContext *iff = s->priv_data;
471fe57e
     AVIOContext *pb = s->pb;
02c4f626
     AVStream *st = s->streams[0];
3a027f5e
     int ret;
7f7f31bf
     int64_t pos = avio_tell(pb);
3a027f5e
 
7f7f31bf
     if (pos >= iff->body_end)
1993c684
         return AVERROR_EOF;
86b2d47f
 
e280a4da
     if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
50b5c229
         if (st->codec->codec_tag == ID_MAUD) {
7f7f31bf
             ret = av_get_packet(pb, pkt, FFMIN(iff->body_end - pos, 1024 * st->codec->block_align));
50b5c229
         } else {
             ret = av_get_packet(pb, pkt, iff->body_size);
         }
0613ece5
     } else if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
18313287
         uint8_t *buf;
 
         if (av_new_packet(pkt, iff->body_size + 2) < 0) {
             return AVERROR(ENOMEM);
         }
 
         buf = pkt->data;
         bytestream_put_be16(&buf, 2);
         ret = avio_read(pb, buf, iff->body_size);
6f9be910
         if (ret<0) {
             av_free_packet(pkt);
         } else if (ret < iff->body_size)
2b31a9c6
             av_shrink_packet(pkt, ret + 2);
b4434475
     } else {
b2bc48ae
         av_assert0(0);
86b2d47f
     }
3a027f5e
 
7f7f31bf
     if (pos == iff->body_pos)
cc947f04
         pkt->flags |= AV_PKT_FLAG_KEY;
50b5c229
     if (ret < 0)
         return ret;
3a027f5e
     pkt->stream_index = 0;
     return ret;
 }
 
66355be3
 AVInputFormat ff_iff_demuxer = {
68aef0b4
     .name           = "iff",
0177b7d2
     .long_name      = NULL_IF_CONFIG_SMALL("IFF (Interchange File Format)"),
dfc2c4d9
     .priv_data_size = sizeof(IffDemuxContext),
     .read_probe     = iff_probe,
     .read_header    = iff_read_header,
     .read_packet    = iff_read_packet,
03cd3bec
     .flags          = AVFMT_GENERIC_INDEX | AVFMT_NO_BYTE_SEEK,
3a027f5e
 };