4xm.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  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 libavformat/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. int64_t audio_pts;
  64. } AudioTrack;
  65. typedef struct FourxmDemuxContext {
  66. int width;
  67. int height;
  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 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, ret;
  91. AVStream *st;
  92. fourxm->track_count = 0;
  93. fourxm->tracks = NULL;
  94. fourxm->fps = 1.0;
  95. /* skip the first 3 32-bit numbers */
  96. url_fseek(pb, 12, SEEK_CUR);
  97. /* check for LIST-HEAD */
  98. GET_LIST_HEADER();
  99. header_size = size - 4;
  100. if (fourcc_tag != HEAD_TAG || header_size < 0)
  101. return AVERROR_INVALIDDATA;
  102. /* allocate space for the header and load the whole thing */
  103. header = av_malloc(header_size);
  104. if (!header)
  105. return AVERROR(ENOMEM);
  106. if (get_buffer(pb, header, header_size) != header_size){
  107. av_free(header);
  108. return AVERROR(EIO);
  109. }
  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 (size > header_size - i - 8 && (fourcc_tag == vtrk_TAG || fourcc_tag == strk_TAG)) {
  115. av_log(s, AV_LOG_ERROR, "chunk larger than array %d>%d\n", size, header_size - i - 8);
  116. return AVERROR_INVALIDDATA;
  117. }
  118. if (fourcc_tag == std__TAG) {
  119. fourxm->fps = av_int2flt(AV_RL32(&header[i + 12]));
  120. } else if (fourcc_tag == vtrk_TAG) {
  121. /* check that there is enough data */
  122. if (size != vtrk_SIZE) {
  123. ret= AVERROR_INVALIDDATA;
  124. goto fail;
  125. }
  126. fourxm->width = AV_RL32(&header[i + 36]);
  127. fourxm->height = AV_RL32(&header[i + 40]);
  128. /* allocate a new AVStream */
  129. st = av_new_stream(s, 0);
  130. if (!st){
  131. ret= AVERROR(ENOMEM);
  132. goto fail;
  133. }
  134. av_set_pts_info(st, 60, 1, fourxm->fps);
  135. fourxm->video_stream_index = st->index;
  136. st->codec->codec_type = CODEC_TYPE_VIDEO;
  137. st->codec->codec_id = CODEC_ID_4XM;
  138. st->codec->extradata_size = 4;
  139. st->codec->extradata = av_malloc(4);
  140. AV_WL32(st->codec->extradata, AV_RL32(&header[i + 16]));
  141. st->codec->width = fourxm->width;
  142. st->codec->height = fourxm->height;
  143. i += 8 + size;
  144. } else if (fourcc_tag == strk_TAG) {
  145. int current_track;
  146. /* check that there is enough data */
  147. if (size != strk_SIZE) {
  148. ret= AVERROR_INVALIDDATA;
  149. goto fail;
  150. }
  151. current_track = AV_RL32(&header[i + 8]);
  152. if((unsigned)current_track >= UINT_MAX / sizeof(AudioTrack) - 1){
  153. av_log(s, AV_LOG_ERROR, "current_track too large\n");
  154. ret= -1;
  155. goto fail;
  156. }
  157. if (current_track + 1 > fourxm->track_count) {
  158. fourxm->track_count = current_track + 1;
  159. fourxm->tracks = av_realloc(fourxm->tracks,
  160. fourxm->track_count * sizeof(AudioTrack));
  161. if (!fourxm->tracks) {
  162. ret= AVERROR(ENOMEM);
  163. goto fail;
  164. }
  165. }
  166. fourxm->tracks[current_track].adpcm = AV_RL32(&header[i + 12]);
  167. fourxm->tracks[current_track].channels = AV_RL32(&header[i + 36]);
  168. fourxm->tracks[current_track].sample_rate = AV_RL32(&header[i + 40]);
  169. fourxm->tracks[current_track].bits = AV_RL32(&header[i + 44]);
  170. fourxm->tracks[current_track].audio_pts = 0;
  171. i += 8 + size;
  172. /* allocate a new AVStream */
  173. st = av_new_stream(s, current_track);
  174. if (!st){
  175. ret= AVERROR(ENOMEM);
  176. goto fail;
  177. }
  178. av_set_pts_info(st, 60, 1, fourxm->tracks[current_track].sample_rate);
  179. fourxm->tracks[current_track].stream_index = st->index;
  180. st->codec->codec_type = CODEC_TYPE_AUDIO;
  181. st->codec->codec_tag = 0;
  182. st->codec->channels = fourxm->tracks[current_track].channels;
  183. st->codec->sample_rate = fourxm->tracks[current_track].sample_rate;
  184. st->codec->bits_per_coded_sample = fourxm->tracks[current_track].bits;
  185. st->codec->bit_rate = st->codec->channels * st->codec->sample_rate *
  186. st->codec->bits_per_coded_sample;
  187. st->codec->block_align = st->codec->channels * st->codec->bits_per_coded_sample;
  188. if (fourxm->tracks[current_track].adpcm){
  189. st->codec->codec_id = CODEC_ID_ADPCM_4XM;
  190. }else if (st->codec->bits_per_coded_sample == 8){
  191. st->codec->codec_id = CODEC_ID_PCM_U8;
  192. }else
  193. st->codec->codec_id = CODEC_ID_PCM_S16LE;
  194. }
  195. }
  196. /* skip over the LIST-MOVI chunk (which is where the stream should be */
  197. GET_LIST_HEADER();
  198. if (fourcc_tag != MOVI_TAG){
  199. ret= AVERROR_INVALIDDATA;
  200. goto fail;
  201. }
  202. av_free(header);
  203. /* initialize context members */
  204. fourxm->video_pts = -1; /* first frame will push to 0 */
  205. return 0;
  206. fail:
  207. av_freep(&fourxm->tracks);
  208. av_free(header);
  209. return ret;
  210. }
  211. static int fourxm_read_packet(AVFormatContext *s,
  212. AVPacket *pkt)
  213. {
  214. FourxmDemuxContext *fourxm = s->priv_data;
  215. ByteIOContext *pb = s->pb;
  216. unsigned int fourcc_tag;
  217. unsigned int size, out_size;
  218. int ret = 0;
  219. unsigned int track_number;
  220. int packet_read = 0;
  221. unsigned char header[8];
  222. int audio_frame_count;
  223. while (!packet_read) {
  224. if ((ret = get_buffer(s->pb, header, 8)) < 0)
  225. return ret;
  226. fourcc_tag = AV_RL32(&header[0]);
  227. size = AV_RL32(&header[4]);
  228. if (url_feof(pb))
  229. return AVERROR(EIO);
  230. switch (fourcc_tag) {
  231. case LIST_TAG:
  232. /* this is a good time to bump the video pts */
  233. fourxm->video_pts ++;
  234. /* skip the LIST-* tag and move on to the next fourcc */
  235. get_le32(pb);
  236. break;
  237. case ifrm_TAG:
  238. case pfrm_TAG:
  239. case cfrm_TAG:
  240. case ifr2_TAG:
  241. case pfr2_TAG:
  242. case cfr2_TAG:
  243. /* allocate 8 more bytes than 'size' to account for fourcc
  244. * and size */
  245. if (size + 8 < size || av_new_packet(pkt, size + 8))
  246. return AVERROR(EIO);
  247. pkt->stream_index = fourxm->video_stream_index;
  248. pkt->pts = fourxm->video_pts;
  249. pkt->pos = url_ftell(s->pb);
  250. memcpy(pkt->data, header, 8);
  251. ret = get_buffer(s->pb, &pkt->data[8], size);
  252. if (ret < 0){
  253. av_free_packet(pkt);
  254. }else
  255. packet_read = 1;
  256. break;
  257. case snd__TAG:
  258. track_number = get_le32(pb);
  259. out_size= get_le32(pb);
  260. size-=8;
  261. if (track_number < fourxm->track_count) {
  262. ret= av_get_packet(s->pb, pkt, size);
  263. if(ret<0)
  264. return AVERROR(EIO);
  265. pkt->stream_index =
  266. fourxm->tracks[track_number].stream_index;
  267. pkt->pts = fourxm->tracks[track_number].audio_pts;
  268. packet_read = 1;
  269. /* pts accounting */
  270. audio_frame_count = size;
  271. if (fourxm->tracks[track_number].adpcm)
  272. audio_frame_count -=
  273. 2 * (fourxm->tracks[track_number].channels);
  274. audio_frame_count /=
  275. fourxm->tracks[track_number].channels;
  276. if (fourxm->tracks[track_number].adpcm){
  277. audio_frame_count *= 2;
  278. }else
  279. audio_frame_count /=
  280. (fourxm->tracks[track_number].bits / 8);
  281. fourxm->tracks[track_number].audio_pts += audio_frame_count;
  282. } else {
  283. url_fseek(pb, size, SEEK_CUR);
  284. }
  285. break;
  286. default:
  287. url_fseek(pb, size, SEEK_CUR);
  288. break;
  289. }
  290. }
  291. return ret;
  292. }
  293. static int fourxm_read_close(AVFormatContext *s)
  294. {
  295. FourxmDemuxContext *fourxm = s->priv_data;
  296. av_freep(&fourxm->tracks);
  297. return 0;
  298. }
  299. AVInputFormat fourxm_demuxer = {
  300. "4xm",
  301. NULL_IF_CONFIG_SMALL("4X Technologies format"),
  302. sizeof(FourxmDemuxContext),
  303. fourxm_probe,
  304. fourxm_read_header,
  305. fourxm_read_packet,
  306. fourxm_read_close,
  307. };