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.

749 lines
26KB

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