iff.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  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. * @file
  24. * IFF file demuxer
  25. * by Jaikrishnan Menon
  26. * for more information on the .iff file format, visit:
  27. * http://wiki.multimedia.cx/index.php?title=IFF
  28. */
  29. #include "libavcodec/bytestream.h"
  30. #include "libavutil/intreadwrite.h"
  31. #include "libavutil/dict.h"
  32. #include "avformat.h"
  33. #include "internal.h"
  34. #define ID_8SVX MKTAG('8','S','V','X')
  35. #define ID_VHDR MKTAG('V','H','D','R')
  36. #define ID_ATAK MKTAG('A','T','A','K')
  37. #define ID_RLSE MKTAG('R','L','S','E')
  38. #define ID_CHAN MKTAG('C','H','A','N')
  39. #define ID_PBM MKTAG('P','B','M',' ')
  40. #define ID_ILBM MKTAG('I','L','B','M')
  41. #define ID_BMHD MKTAG('B','M','H','D')
  42. #define ID_DGBL MKTAG('D','G','B','L')
  43. #define ID_CAMG MKTAG('C','A','M','G')
  44. #define ID_CMAP MKTAG('C','M','A','P')
  45. #define ID_ACBM MKTAG('A','C','B','M')
  46. #define ID_DEEP MKTAG('D','E','E','P')
  47. #define ID_FORM MKTAG('F','O','R','M')
  48. #define ID_ANNO MKTAG('A','N','N','O')
  49. #define ID_AUTH MKTAG('A','U','T','H')
  50. #define ID_CHRS MKTAG('C','H','R','S')
  51. #define ID_COPYRIGHT MKTAG('(','c',')',' ')
  52. #define ID_CSET MKTAG('C','S','E','T')
  53. #define ID_FVER MKTAG('F','V','E','R')
  54. #define ID_NAME MKTAG('N','A','M','E')
  55. #define ID_TEXT MKTAG('T','E','X','T')
  56. #define ID_ABIT MKTAG('A','B','I','T')
  57. #define ID_BODY MKTAG('B','O','D','Y')
  58. #define ID_DBOD MKTAG('D','B','O','D')
  59. #define ID_DPEL MKTAG('D','P','E','L')
  60. #define LEFT 2
  61. #define RIGHT 4
  62. #define STEREO 6
  63. /**
  64. * This number of bytes if added at the beginning of each AVPacket
  65. * which contain additional information about video properties
  66. * which has to be shared between demuxer and decoder.
  67. * This number may change between frames, e.g. the demuxer might
  68. * set it to smallest possible size of 2 to indicate that there's
  69. * no extradata changing in this frame.
  70. */
  71. #define IFF_EXTRA_VIDEO_SIZE 9
  72. typedef enum {
  73. COMP_NONE,
  74. COMP_FIB,
  75. COMP_EXP
  76. } svx8_compression_type;
  77. typedef enum {
  78. BITMAP_RAW,
  79. BITMAP_BYTERUN1
  80. } bitmap_compression_type;
  81. typedef struct {
  82. uint64_t body_pos;
  83. uint32_t body_size;
  84. uint32_t sent_bytes;
  85. svx8_compression_type svx8_compression;
  86. bitmap_compression_type bitmap_compression; ///< delta compression method used
  87. unsigned bpp; ///< bits per plane to decode (differs from bits_per_coded_sample if HAM)
  88. unsigned ham; ///< 0 if non-HAM or number of hold bits (6 for bpp > 6, 4 otherwise)
  89. unsigned flags; ///< 1 for EHB, 0 is no extra half darkening
  90. unsigned transparency; ///< transparency color index in palette
  91. unsigned masking; ///< masking method used
  92. } IffDemuxContext;
  93. /* Metadata string read */
  94. static int get_metadata(AVFormatContext *s,
  95. const char *const tag,
  96. const unsigned data_size)
  97. {
  98. uint8_t *buf = ((data_size + 1) == 0) ? NULL : av_malloc(data_size + 1);
  99. if (!buf)
  100. return AVERROR(ENOMEM);
  101. if (avio_read(s->pb, buf, data_size) < 0) {
  102. av_free(buf);
  103. return AVERROR(EIO);
  104. }
  105. buf[data_size] = 0;
  106. av_dict_set(&s->metadata, tag, buf, AV_DICT_DONT_STRDUP_VAL);
  107. return 0;
  108. }
  109. static int iff_probe(AVProbeData *p)
  110. {
  111. const uint8_t *d = p->buf;
  112. if ( AV_RL32(d) == ID_FORM &&
  113. (AV_RL32(d+8) == ID_8SVX ||
  114. AV_RL32(d+8) == ID_PBM ||
  115. AV_RL32(d+8) == ID_ACBM ||
  116. AV_RL32(d+8) == ID_DEEP ||
  117. AV_RL32(d+8) == ID_ILBM) )
  118. return AVPROBE_SCORE_MAX;
  119. return 0;
  120. }
  121. static const uint8_t deep_rgb24[] = {0, 0, 0, 3, 0, 1, 0, 8, 0, 2, 0, 8, 0, 3, 0, 8};
  122. static const uint8_t deep_rgba[] = {0, 0, 0, 4, 0, 1, 0, 8, 0, 2, 0, 8, 0, 3, 0, 8};
  123. static int iff_read_header(AVFormatContext *s)
  124. {
  125. IffDemuxContext *iff = s->priv_data;
  126. AVIOContext *pb = s->pb;
  127. AVStream *st;
  128. uint8_t *buf;
  129. uint32_t chunk_id, data_size;
  130. uint32_t screenmode = 0;
  131. unsigned transparency = 0;
  132. unsigned masking = 0; // no mask
  133. uint8_t fmt[16];
  134. int fmt_size;
  135. st = avformat_new_stream(s, NULL);
  136. if (!st)
  137. return AVERROR(ENOMEM);
  138. st->codec->channels = 1;
  139. avio_skip(pb, 8);
  140. // codec_tag used by ByteRun1 decoder to distinguish progressive (PBM) and interlaced (ILBM) content
  141. st->codec->codec_tag = avio_rl32(pb);
  142. while(!url_feof(pb)) {
  143. uint64_t orig_pos;
  144. int res;
  145. const char *metadata_tag = NULL;
  146. chunk_id = avio_rl32(pb);
  147. data_size = avio_rb32(pb);
  148. orig_pos = avio_tell(pb);
  149. switch(chunk_id) {
  150. case ID_VHDR:
  151. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  152. if (data_size < 14)
  153. return AVERROR_INVALIDDATA;
  154. avio_skip(pb, 12);
  155. st->codec->sample_rate = avio_rb16(pb);
  156. if (data_size >= 16) {
  157. avio_skip(pb, 1);
  158. iff->svx8_compression = avio_r8(pb);
  159. }
  160. break;
  161. case ID_ABIT:
  162. case ID_BODY:
  163. case ID_DBOD:
  164. iff->body_pos = avio_tell(pb);
  165. iff->body_size = data_size;
  166. break;
  167. case ID_CHAN:
  168. if (data_size < 4)
  169. return AVERROR_INVALIDDATA;
  170. st->codec->channels = (avio_rb32(pb) < 6) ? 1 : 2;
  171. break;
  172. case ID_CAMG:
  173. if (data_size < 4)
  174. return AVERROR_INVALIDDATA;
  175. screenmode = avio_rb32(pb);
  176. break;
  177. case ID_CMAP:
  178. st->codec->extradata_size = data_size + IFF_EXTRA_VIDEO_SIZE;
  179. st->codec->extradata = av_malloc(data_size + IFF_EXTRA_VIDEO_SIZE + FF_INPUT_BUFFER_PADDING_SIZE);
  180. if (!st->codec->extradata)
  181. return AVERROR(ENOMEM);
  182. if (avio_read(pb, st->codec->extradata + IFF_EXTRA_VIDEO_SIZE, data_size) < 0)
  183. return AVERROR(EIO);
  184. break;
  185. case ID_BMHD:
  186. iff->bitmap_compression = -1;
  187. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  188. if (data_size <= 8)
  189. return AVERROR_INVALIDDATA;
  190. st->codec->width = avio_rb16(pb);
  191. st->codec->height = avio_rb16(pb);
  192. avio_skip(pb, 4); // x, y offset
  193. st->codec->bits_per_coded_sample = avio_r8(pb);
  194. if (data_size >= 10)
  195. masking = avio_r8(pb);
  196. if (data_size >= 11)
  197. iff->bitmap_compression = avio_r8(pb);
  198. if (data_size >= 14) {
  199. avio_skip(pb, 1); // padding
  200. transparency = avio_rb16(pb);
  201. }
  202. if (data_size >= 16) {
  203. st->sample_aspect_ratio.num = avio_r8(pb);
  204. st->sample_aspect_ratio.den = avio_r8(pb);
  205. }
  206. break;
  207. case ID_DPEL:
  208. if (data_size < 4 || (data_size & 3))
  209. return AVERROR_INVALIDDATA;
  210. if ((fmt_size = avio_read(pb, fmt, sizeof(fmt))) < 0)
  211. return fmt_size;
  212. if (fmt_size == sizeof(deep_rgb24) && !memcmp(fmt, deep_rgb24, sizeof(deep_rgb24)))
  213. st->codec->pix_fmt = PIX_FMT_RGB24;
  214. else if (fmt_size == sizeof(deep_rgba) && !memcmp(fmt, deep_rgba, sizeof(deep_rgba)))
  215. st->codec->pix_fmt = PIX_FMT_RGBA;
  216. else {
  217. av_log_ask_for_sample(s, "unsupported color format\n");
  218. return AVERROR_PATCHWELCOME;
  219. }
  220. break;
  221. case ID_DGBL:
  222. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  223. if (data_size < 8)
  224. return AVERROR_INVALIDDATA;
  225. st->codec->width = avio_rb16(pb);
  226. st->codec->height = avio_rb16(pb);
  227. iff->bitmap_compression = avio_rb16(pb);
  228. if (iff->bitmap_compression != 0) {
  229. av_log(s, AV_LOG_ERROR,
  230. "compression %i not supported\n", iff->bitmap_compression);
  231. return AVERROR_PATCHWELCOME;
  232. }
  233. st->sample_aspect_ratio.num = avio_r8(pb);
  234. st->sample_aspect_ratio.den = avio_r8(pb);
  235. st->codec->bits_per_coded_sample = 24;
  236. break;
  237. case ID_ANNO:
  238. case ID_TEXT: metadata_tag = "comment"; break;
  239. case ID_AUTH: metadata_tag = "artist"; break;
  240. case ID_COPYRIGHT: metadata_tag = "copyright"; break;
  241. case ID_NAME: metadata_tag = "title"; break;
  242. }
  243. if (metadata_tag) {
  244. if ((res = get_metadata(s, metadata_tag, data_size)) < 0) {
  245. av_log(s, AV_LOG_ERROR, "cannot allocate metadata tag %s!", metadata_tag);
  246. return res;
  247. }
  248. }
  249. avio_skip(pb, data_size - (avio_tell(pb) - orig_pos) + (data_size & 1));
  250. }
  251. avio_seek(pb, iff->body_pos, SEEK_SET);
  252. switch(st->codec->codec_type) {
  253. case AVMEDIA_TYPE_AUDIO:
  254. avpriv_set_pts_info(st, 32, 1, st->codec->sample_rate);
  255. switch (iff->svx8_compression) {
  256. case COMP_NONE:
  257. st->codec->codec_id = AV_CODEC_ID_PCM_S8_PLANAR;
  258. break;
  259. case COMP_FIB:
  260. st->codec->codec_id = AV_CODEC_ID_8SVX_FIB;
  261. break;
  262. case COMP_EXP:
  263. st->codec->codec_id = AV_CODEC_ID_8SVX_EXP;
  264. break;
  265. default:
  266. av_log(s, AV_LOG_ERROR,
  267. "Unknown SVX8 compression method '%d'\n", iff->svx8_compression);
  268. return -1;
  269. }
  270. st->codec->bits_per_coded_sample = iff->svx8_compression == COMP_NONE ? 8 : 4;
  271. st->codec->bit_rate = st->codec->channels * st->codec->sample_rate * st->codec->bits_per_coded_sample;
  272. st->codec->block_align = st->codec->channels * st->codec->bits_per_coded_sample;
  273. break;
  274. case AVMEDIA_TYPE_VIDEO:
  275. iff->bpp = st->codec->bits_per_coded_sample;
  276. if ((screenmode & 0x800 /* Hold And Modify */) && iff->bpp <= 8) {
  277. iff->ham = iff->bpp > 6 ? 6 : 4;
  278. st->codec->bits_per_coded_sample = 24;
  279. }
  280. iff->flags = (screenmode & 0x80 /* Extra HalfBrite */) && iff->bpp <= 8;
  281. iff->masking = masking;
  282. iff->transparency = transparency;
  283. if (!st->codec->extradata) {
  284. st->codec->extradata_size = IFF_EXTRA_VIDEO_SIZE;
  285. st->codec->extradata = av_malloc(IFF_EXTRA_VIDEO_SIZE + FF_INPUT_BUFFER_PADDING_SIZE);
  286. if (!st->codec->extradata)
  287. return AVERROR(ENOMEM);
  288. }
  289. buf = st->codec->extradata;
  290. bytestream_put_be16(&buf, IFF_EXTRA_VIDEO_SIZE);
  291. bytestream_put_byte(&buf, iff->bitmap_compression);
  292. bytestream_put_byte(&buf, iff->bpp);
  293. bytestream_put_byte(&buf, iff->ham);
  294. bytestream_put_byte(&buf, iff->flags);
  295. bytestream_put_be16(&buf, iff->transparency);
  296. bytestream_put_byte(&buf, iff->masking);
  297. switch (iff->bitmap_compression) {
  298. case BITMAP_RAW:
  299. st->codec->codec_id = AV_CODEC_ID_IFF_ILBM;
  300. break;
  301. case BITMAP_BYTERUN1:
  302. st->codec->codec_id = AV_CODEC_ID_IFF_BYTERUN1;
  303. break;
  304. default:
  305. av_log(s, AV_LOG_ERROR,
  306. "Unknown bitmap compression method '%d'\n", iff->bitmap_compression);
  307. return AVERROR_INVALIDDATA;
  308. }
  309. break;
  310. default:
  311. return -1;
  312. }
  313. return 0;
  314. }
  315. static int iff_read_packet(AVFormatContext *s,
  316. AVPacket *pkt)
  317. {
  318. IffDemuxContext *iff = s->priv_data;
  319. AVIOContext *pb = s->pb;
  320. AVStream *st = s->streams[0];
  321. int ret;
  322. if(iff->sent_bytes >= iff->body_size)
  323. return AVERROR_EOF;
  324. if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
  325. ret = av_get_packet(pb, pkt, iff->body_size);
  326. } else if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
  327. uint8_t *buf;
  328. if (av_new_packet(pkt, iff->body_size + 2) < 0) {
  329. return AVERROR(ENOMEM);
  330. }
  331. buf = pkt->data;
  332. bytestream_put_be16(&buf, 2);
  333. ret = avio_read(pb, buf, iff->body_size);
  334. } else {
  335. av_abort();
  336. }
  337. if(iff->sent_bytes == 0)
  338. pkt->flags |= AV_PKT_FLAG_KEY;
  339. iff->sent_bytes = iff->body_size;
  340. pkt->stream_index = 0;
  341. return ret;
  342. }
  343. AVInputFormat ff_iff_demuxer = {
  344. .name = "iff",
  345. .long_name = NULL_IF_CONFIG_SMALL("IFF (Interchange File Format)"),
  346. .priv_data_size = sizeof(IffDemuxContext),
  347. .read_probe = iff_probe,
  348. .read_header = iff_read_header,
  349. .read_packet = iff_read_packet,
  350. };