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.

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