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.

332 lines
10KB

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