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.

338 lines
11KB

  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 4xm.c
  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 "avformat.h"
  29. #define RIFF_TAG MKTAG('R', 'I', 'F', 'F')
  30. #define _4XMV_TAG MKTAG('4', 'X', 'M', 'V')
  31. #define LIST_TAG MKTAG('L', 'I', 'S', 'T')
  32. #define HEAD_TAG MKTAG('H', 'E', 'A', 'D')
  33. #define TRK__TAG MKTAG('T', 'R', 'K', '_')
  34. #define MOVI_TAG MKTAG('M', 'O', 'V', 'I')
  35. #define VTRK_TAG MKTAG('V', 'T', 'R', 'K')
  36. #define STRK_TAG MKTAG('S', 'T', 'R', 'K')
  37. #define std__TAG MKTAG('s', 't', 'd', '_')
  38. #define name_TAG MKTAG('n', 'a', 'm', 'e')
  39. #define vtrk_TAG MKTAG('v', 't', 'r', 'k')
  40. #define strk_TAG MKTAG('s', 't', 'r', 'k')
  41. #define ifrm_TAG MKTAG('i', 'f', 'r', 'm')
  42. #define pfrm_TAG MKTAG('p', 'f', 'r', 'm')
  43. #define cfrm_TAG MKTAG('c', 'f', 'r', 'm')
  44. #define ifr2_TAG MKTAG('i', 'f', 'r', '2')
  45. #define pfr2_TAG MKTAG('p', 'f', 'r', '2')
  46. #define cfr2_TAG MKTAG('c', 'f', 'r', '2')
  47. #define snd__TAG MKTAG('s', 'n', 'd', '_')
  48. #define vtrk_SIZE 0x44
  49. #define strk_SIZE 0x28
  50. #define GET_LIST_HEADER() \
  51. fourcc_tag = get_le32(pb); \
  52. size = get_le32(pb); \
  53. if (fourcc_tag != LIST_TAG) \
  54. return AVERROR_INVALIDDATA; \
  55. fourcc_tag = get_le32(pb);
  56. typedef struct AudioTrack {
  57. int sample_rate;
  58. int bits;
  59. int channels;
  60. int stream_index;
  61. int adpcm;
  62. } AudioTrack;
  63. typedef struct FourxmDemuxContext {
  64. int width;
  65. int height;
  66. int video_stream_index;
  67. int track_count;
  68. AudioTrack *tracks;
  69. int selected_track;
  70. int64_t audio_pts;
  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]) != _4XMV_TAG))
  78. return 0;
  79. return AVPROBE_SCORE_MAX;
  80. }
  81. static int fourxm_read_header(AVFormatContext *s,
  82. AVFormatParameters *ap)
  83. {
  84. ByteIOContext *pb = s->pb;
  85. unsigned int fourcc_tag;
  86. unsigned int size;
  87. int header_size;
  88. FourxmDemuxContext *fourxm = s->priv_data;
  89. unsigned char *header;
  90. int i;
  91. int current_track = -1;
  92. AVStream *st;
  93. fourxm->track_count = 0;
  94. fourxm->tracks = NULL;
  95. fourxm->selected_track = 0;
  96. fourxm->fps = 1.0;
  97. /* skip the first 3 32-bit numbers */
  98. url_fseek(pb, 12, SEEK_CUR);
  99. /* check for LIST-HEAD */
  100. GET_LIST_HEADER();
  101. header_size = size - 4;
  102. if (fourcc_tag != HEAD_TAG)
  103. return AVERROR_INVALIDDATA;
  104. /* allocate space for the header and load the whole thing */
  105. header = av_malloc(header_size);
  106. if (!header)
  107. return AVERROR(ENOMEM);
  108. if (get_buffer(pb, header, header_size) != header_size)
  109. return AVERROR(EIO);
  110. /* take the lazy approach and search for any and all vtrk and strk chunks */
  111. for (i = 0; i < header_size - 8; i++) {
  112. fourcc_tag = AV_RL32(&header[i]);
  113. size = AV_RL32(&header[i + 4]);
  114. if (fourcc_tag == std__TAG) {
  115. fourxm->fps = av_int2flt(AV_RL32(&header[i + 12]));
  116. } else if (fourcc_tag == vtrk_TAG) {
  117. /* check that there is enough data */
  118. if (size != vtrk_SIZE) {
  119. av_free(header);
  120. return AVERROR_INVALIDDATA;
  121. }
  122. fourxm->width = AV_RL32(&header[i + 36]);
  123. fourxm->height = AV_RL32(&header[i + 40]);
  124. /* allocate a new AVStream */
  125. st = av_new_stream(s, 0);
  126. if (!st)
  127. return AVERROR(ENOMEM);
  128. av_set_pts_info(st, 60, 1, fourxm->fps);
  129. fourxm->video_stream_index = st->index;
  130. st->codec->codec_type = CODEC_TYPE_VIDEO;
  131. st->codec->codec_id = CODEC_ID_4XM;
  132. st->codec->extradata_size = 4;
  133. st->codec->extradata = av_malloc(4);
  134. AV_WL32(st->codec->extradata, AV_RL32(&header[i + 16]));
  135. st->codec->width = fourxm->width;
  136. st->codec->height = fourxm->height;
  137. i += 8 + size;
  138. } else if (fourcc_tag == strk_TAG) {
  139. /* check that there is enough data */
  140. if (size != strk_SIZE) {
  141. av_free(header);
  142. return AVERROR_INVALIDDATA;
  143. }
  144. current_track = AV_RL32(&header[i + 8]);
  145. if (current_track + 1 > fourxm->track_count) {
  146. fourxm->track_count = current_track + 1;
  147. if((unsigned)fourxm->track_count >= UINT_MAX / sizeof(AudioTrack))
  148. return -1;
  149. fourxm->tracks = av_realloc(fourxm->tracks,
  150. fourxm->track_count * sizeof(AudioTrack));
  151. if (!fourxm->tracks) {
  152. av_free(header);
  153. return AVERROR(ENOMEM);
  154. }
  155. }
  156. fourxm->tracks[current_track].adpcm = AV_RL32(&header[i + 12]);
  157. fourxm->tracks[current_track].channels = AV_RL32(&header[i + 36]);
  158. fourxm->tracks[current_track].sample_rate = AV_RL32(&header[i + 40]);
  159. fourxm->tracks[current_track].bits = AV_RL32(&header[i + 44]);
  160. i += 8 + size;
  161. /* allocate a new AVStream */
  162. st = av_new_stream(s, current_track);
  163. if (!st)
  164. return AVERROR(ENOMEM);
  165. av_set_pts_info(st, 60, 1, fourxm->tracks[current_track].sample_rate);
  166. fourxm->tracks[current_track].stream_index = st->index;
  167. st->codec->codec_type = CODEC_TYPE_AUDIO;
  168. st->codec->codec_tag = 0;
  169. st->codec->channels = fourxm->tracks[current_track].channels;
  170. st->codec->sample_rate = fourxm->tracks[current_track].sample_rate;
  171. st->codec->bits_per_sample = fourxm->tracks[current_track].bits;
  172. st->codec->bit_rate = st->codec->channels * st->codec->sample_rate *
  173. st->codec->bits_per_sample;
  174. st->codec->block_align = st->codec->channels * st->codec->bits_per_sample;
  175. if (fourxm->tracks[current_track].adpcm)
  176. st->codec->codec_id = CODEC_ID_ADPCM_4XM;
  177. else if (st->codec->bits_per_sample == 8)
  178. st->codec->codec_id = CODEC_ID_PCM_U8;
  179. else
  180. st->codec->codec_id = CODEC_ID_PCM_S16LE;
  181. }
  182. }
  183. av_free(header);
  184. /* skip over the LIST-MOVI chunk (which is where the stream should be */
  185. GET_LIST_HEADER();
  186. if (fourcc_tag != MOVI_TAG)
  187. return AVERROR_INVALIDDATA;
  188. /* initialize context members */
  189. fourxm->video_pts = -1; /* first frame will push to 0 */
  190. fourxm->audio_pts = 0;
  191. return 0;
  192. }
  193. static int fourxm_read_packet(AVFormatContext *s,
  194. AVPacket *pkt)
  195. {
  196. FourxmDemuxContext *fourxm = s->priv_data;
  197. ByteIOContext *pb = s->pb;
  198. unsigned int fourcc_tag;
  199. unsigned int size, out_size;
  200. int ret = 0;
  201. int track_number;
  202. int packet_read = 0;
  203. unsigned char header[8];
  204. int audio_frame_count;
  205. while (!packet_read) {
  206. if ((ret = get_buffer(s->pb, header, 8)) < 0)
  207. return ret;
  208. fourcc_tag = AV_RL32(&header[0]);
  209. size = AV_RL32(&header[4]);
  210. if (url_feof(pb))
  211. return AVERROR(EIO);
  212. switch (fourcc_tag) {
  213. case LIST_TAG:
  214. /* this is a good time to bump the video pts */
  215. fourxm->video_pts ++;
  216. /* skip the LIST-* tag and move on to the next fourcc */
  217. get_le32(pb);
  218. break;
  219. case ifrm_TAG:
  220. case pfrm_TAG:
  221. case cfrm_TAG:
  222. case ifr2_TAG:
  223. case pfr2_TAG:
  224. case cfr2_TAG:
  225. {
  226. /* allocate 8 more bytes than 'size' to account for fourcc
  227. * and size */
  228. if (size + 8 < size || av_new_packet(pkt, size + 8))
  229. return AVERROR(EIO);
  230. pkt->stream_index = fourxm->video_stream_index;
  231. pkt->pts = fourxm->video_pts;
  232. pkt->pos = url_ftell(s->pb);
  233. memcpy(pkt->data, header, 8);
  234. ret = get_buffer(s->pb, &pkt->data[8], size);
  235. if (ret < 0)
  236. av_free_packet(pkt);
  237. else
  238. packet_read = 1;
  239. break;
  240. }
  241. case snd__TAG:
  242. track_number = get_le32(pb);
  243. out_size= get_le32(pb);
  244. size-=8;
  245. if (track_number == fourxm->selected_track) {
  246. ret= av_get_packet(s->pb, pkt, size);
  247. if(ret<0)
  248. return AVERROR(EIO);
  249. pkt->stream_index =
  250. fourxm->tracks[fourxm->selected_track].stream_index;
  251. pkt->pts = fourxm->audio_pts;
  252. packet_read = 1;
  253. /* pts accounting */
  254. audio_frame_count = size;
  255. if (fourxm->tracks[fourxm->selected_track].adpcm)
  256. audio_frame_count -=
  257. 2 * (fourxm->tracks[fourxm->selected_track].channels);
  258. audio_frame_count /=
  259. fourxm->tracks[fourxm->selected_track].channels;
  260. if (fourxm->tracks[fourxm->selected_track].adpcm)
  261. audio_frame_count *= 2;
  262. else
  263. audio_frame_count /=
  264. (fourxm->tracks[fourxm->selected_track].bits / 8);
  265. fourxm->audio_pts += audio_frame_count;
  266. } else {
  267. url_fseek(pb, size, SEEK_CUR);
  268. }
  269. break;
  270. default:
  271. url_fseek(pb, size, SEEK_CUR);
  272. break;
  273. }
  274. }
  275. return ret;
  276. }
  277. static int fourxm_read_close(AVFormatContext *s)
  278. {
  279. FourxmDemuxContext *fourxm = s->priv_data;
  280. av_free(fourxm->tracks);
  281. return 0;
  282. }
  283. AVInputFormat fourxm_demuxer = {
  284. "4xm",
  285. "4X Technologies format",
  286. sizeof(FourxmDemuxContext),
  287. fourxm_probe,
  288. fourxm_read_header,
  289. fourxm_read_packet,
  290. fourxm_read_close,
  291. };