You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

761 lines
27KB

  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 <inttypes.h>
  30. #include "libavutil/avassert.h"
  31. #include "libavutil/channel_layout.h"
  32. #include "libavutil/intreadwrite.h"
  33. #include "libavutil/dict.h"
  34. #include "libavcodec/bytestream.h"
  35. #include "avformat.h"
  36. #include "id3v2.h"
  37. #include "internal.h"
  38. #define ID_8SVX MKTAG('8','S','V','X')
  39. #define ID_16SV MKTAG('1','6','S','V')
  40. #define ID_MAUD MKTAG('M','A','U','D')
  41. #define ID_MHDR MKTAG('M','H','D','R')
  42. #define ID_MDAT MKTAG('M','D','A','T')
  43. #define ID_VHDR MKTAG('V','H','D','R')
  44. #define ID_ATAK MKTAG('A','T','A','K')
  45. #define ID_RLSE MKTAG('R','L','S','E')
  46. #define ID_CHAN MKTAG('C','H','A','N')
  47. #define ID_PBM MKTAG('P','B','M',' ')
  48. #define ID_ILBM MKTAG('I','L','B','M')
  49. #define ID_BMHD MKTAG('B','M','H','D')
  50. #define ID_DGBL MKTAG('D','G','B','L')
  51. #define ID_CAMG MKTAG('C','A','M','G')
  52. #define ID_CMAP MKTAG('C','M','A','P')
  53. #define ID_ACBM MKTAG('A','C','B','M')
  54. #define ID_DEEP MKTAG('D','E','E','P')
  55. #define ID_RGB8 MKTAG('R','G','B','8')
  56. #define ID_RGBN MKTAG('R','G','B','N')
  57. #define ID_DSD MKTAG('D','S','D',' ')
  58. #define ID_ANIM MKTAG('A','N','I','M')
  59. #define ID_FORM MKTAG('F','O','R','M')
  60. #define ID_FRM8 MKTAG('F','R','M','8')
  61. #define ID_ANNO MKTAG('A','N','N','O')
  62. #define ID_AUTH MKTAG('A','U','T','H')
  63. #define ID_CHRS MKTAG('C','H','R','S')
  64. #define ID_COPYRIGHT MKTAG('(','c',')',' ')
  65. #define ID_CSET MKTAG('C','S','E','T')
  66. #define ID_FVER MKTAG('F','V','E','R')
  67. #define ID_NAME MKTAG('N','A','M','E')
  68. #define ID_TEXT MKTAG('T','E','X','T')
  69. #define ID_ABIT MKTAG('A','B','I','T')
  70. #define ID_BODY MKTAG('B','O','D','Y')
  71. #define ID_DBOD MKTAG('D','B','O','D')
  72. #define ID_DPEL MKTAG('D','P','E','L')
  73. #define ID_DLOC MKTAG('D','L','O','C')
  74. #define ID_TVDC MKTAG('T','V','D','C')
  75. #define LEFT 2
  76. #define RIGHT 4
  77. #define STEREO 6
  78. /**
  79. * This number of bytes if added at the beginning of each AVPacket
  80. * which contain additional information about video properties
  81. * which has to be shared between demuxer and decoder.
  82. * This number may change between frames, e.g. the demuxer might
  83. * set it to smallest possible size of 2 to indicate that there's
  84. * no extradata changing in this frame.
  85. */
  86. #define IFF_EXTRA_VIDEO_SIZE 41
  87. typedef enum {
  88. COMP_NONE,
  89. COMP_FIB,
  90. COMP_EXP
  91. } svx8_compression_type;
  92. typedef struct IffDemuxContext {
  93. int is_64bit; ///< chunk size is 64-bit
  94. int64_t body_pos;
  95. int64_t body_end;
  96. uint32_t body_size;
  97. svx8_compression_type svx8_compression;
  98. unsigned maud_bits;
  99. unsigned maud_compression;
  100. unsigned bitmap_compression; ///< delta compression method used
  101. unsigned bpp; ///< bits per plane to decode (differs from bits_per_coded_sample if HAM)
  102. unsigned ham; ///< 0 if non-HAM or number of hold bits (6 for bpp > 6, 4 otherwise)
  103. unsigned flags; ///< 1 for EHB, 0 is no extra half darkening
  104. unsigned transparency; ///< transparency color index in palette
  105. unsigned masking; ///< masking method used
  106. uint8_t tvdc[32]; ///< TVDC lookup table
  107. } IffDemuxContext;
  108. /* Metadata string read */
  109. static int get_metadata(AVFormatContext *s,
  110. const char *const tag,
  111. const unsigned data_size)
  112. {
  113. uint8_t *buf = ((data_size + 1) == 0) ? NULL : av_malloc(data_size + 1);
  114. if (!buf)
  115. return AVERROR(ENOMEM);
  116. if (avio_read(s->pb, buf, data_size) != data_size) {
  117. av_free(buf);
  118. return AVERROR(EIO);
  119. }
  120. buf[data_size] = 0;
  121. av_dict_set(&s->metadata, tag, buf, AV_DICT_DONT_STRDUP_VAL);
  122. return 0;
  123. }
  124. static int iff_probe(AVProbeData *p)
  125. {
  126. const uint8_t *d = p->buf;
  127. if ( (AV_RL32(d) == ID_FORM &&
  128. (AV_RL32(d+8) == ID_8SVX ||
  129. AV_RL32(d+8) == ID_16SV ||
  130. AV_RL32(d+8) == ID_MAUD ||
  131. AV_RL32(d+8) == ID_PBM ||
  132. AV_RL32(d+8) == ID_ACBM ||
  133. AV_RL32(d+8) == ID_DEEP ||
  134. AV_RL32(d+8) == ID_ILBM ||
  135. AV_RL32(d+8) == ID_RGB8 ||
  136. AV_RL32(d+8) == ID_RGB8 ||
  137. AV_RL32(d+8) == ID_ANIM ||
  138. AV_RL32(d+8) == ID_RGBN)) ||
  139. (AV_RL32(d) == ID_FRM8 && AV_RL32(d+12) == ID_DSD))
  140. return AVPROBE_SCORE_MAX;
  141. return 0;
  142. }
  143. static const AVCodecTag dsd_codec_tags[] = {
  144. { AV_CODEC_ID_DSD_MSBF, ID_DSD },
  145. { AV_CODEC_ID_NONE, 0 },
  146. };
  147. #define DSD_SLFT MKTAG('S','L','F','T')
  148. #define DSD_SRGT MKTAG('S','R','G','T')
  149. #define DSD_MLFT MKTAG('M','L','F','T')
  150. #define DSD_MRGT MKTAG('M','R','G','T')
  151. #define DSD_C MKTAG('C',' ',' ',' ')
  152. #define DSD_LS MKTAG('L','S',' ',' ')
  153. #define DSD_RS MKTAG('R','S',' ',' ')
  154. #define DSD_LFE MKTAG('L','F','E',' ')
  155. static const uint32_t dsd_stereo[] = { DSD_SLFT, DSD_SRGT };
  156. static const uint32_t dsd_5point0[] = { DSD_MLFT, DSD_MRGT, DSD_C, DSD_LS, DSD_RS };
  157. static const uint32_t dsd_5point1[] = { DSD_MLFT, DSD_MRGT, DSD_C, DSD_LFE, DSD_LS, DSD_RS };
  158. typedef struct {
  159. uint64_t layout;
  160. const uint32_t * dsd_layout;
  161. } DSDLayoutDesc;
  162. static const DSDLayoutDesc dsd_channel_layout[] = {
  163. { AV_CH_LAYOUT_STEREO, dsd_stereo },
  164. { AV_CH_LAYOUT_5POINT0, dsd_5point0 },
  165. { AV_CH_LAYOUT_5POINT1, dsd_5point1 },
  166. };
  167. static const uint64_t dsd_loudspeaker_config[] = {
  168. AV_CH_LAYOUT_STEREO,
  169. 0, 0,
  170. AV_CH_LAYOUT_5POINT0, AV_CH_LAYOUT_5POINT1,
  171. };
  172. static const char * dsd_source_comment[] = {
  173. "dsd_source_comment",
  174. "analogue_source_comment",
  175. "pcm_source_comment",
  176. };
  177. static const char * dsd_history_comment[] = {
  178. "general_remark",
  179. "operator_name",
  180. "creating_machine",
  181. "timezone",
  182. "file_revision"
  183. };
  184. static int parse_dsd_diin(AVFormatContext *s, AVStream *st, uint64_t eof)
  185. {
  186. AVIOContext *pb = s->pb;
  187. while (avio_tell(pb) + 12 <= eof) {
  188. uint32_t tag = avio_rl32(pb);
  189. uint64_t size = avio_rb64(pb);
  190. uint64_t orig_pos = avio_tell(pb);
  191. const char * metadata_tag = NULL;
  192. switch(tag) {
  193. case MKTAG('D','I','A','R'): metadata_tag = "artist"; break;
  194. case MKTAG('D','I','T','I'): metadata_tag = "title"; break;
  195. }
  196. if (metadata_tag && size > 4) {
  197. unsigned int tag_size = avio_rb32(pb);
  198. int ret = get_metadata(s, metadata_tag, FFMIN(tag_size, size - 4));
  199. if (ret < 0) {
  200. av_log(s, AV_LOG_ERROR, "cannot allocate metadata tag %s!\n", metadata_tag);
  201. return ret;
  202. }
  203. }
  204. avio_skip(pb, size - (avio_tell(pb) - orig_pos) + (size & 1));
  205. }
  206. return 0;
  207. }
  208. static int parse_dsd_prop(AVFormatContext *s, AVStream *st, uint64_t eof)
  209. {
  210. AVIOContext *pb = s->pb;
  211. char abss[24];
  212. int hour, min, sec, i, ret, config;
  213. int dsd_layout[6];
  214. ID3v2ExtraMeta *id3v2_extra_meta;
  215. while (avio_tell(pb) + 12 <= eof) {
  216. uint32_t tag = avio_rl32(pb);
  217. uint64_t size = avio_rb64(pb);
  218. uint64_t orig_pos = avio_tell(pb);
  219. switch(tag) {
  220. case MKTAG('A','B','S','S'):
  221. if (size < 8)
  222. return AVERROR_INVALIDDATA;
  223. hour = avio_rb16(pb);
  224. min = avio_r8(pb);
  225. sec = avio_r8(pb);
  226. snprintf(abss, sizeof(abss), "%02dh:%02dm:%02ds:%d", hour, min, sec, avio_rb32(pb));
  227. av_dict_set(&st->metadata, "absolute_start_time", abss, 0);
  228. break;
  229. case MKTAG('C','H','N','L'):
  230. if (size < 2)
  231. return AVERROR_INVALIDDATA;
  232. st->codec->channels = avio_rb16(pb);
  233. if (size < 2 + st->codec->channels * 4)
  234. return AVERROR_INVALIDDATA;
  235. st->codec->channel_layout = 0;
  236. if (st->codec->channels > FF_ARRAY_ELEMS(dsd_layout)) {
  237. avpriv_request_sample(s, "channel layout");
  238. break;
  239. }
  240. for (i = 0; i < st->codec->channels; i++)
  241. dsd_layout[i] = avio_rl32(pb);
  242. for (i = 0; i < FF_ARRAY_ELEMS(dsd_channel_layout); i++) {
  243. const DSDLayoutDesc * d = &dsd_channel_layout[i];
  244. if (av_get_channel_layout_nb_channels(d->layout) == st->codec->channels &&
  245. !memcmp(d->dsd_layout, dsd_layout, st->codec->channels * sizeof(uint32_t))) {
  246. st->codec->channel_layout = d->layout;
  247. break;
  248. }
  249. }
  250. break;
  251. case MKTAG('C','M','P','R'):
  252. if (size < 4)
  253. return AVERROR_INVALIDDATA;
  254. tag = avio_rl32(pb);
  255. st->codec->codec_id = ff_codec_get_id(dsd_codec_tags, tag);
  256. if (!st->codec->codec_id) {
  257. av_log(s, AV_LOG_ERROR, "'%c%c%c%c' compression is not supported\n",
  258. tag&0xFF, (tag>>8)&0xFF, (tag>>16)&0xFF, (tag>>24)&0xFF);
  259. return AVERROR_PATCHWELCOME;
  260. }
  261. break;
  262. case MKTAG('F','S',' ',' '):
  263. if (size < 4)
  264. return AVERROR_INVALIDDATA;
  265. st->codec->sample_rate = avio_rb32(pb) / 8;
  266. break;
  267. case MKTAG('I','D','3',' '):
  268. id3v2_extra_meta = NULL;
  269. ff_id3v2_read(s, ID3v2_DEFAULT_MAGIC, &id3v2_extra_meta, size);
  270. if (id3v2_extra_meta) {
  271. if ((ret = ff_id3v2_parse_apic(s, &id3v2_extra_meta)) < 0) {
  272. ff_id3v2_free_extra_meta(&id3v2_extra_meta);
  273. return ret;
  274. }
  275. ff_id3v2_free_extra_meta(&id3v2_extra_meta);
  276. }
  277. if (size < avio_tell(pb) - orig_pos) {
  278. av_log(s, AV_LOG_ERROR, "id3 exceeds chunk size\n");
  279. return AVERROR_INVALIDDATA;
  280. }
  281. break;
  282. case MKTAG('L','S','C','O'):
  283. if (size < 2)
  284. return AVERROR_INVALIDDATA;
  285. config = avio_rb16(pb);
  286. if (config != 0xFFFF) {
  287. if (config < FF_ARRAY_ELEMS(dsd_loudspeaker_config))
  288. st->codec->channel_layout = dsd_loudspeaker_config[config];
  289. if (!st->codec->channel_layout)
  290. avpriv_request_sample(s, "loudspeaker configuration %d", config);
  291. }
  292. break;
  293. }
  294. avio_skip(pb, size - (avio_tell(pb) - orig_pos) + (size & 1));
  295. }
  296. return 0;
  297. }
  298. static const uint8_t deep_rgb24[] = {0, 0, 0, 3, 0, 1, 0, 8, 0, 2, 0, 8, 0, 3, 0, 8};
  299. static const uint8_t deep_rgba[] = {0, 0, 0, 4, 0, 1, 0, 8, 0, 2, 0, 8, 0, 3, 0, 8};
  300. static const uint8_t deep_bgra[] = {0, 0, 0, 4, 0, 3, 0, 8, 0, 2, 0, 8, 0, 1, 0, 8};
  301. static const uint8_t deep_argb[] = {0, 0, 0, 4, 0,17, 0, 8, 0, 1, 0, 8, 0, 2, 0, 8};
  302. static const uint8_t deep_abgr[] = {0, 0, 0, 4, 0,17, 0, 8, 0, 3, 0, 8, 0, 2, 0, 8};
  303. static int iff_read_header(AVFormatContext *s)
  304. {
  305. IffDemuxContext *iff = s->priv_data;
  306. AVIOContext *pb = s->pb;
  307. AVStream *st;
  308. uint8_t *buf;
  309. uint32_t chunk_id;
  310. uint64_t data_size;
  311. uint32_t screenmode = 0, num, den;
  312. unsigned transparency = 0;
  313. unsigned masking = 0; // no mask
  314. uint8_t fmt[16];
  315. int fmt_size;
  316. st = avformat_new_stream(s, NULL);
  317. if (!st)
  318. return AVERROR(ENOMEM);
  319. st->codec->channels = 1;
  320. st->codec->channel_layout = AV_CH_LAYOUT_MONO;
  321. iff->is_64bit = avio_rl32(pb) == ID_FRM8;
  322. avio_skip(pb, iff->is_64bit ? 8 : 4);
  323. // codec_tag used by ByteRun1 decoder to distinguish progressive (PBM) and interlaced (ILBM) content
  324. st->codec->codec_tag = avio_rl32(pb);
  325. if (st->codec->codec_tag == ID_ANIM) {
  326. avio_skip(pb, 8);
  327. st->codec->codec_tag = avio_rl32(pb);
  328. }
  329. iff->bitmap_compression = -1;
  330. iff->svx8_compression = -1;
  331. iff->maud_bits = -1;
  332. iff->maud_compression = -1;
  333. while(!avio_feof(pb)) {
  334. uint64_t orig_pos;
  335. int res;
  336. const char *metadata_tag = NULL;
  337. int version, nb_comments, i;
  338. chunk_id = avio_rl32(pb);
  339. data_size = iff->is_64bit ? avio_rb64(pb) : avio_rb32(pb);
  340. orig_pos = avio_tell(pb);
  341. switch(chunk_id) {
  342. case ID_VHDR:
  343. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  344. if (data_size < 14)
  345. return AVERROR_INVALIDDATA;
  346. avio_skip(pb, 12);
  347. st->codec->sample_rate = avio_rb16(pb);
  348. if (data_size >= 16) {
  349. avio_skip(pb, 1);
  350. iff->svx8_compression = avio_r8(pb);
  351. }
  352. break;
  353. case ID_MHDR:
  354. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  355. if (data_size < 32)
  356. return AVERROR_INVALIDDATA;
  357. avio_skip(pb, 4);
  358. iff->maud_bits = avio_rb16(pb);
  359. avio_skip(pb, 2);
  360. num = avio_rb32(pb);
  361. den = avio_rb16(pb);
  362. if (!den)
  363. return AVERROR_INVALIDDATA;
  364. avio_skip(pb, 2);
  365. st->codec->sample_rate = num / den;
  366. st->codec->channels = avio_rb16(pb);
  367. iff->maud_compression = avio_rb16(pb);
  368. if (st->codec->channels == 1)
  369. st->codec->channel_layout = AV_CH_LAYOUT_MONO;
  370. else if (st->codec->channels == 2)
  371. st->codec->channel_layout = AV_CH_LAYOUT_STEREO;
  372. break;
  373. case ID_ABIT:
  374. case ID_BODY:
  375. case ID_DBOD:
  376. case ID_DSD:
  377. case ID_MDAT:
  378. iff->body_pos = avio_tell(pb);
  379. iff->body_end = iff->body_pos + data_size;
  380. iff->body_size = data_size;
  381. break;
  382. case ID_CHAN:
  383. if (data_size < 4)
  384. return AVERROR_INVALIDDATA;
  385. if (avio_rb32(pb) < 6) {
  386. st->codec->channels = 1;
  387. st->codec->channel_layout = AV_CH_LAYOUT_MONO;
  388. } else {
  389. st->codec->channels = 2;
  390. st->codec->channel_layout = AV_CH_LAYOUT_STEREO;
  391. }
  392. break;
  393. case ID_CAMG:
  394. if (data_size < 4)
  395. return AVERROR_INVALIDDATA;
  396. screenmode = avio_rb32(pb);
  397. break;
  398. case ID_CMAP:
  399. if (data_size < 3 || data_size > 768 || data_size % 3) {
  400. av_log(s, AV_LOG_ERROR, "Invalid CMAP chunk size %"PRIu64"\n",
  401. data_size);
  402. return AVERROR_INVALIDDATA;
  403. }
  404. st->codec->extradata_size = data_size + IFF_EXTRA_VIDEO_SIZE;
  405. st->codec->extradata = av_malloc(data_size + IFF_EXTRA_VIDEO_SIZE + FF_INPUT_BUFFER_PADDING_SIZE);
  406. if (!st->codec->extradata)
  407. return AVERROR(ENOMEM);
  408. if (avio_read(pb, st->codec->extradata + IFF_EXTRA_VIDEO_SIZE, data_size) < 0)
  409. return AVERROR(EIO);
  410. break;
  411. case ID_BMHD:
  412. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  413. if (data_size <= 8)
  414. return AVERROR_INVALIDDATA;
  415. st->codec->width = avio_rb16(pb);
  416. st->codec->height = avio_rb16(pb);
  417. avio_skip(pb, 4); // x, y offset
  418. st->codec->bits_per_coded_sample = avio_r8(pb);
  419. if (data_size >= 10)
  420. masking = avio_r8(pb);
  421. if (data_size >= 11)
  422. iff->bitmap_compression = avio_r8(pb);
  423. if (data_size >= 14) {
  424. avio_skip(pb, 1); // padding
  425. transparency = avio_rb16(pb);
  426. }
  427. if (data_size >= 16) {
  428. st->sample_aspect_ratio.num = avio_r8(pb);
  429. st->sample_aspect_ratio.den = avio_r8(pb);
  430. }
  431. break;
  432. case ID_DPEL:
  433. if (data_size < 4 || (data_size & 3))
  434. return AVERROR_INVALIDDATA;
  435. if ((fmt_size = avio_read(pb, fmt, sizeof(fmt))) < 0)
  436. return fmt_size;
  437. if (fmt_size == sizeof(deep_rgb24) && !memcmp(fmt, deep_rgb24, sizeof(deep_rgb24)))
  438. st->codec->pix_fmt = AV_PIX_FMT_RGB24;
  439. else if (fmt_size == sizeof(deep_rgba) && !memcmp(fmt, deep_rgba, sizeof(deep_rgba)))
  440. st->codec->pix_fmt = AV_PIX_FMT_RGBA;
  441. else if (fmt_size == sizeof(deep_bgra) && !memcmp(fmt, deep_bgra, sizeof(deep_bgra)))
  442. st->codec->pix_fmt = AV_PIX_FMT_BGRA;
  443. else if (fmt_size == sizeof(deep_argb) && !memcmp(fmt, deep_argb, sizeof(deep_argb)))
  444. st->codec->pix_fmt = AV_PIX_FMT_ARGB;
  445. else if (fmt_size == sizeof(deep_abgr) && !memcmp(fmt, deep_abgr, sizeof(deep_abgr)))
  446. st->codec->pix_fmt = AV_PIX_FMT_ABGR;
  447. else {
  448. avpriv_request_sample(s, "color format %.16s", fmt);
  449. return AVERROR_PATCHWELCOME;
  450. }
  451. break;
  452. case ID_DGBL:
  453. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  454. if (data_size < 8)
  455. return AVERROR_INVALIDDATA;
  456. st->codec->width = avio_rb16(pb);
  457. st->codec->height = avio_rb16(pb);
  458. iff->bitmap_compression = avio_rb16(pb);
  459. st->sample_aspect_ratio.num = avio_r8(pb);
  460. st->sample_aspect_ratio.den = avio_r8(pb);
  461. st->codec->bits_per_coded_sample = 24;
  462. break;
  463. case ID_DLOC:
  464. if (data_size < 4)
  465. return AVERROR_INVALIDDATA;
  466. st->codec->width = avio_rb16(pb);
  467. st->codec->height = avio_rb16(pb);
  468. break;
  469. case ID_TVDC:
  470. if (data_size < sizeof(iff->tvdc))
  471. return AVERROR_INVALIDDATA;
  472. res = avio_read(pb, iff->tvdc, sizeof(iff->tvdc));
  473. if (res < 0)
  474. return res;
  475. break;
  476. case ID_ANNO:
  477. case ID_TEXT: metadata_tag = "comment"; break;
  478. case ID_AUTH: metadata_tag = "artist"; break;
  479. case ID_COPYRIGHT: metadata_tag = "copyright"; break;
  480. case ID_NAME: metadata_tag = "title"; break;
  481. /* DSD tags */
  482. case MKTAG('F','V','E','R'):
  483. if (data_size < 4)
  484. return AVERROR_INVALIDDATA;
  485. version = avio_rb32(pb);
  486. av_log(s, AV_LOG_DEBUG, "DSIFF v%d.%d.%d.%d\n",version >> 24, (version >> 16) & 0xFF, (version >> 8) & 0xFF, version & 0xFF);
  487. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  488. break;
  489. case MKTAG('D','I','I','N'):
  490. res = parse_dsd_diin(s, st, orig_pos + data_size);
  491. if (res < 0)
  492. return res;
  493. break;
  494. case MKTAG('P','R','O','P'):
  495. if (data_size < 4)
  496. return AVERROR_INVALIDDATA;
  497. if (avio_rl32(pb) != MKTAG('S','N','D',' ')) {
  498. avpriv_request_sample(s, "unknown property type");
  499. break;
  500. }
  501. res = parse_dsd_prop(s, st, orig_pos + data_size);
  502. if (res < 0)
  503. return res;
  504. break;
  505. case MKTAG('C','O','M','T'):
  506. if (data_size < 2)
  507. return AVERROR_INVALIDDATA;
  508. nb_comments = avio_rb16(pb);
  509. for (i = 0; i < nb_comments; i++) {
  510. int year, mon, day, hour, min, type, ref;
  511. char tmp[24];
  512. const char *tag;
  513. int metadata_size;
  514. year = avio_rb16(pb);
  515. mon = avio_r8(pb);
  516. day = avio_r8(pb);
  517. hour = avio_r8(pb);
  518. min = avio_r8(pb);
  519. snprintf(tmp, sizeof(tmp), "%04d-%02d-%02d %02d:%02d", year, mon, day, hour, min);
  520. av_dict_set(&st->metadata, "comment_time", tmp, 0);
  521. type = avio_rb16(pb);
  522. ref = avio_rb16(pb);
  523. switch (type) {
  524. case 1:
  525. if (!i)
  526. tag = "channel_comment";
  527. else {
  528. snprintf(tmp, sizeof(tmp), "channel%d_comment", ref);
  529. tag = tmp;
  530. }
  531. break;
  532. case 2:
  533. tag = ref < FF_ARRAY_ELEMS(dsd_source_comment) ? dsd_source_comment[ref] : "source_comment";
  534. break;
  535. case 3:
  536. tag = ref < FF_ARRAY_ELEMS(dsd_history_comment) ? dsd_history_comment[ref] : "file_history";
  537. break;
  538. default:
  539. tag = "comment";
  540. }
  541. metadata_size = avio_rb32(pb);
  542. if ((res = get_metadata(s, tag, metadata_size)) < 0) {
  543. av_log(s, AV_LOG_ERROR, "cannot allocate metadata tag %s!\n", tag);
  544. return res;
  545. }
  546. if (metadata_size & 1)
  547. avio_skip(pb, 1);
  548. }
  549. break;
  550. }
  551. if (metadata_tag) {
  552. if ((res = get_metadata(s, metadata_tag, data_size)) < 0) {
  553. av_log(s, AV_LOG_ERROR, "cannot allocate metadata tag %s!\n", metadata_tag);
  554. return res;
  555. }
  556. }
  557. avio_skip(pb, data_size - (avio_tell(pb) - orig_pos) + (data_size & 1));
  558. }
  559. avio_seek(pb, iff->body_pos, SEEK_SET);
  560. switch(st->codec->codec_type) {
  561. case AVMEDIA_TYPE_AUDIO:
  562. avpriv_set_pts_info(st, 32, 1, st->codec->sample_rate);
  563. if (st->codec->codec_tag == ID_16SV)
  564. st->codec->codec_id = AV_CODEC_ID_PCM_S16BE_PLANAR;
  565. else if (st->codec->codec_tag == ID_MAUD) {
  566. if (iff->maud_bits == 8 && !iff->maud_compression) {
  567. st->codec->codec_id = AV_CODEC_ID_PCM_U8;
  568. } else if (iff->maud_bits == 16 && !iff->maud_compression) {
  569. st->codec->codec_id = AV_CODEC_ID_PCM_S16BE;
  570. } else if (iff->maud_bits == 8 && iff->maud_compression == 2) {
  571. st->codec->codec_id = AV_CODEC_ID_PCM_ALAW;
  572. } else if (iff->maud_bits == 8 && iff->maud_compression == 3) {
  573. st->codec->codec_id = AV_CODEC_ID_PCM_MULAW;
  574. } else {
  575. avpriv_request_sample(s, "compression %d and bit depth %d", iff->maud_compression, iff->maud_bits);
  576. return AVERROR_PATCHWELCOME;
  577. }
  578. } else if (st->codec->codec_tag != ID_DSD) {
  579. switch (iff->svx8_compression) {
  580. case COMP_NONE:
  581. st->codec->codec_id = AV_CODEC_ID_PCM_S8_PLANAR;
  582. break;
  583. case COMP_FIB:
  584. st->codec->codec_id = AV_CODEC_ID_8SVX_FIB;
  585. break;
  586. case COMP_EXP:
  587. st->codec->codec_id = AV_CODEC_ID_8SVX_EXP;
  588. break;
  589. default:
  590. av_log(s, AV_LOG_ERROR,
  591. "Unknown SVX8 compression method '%d'\n", iff->svx8_compression);
  592. return -1;
  593. }
  594. }
  595. st->codec->bits_per_coded_sample = av_get_bits_per_sample(st->codec->codec_id);
  596. st->codec->bit_rate = st->codec->channels * st->codec->sample_rate * st->codec->bits_per_coded_sample;
  597. st->codec->block_align = st->codec->channels * st->codec->bits_per_coded_sample;
  598. break;
  599. case AVMEDIA_TYPE_VIDEO:
  600. iff->bpp = st->codec->bits_per_coded_sample;
  601. if ((screenmode & 0x800 /* Hold And Modify */) && iff->bpp <= 8) {
  602. iff->ham = iff->bpp > 6 ? 6 : 4;
  603. st->codec->bits_per_coded_sample = 24;
  604. }
  605. iff->flags = (screenmode & 0x80 /* Extra HalfBrite */) && iff->bpp <= 8;
  606. iff->masking = masking;
  607. iff->transparency = transparency;
  608. if (!st->codec->extradata) {
  609. st->codec->extradata_size = IFF_EXTRA_VIDEO_SIZE;
  610. st->codec->extradata = av_malloc(IFF_EXTRA_VIDEO_SIZE + FF_INPUT_BUFFER_PADDING_SIZE);
  611. if (!st->codec->extradata)
  612. return AVERROR(ENOMEM);
  613. }
  614. av_assert0(st->codec->extradata_size >= IFF_EXTRA_VIDEO_SIZE);
  615. buf = st->codec->extradata;
  616. bytestream_put_be16(&buf, IFF_EXTRA_VIDEO_SIZE);
  617. bytestream_put_byte(&buf, iff->bitmap_compression);
  618. bytestream_put_byte(&buf, iff->bpp);
  619. bytestream_put_byte(&buf, iff->ham);
  620. bytestream_put_byte(&buf, iff->flags);
  621. bytestream_put_be16(&buf, iff->transparency);
  622. bytestream_put_byte(&buf, iff->masking);
  623. bytestream_put_buffer(&buf, iff->tvdc, sizeof(iff->tvdc));
  624. st->codec->codec_id = AV_CODEC_ID_IFF_ILBM;
  625. break;
  626. default:
  627. return -1;
  628. }
  629. return 0;
  630. }
  631. static int iff_read_packet(AVFormatContext *s,
  632. AVPacket *pkt)
  633. {
  634. IffDemuxContext *iff = s->priv_data;
  635. AVIOContext *pb = s->pb;
  636. AVStream *st = s->streams[0];
  637. int ret;
  638. int64_t pos = avio_tell(pb);
  639. if (pos >= iff->body_end)
  640. return AVERROR_EOF;
  641. if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
  642. if (st->codec->codec_tag == ID_DSD || st->codec->codec_tag == ID_MAUD) {
  643. ret = av_get_packet(pb, pkt, FFMIN(iff->body_end - pos, 1024 * st->codec->block_align));
  644. } else {
  645. ret = av_get_packet(pb, pkt, iff->body_size);
  646. }
  647. } else if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
  648. uint8_t *buf;
  649. if (av_new_packet(pkt, iff->body_size + 2) < 0) {
  650. return AVERROR(ENOMEM);
  651. }
  652. buf = pkt->data;
  653. bytestream_put_be16(&buf, 2);
  654. ret = avio_read(pb, buf, iff->body_size);
  655. if (ret<0) {
  656. av_free_packet(pkt);
  657. } else if (ret < iff->body_size)
  658. av_shrink_packet(pkt, ret + 2);
  659. } else {
  660. av_assert0(0);
  661. }
  662. if (pos == iff->body_pos)
  663. pkt->flags |= AV_PKT_FLAG_KEY;
  664. if (ret < 0)
  665. return ret;
  666. pkt->stream_index = 0;
  667. return ret;
  668. }
  669. AVInputFormat ff_iff_demuxer = {
  670. .name = "iff",
  671. .long_name = NULL_IF_CONFIG_SMALL("IFF (Interchange File Format)"),
  672. .priv_data_size = sizeof(IffDemuxContext),
  673. .read_probe = iff_probe,
  674. .read_header = iff_read_header,
  675. .read_packet = iff_read_packet,
  676. .flags = AVFMT_GENERIC_INDEX | AVFMT_NO_BYTE_SEEK,
  677. };