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.

388 lines
12KB

  1. /*
  2. * 4X Technologies .4xm File Demuxer (no muxer)
  3. * Copyright (c) 2003 The ffmpeg Project
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * 4X Technologies file demuxer
  24. * by Mike Melanson (melanson@pcisys.net)
  25. * for more information on the .4xm file format, visit:
  26. * http://www.pcisys.net/~melanson/codecs/
  27. */
  28. #include "libavutil/intreadwrite.h"
  29. #include "libavutil/intfloat.h"
  30. #include "avformat.h"
  31. #include "internal.h"
  32. #define RIFF_TAG MKTAG('R', 'I', 'F', 'F')
  33. #define FOURXMV_TAG MKTAG('4', 'X', 'M', 'V')
  34. #define LIST_TAG MKTAG('L', 'I', 'S', 'T')
  35. #define HEAD_TAG MKTAG('H', 'E', 'A', 'D')
  36. #define TRK__TAG MKTAG('T', 'R', 'K', '_')
  37. #define MOVI_TAG MKTAG('M', 'O', 'V', 'I')
  38. #define VTRK_TAG MKTAG('V', 'T', 'R', 'K')
  39. #define STRK_TAG MKTAG('S', 'T', 'R', 'K')
  40. #define std__TAG MKTAG('s', 't', 'd', '_')
  41. #define name_TAG MKTAG('n', 'a', 'm', 'e')
  42. #define vtrk_TAG MKTAG('v', 't', 'r', 'k')
  43. #define strk_TAG MKTAG('s', 't', 'r', 'k')
  44. #define ifrm_TAG MKTAG('i', 'f', 'r', 'm')
  45. #define pfrm_TAG MKTAG('p', 'f', 'r', 'm')
  46. #define cfrm_TAG MKTAG('c', 'f', 'r', 'm')
  47. #define ifr2_TAG MKTAG('i', 'f', 'r', '2')
  48. #define pfr2_TAG MKTAG('p', 'f', 'r', '2')
  49. #define cfr2_TAG MKTAG('c', 'f', 'r', '2')
  50. #define snd__TAG MKTAG('s', 'n', 'd', '_')
  51. #define vtrk_SIZE 0x44
  52. #define strk_SIZE 0x28
  53. #define GET_LIST_HEADER() \
  54. fourcc_tag = avio_rl32(pb); \
  55. size = avio_rl32(pb); \
  56. if (fourcc_tag != LIST_TAG) \
  57. return AVERROR_INVALIDDATA; \
  58. fourcc_tag = avio_rl32(pb);
  59. typedef struct AudioTrack {
  60. int sample_rate;
  61. int bits;
  62. int channels;
  63. int stream_index;
  64. int adpcm;
  65. int64_t audio_pts;
  66. } AudioTrack;
  67. typedef struct FourxmDemuxContext {
  68. int video_stream_index;
  69. int track_count;
  70. AudioTrack *tracks;
  71. int64_t video_pts;
  72. float fps;
  73. } FourxmDemuxContext;
  74. static int fourxm_probe(AVProbeData *p)
  75. {
  76. if ((AV_RL32(&p->buf[0]) != RIFF_TAG) ||
  77. (AV_RL32(&p->buf[8]) != FOURXMV_TAG))
  78. return 0;
  79. return AVPROBE_SCORE_MAX;
  80. }
  81. static int parse_vtrk(AVFormatContext *s,
  82. FourxmDemuxContext *fourxm, uint8_t *buf, int size,
  83. int left)
  84. {
  85. AVStream *st;
  86. /* check that there is enough data */
  87. if (size != vtrk_SIZE || left < size + 8) {
  88. return AVERROR_INVALIDDATA;
  89. }
  90. /* allocate a new AVStream */
  91. st = avformat_new_stream(s, NULL);
  92. if (!st)
  93. return AVERROR(ENOMEM);
  94. avpriv_set_pts_info(st, 60, 1, fourxm->fps);
  95. fourxm->video_stream_index = st->index;
  96. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  97. st->codec->codec_id = AV_CODEC_ID_4XM;
  98. st->codec->extradata = av_mallocz(4 + FF_INPUT_BUFFER_PADDING_SIZE);
  99. if (!st->codec->extradata)
  100. return AVERROR(ENOMEM);
  101. st->codec->extradata_size = 4;
  102. AV_WL32(st->codec->extradata, AV_RL32(buf + 16));
  103. st->codec->width = AV_RL32(buf + 36);
  104. st->codec->height = AV_RL32(buf + 40);
  105. return 0;
  106. }
  107. static int parse_strk(AVFormatContext *s,
  108. FourxmDemuxContext *fourxm, uint8_t *buf, int size,
  109. int left)
  110. {
  111. AVStream *st;
  112. int track;
  113. /* check that there is enough data */
  114. if (size != strk_SIZE || left < size + 8)
  115. return AVERROR_INVALIDDATA;
  116. track = AV_RL32(buf + 8);
  117. if ((unsigned)track >= UINT_MAX / sizeof(AudioTrack) - 1) {
  118. av_log(s, AV_LOG_ERROR, "current_track too large\n");
  119. return AVERROR_INVALIDDATA;
  120. }
  121. if (track + 1 > fourxm->track_count) {
  122. if (av_reallocp_array(&fourxm->tracks, track + 1, sizeof(AudioTrack)))
  123. return AVERROR(ENOMEM);
  124. memset(&fourxm->tracks[fourxm->track_count], 0,
  125. sizeof(AudioTrack) * (track + 1 - fourxm->track_count));
  126. fourxm->track_count = track + 1;
  127. }
  128. fourxm->tracks[track].adpcm = AV_RL32(buf + 12);
  129. fourxm->tracks[track].channels = AV_RL32(buf + 36);
  130. fourxm->tracks[track].sample_rate = AV_RL32(buf + 40);
  131. fourxm->tracks[track].bits = AV_RL32(buf + 44);
  132. fourxm->tracks[track].audio_pts = 0;
  133. if (fourxm->tracks[track].channels <= 0 ||
  134. fourxm->tracks[track].sample_rate <= 0 ||
  135. fourxm->tracks[track].bits <= 0) {
  136. av_log(s, AV_LOG_ERROR, "audio header invalid\n");
  137. return AVERROR_INVALIDDATA;
  138. }
  139. if (!fourxm->tracks[track].adpcm && fourxm->tracks[track].bits<8) {
  140. av_log(s, AV_LOG_ERROR, "bits unspecified for non ADPCM\n");
  141. return AVERROR_INVALIDDATA;
  142. }
  143. /* allocate a new AVStream */
  144. st = avformat_new_stream(s, NULL);
  145. if (!st)
  146. return AVERROR(ENOMEM);
  147. st->id = track;
  148. avpriv_set_pts_info(st, 60, 1, fourxm->tracks[track].sample_rate);
  149. fourxm->tracks[track].stream_index = st->index;
  150. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  151. st->codec->codec_tag = 0;
  152. st->codec->channels = fourxm->tracks[track].channels;
  153. st->codec->sample_rate = fourxm->tracks[track].sample_rate;
  154. st->codec->bits_per_coded_sample = fourxm->tracks[track].bits;
  155. st->codec->bit_rate = st->codec->channels *
  156. st->codec->sample_rate *
  157. st->codec->bits_per_coded_sample;
  158. st->codec->block_align = st->codec->channels *
  159. st->codec->bits_per_coded_sample;
  160. if (fourxm->tracks[track].adpcm){
  161. st->codec->codec_id = AV_CODEC_ID_ADPCM_4XM;
  162. } else if (st->codec->bits_per_coded_sample == 8) {
  163. st->codec->codec_id = AV_CODEC_ID_PCM_U8;
  164. } else
  165. st->codec->codec_id = AV_CODEC_ID_PCM_S16LE;
  166. return 0;
  167. }
  168. static int fourxm_read_header(AVFormatContext *s)
  169. {
  170. AVIOContext *pb = s->pb;
  171. unsigned int fourcc_tag;
  172. unsigned int size;
  173. int header_size;
  174. FourxmDemuxContext *fourxm = s->priv_data;
  175. unsigned char *header;
  176. int i, ret;
  177. fourxm->track_count = 0;
  178. fourxm->tracks = NULL;
  179. fourxm->fps = 1.0;
  180. /* skip the first 3 32-bit numbers */
  181. avio_skip(pb, 12);
  182. /* check for LIST-HEAD */
  183. GET_LIST_HEADER();
  184. header_size = size - 4;
  185. if (fourcc_tag != HEAD_TAG || header_size < 0)
  186. return AVERROR_INVALIDDATA;
  187. /* allocate space for the header and load the whole thing */
  188. header = av_malloc(header_size);
  189. if (!header)
  190. return AVERROR(ENOMEM);
  191. if (avio_read(pb, header, header_size) != header_size) {
  192. av_free(header);
  193. return AVERROR(EIO);
  194. }
  195. /* take the lazy approach and search for any and all vtrk and strk chunks */
  196. for (i = 0; i < header_size - 8; i++) {
  197. fourcc_tag = AV_RL32(&header[i]);
  198. size = AV_RL32(&header[i + 4]);
  199. if (size > header_size - i - 8 && (fourcc_tag == vtrk_TAG || fourcc_tag == strk_TAG)) {
  200. av_log(s, AV_LOG_ERROR, "chunk larger than array %d>%d\n", size, header_size - i - 8);
  201. return AVERROR_INVALIDDATA;
  202. }
  203. if (fourcc_tag == std__TAG) {
  204. if (header_size - i < 16) {
  205. av_log(s, AV_LOG_ERROR, "std TAG truncated\n");
  206. ret = AVERROR_INVALIDDATA;
  207. goto fail;
  208. }
  209. fourxm->fps = av_int2float(AV_RL32(&header[i + 12]));
  210. } else if (fourcc_tag == vtrk_TAG) {
  211. if ((ret = parse_vtrk(s, fourxm, header + i, size,
  212. header_size - i)) < 0)
  213. goto fail;
  214. i += 8 + size;
  215. } else if (fourcc_tag == strk_TAG) {
  216. if ((ret = parse_strk(s, fourxm, header + i, size,
  217. header_size - i)) < 0)
  218. goto fail;
  219. i += 8 + size;
  220. }
  221. }
  222. /* skip over the LIST-MOVI chunk (which is where the stream should be */
  223. GET_LIST_HEADER();
  224. if (fourcc_tag != MOVI_TAG) {
  225. ret = AVERROR_INVALIDDATA;
  226. goto fail;
  227. }
  228. av_free(header);
  229. /* initialize context members */
  230. fourxm->video_pts = -1; /* first frame will push to 0 */
  231. return 0;
  232. fail:
  233. av_freep(&fourxm->tracks);
  234. av_free(header);
  235. return ret;
  236. }
  237. static int fourxm_read_packet(AVFormatContext *s,
  238. AVPacket *pkt)
  239. {
  240. FourxmDemuxContext *fourxm = s->priv_data;
  241. AVIOContext *pb = s->pb;
  242. unsigned int fourcc_tag;
  243. unsigned int size;
  244. int ret = 0;
  245. unsigned int track_number;
  246. int packet_read = 0;
  247. unsigned char header[8];
  248. int audio_frame_count;
  249. while (!packet_read) {
  250. if ((ret = avio_read(s->pb, header, 8)) < 0)
  251. return ret;
  252. fourcc_tag = AV_RL32(&header[0]);
  253. size = AV_RL32(&header[4]);
  254. if (url_feof(pb))
  255. return AVERROR(EIO);
  256. switch (fourcc_tag) {
  257. case LIST_TAG:
  258. /* this is a good time to bump the video pts */
  259. fourxm->video_pts++;
  260. /* skip the LIST-* tag and move on to the next fourcc */
  261. avio_rl32(pb);
  262. break;
  263. case ifrm_TAG:
  264. case pfrm_TAG:
  265. case cfrm_TAG:
  266. case ifr2_TAG:
  267. case pfr2_TAG:
  268. case cfr2_TAG:
  269. /* allocate 8 more bytes than 'size' to account for fourcc
  270. * and size */
  271. if (size + 8 < size || av_new_packet(pkt, size + 8))
  272. return AVERROR(EIO);
  273. pkt->stream_index = fourxm->video_stream_index;
  274. pkt->pts = fourxm->video_pts;
  275. pkt->pos = avio_tell(s->pb);
  276. memcpy(pkt->data, header, 8);
  277. ret = avio_read(s->pb, &pkt->data[8], size);
  278. if (ret < 0) {
  279. av_free_packet(pkt);
  280. } else {
  281. packet_read = 1;
  282. av_shrink_packet(pkt, ret + 8);
  283. }
  284. break;
  285. case snd__TAG:
  286. track_number = avio_rl32(pb);
  287. avio_skip(pb, 4);
  288. size -= 8;
  289. if (track_number < fourxm->track_count &&
  290. fourxm->tracks[track_number].channels > 0) {
  291. ret = av_get_packet(s->pb, pkt, size);
  292. if (ret < 0)
  293. return AVERROR(EIO);
  294. pkt->stream_index =
  295. fourxm->tracks[track_number].stream_index;
  296. pkt->pts = fourxm->tracks[track_number].audio_pts;
  297. packet_read = 1;
  298. /* pts accounting */
  299. audio_frame_count = size;
  300. if (fourxm->tracks[track_number].adpcm)
  301. audio_frame_count -= 2 * (fourxm->tracks[track_number].channels);
  302. audio_frame_count /= fourxm->tracks[track_number].channels;
  303. if (fourxm->tracks[track_number].adpcm) {
  304. audio_frame_count *= 2;
  305. } else
  306. audio_frame_count /=
  307. (fourxm->tracks[track_number].bits / 8);
  308. fourxm->tracks[track_number].audio_pts += audio_frame_count;
  309. } else {
  310. avio_skip(pb, size);
  311. }
  312. break;
  313. default:
  314. avio_skip(pb, size);
  315. break;
  316. }
  317. }
  318. return ret;
  319. }
  320. static int fourxm_read_close(AVFormatContext *s)
  321. {
  322. FourxmDemuxContext *fourxm = s->priv_data;
  323. av_freep(&fourxm->tracks);
  324. return 0;
  325. }
  326. AVInputFormat ff_fourxm_demuxer = {
  327. .name = "4xm",
  328. .long_name = NULL_IF_CONFIG_SMALL("4X Technologies"),
  329. .priv_data_size = sizeof(FourxmDemuxContext),
  330. .read_probe = fourxm_probe,
  331. .read_header = fourxm_read_header,
  332. .read_packet = fourxm_read_packet,
  333. .read_close = fourxm_read_close,
  334. };