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.

357 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 Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; 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 "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 = avio_rl32(pb); \
  53. size = avio_rl32(pb); \
  54. if (fourcc_tag != LIST_TAG) \
  55. return AVERROR_INVALIDDATA; \
  56. fourcc_tag = avio_rl32(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. AVIOContext *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. avio_skip(pb, 12);
  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 (avio_read(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 (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. ret= AVERROR_INVALIDDATA;
  120. goto fail;
  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. ret= AVERROR(ENOMEM);
  128. goto fail;
  129. }
  130. av_set_pts_info(st, 60, 1, fourxm->fps);
  131. fourxm->video_stream_index = st->index;
  132. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  133. st->codec->codec_id = CODEC_ID_4XM;
  134. st->codec->extradata_size = 4;
  135. st->codec->extradata = av_malloc(4);
  136. AV_WL32(st->codec->extradata, AV_RL32(&header[i + 16]));
  137. st->codec->width = fourxm->width;
  138. st->codec->height = fourxm->height;
  139. i += 8 + size;
  140. } else if (fourcc_tag == strk_TAG) {
  141. int current_track;
  142. /* check that there is enough data */
  143. if (size != strk_SIZE) {
  144. ret= AVERROR_INVALIDDATA;
  145. goto fail;
  146. }
  147. current_track = AV_RL32(&header[i + 8]);
  148. if((unsigned)current_track >= UINT_MAX / sizeof(AudioTrack) - 1){
  149. av_log(s, AV_LOG_ERROR, "current_track too large\n");
  150. ret= -1;
  151. goto fail;
  152. }
  153. if (current_track + 1 > fourxm->track_count) {
  154. fourxm->tracks = av_realloc(fourxm->tracks,
  155. (current_track + 1) * sizeof(AudioTrack));
  156. if (!fourxm->tracks) {
  157. ret = AVERROR(ENOMEM);
  158. goto fail;
  159. }
  160. memset(&fourxm->tracks[fourxm->track_count], 0,
  161. sizeof(AudioTrack) * (current_track + 1 - fourxm->track_count));
  162. fourxm->track_count = current_track + 1;
  163. }
  164. fourxm->tracks[current_track].adpcm = AV_RL32(&header[i + 12]);
  165. fourxm->tracks[current_track].channels = AV_RL32(&header[i + 36]);
  166. fourxm->tracks[current_track].sample_rate = AV_RL32(&header[i + 40]);
  167. fourxm->tracks[current_track].bits = AV_RL32(&header[i + 44]);
  168. fourxm->tracks[current_track].audio_pts = 0;
  169. if( fourxm->tracks[current_track].channels <= 0
  170. || fourxm->tracks[current_track].sample_rate <= 0
  171. || fourxm->tracks[current_track].bits < 0){
  172. av_log(s, AV_LOG_ERROR, "audio header invalid\n");
  173. ret= -1;
  174. goto fail;
  175. }
  176. i += 8 + size;
  177. /* allocate a new AVStream */
  178. st = av_new_stream(s, current_track);
  179. if (!st){
  180. ret= AVERROR(ENOMEM);
  181. goto fail;
  182. }
  183. av_set_pts_info(st, 60, 1, fourxm->tracks[current_track].sample_rate);
  184. fourxm->tracks[current_track].stream_index = st->index;
  185. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  186. st->codec->codec_tag = 0;
  187. st->codec->channels = fourxm->tracks[current_track].channels;
  188. st->codec->sample_rate = fourxm->tracks[current_track].sample_rate;
  189. st->codec->bits_per_coded_sample = fourxm->tracks[current_track].bits;
  190. st->codec->bit_rate = st->codec->channels * st->codec->sample_rate *
  191. st->codec->bits_per_coded_sample;
  192. st->codec->block_align = st->codec->channels * st->codec->bits_per_coded_sample;
  193. if (fourxm->tracks[current_track].adpcm){
  194. st->codec->codec_id = CODEC_ID_ADPCM_4XM;
  195. }else if (st->codec->bits_per_coded_sample == 8){
  196. st->codec->codec_id = CODEC_ID_PCM_U8;
  197. }else
  198. st->codec->codec_id = CODEC_ID_PCM_S16LE;
  199. }
  200. }
  201. /* skip over the LIST-MOVI chunk (which is where the stream should be */
  202. GET_LIST_HEADER();
  203. if (fourcc_tag != MOVI_TAG){
  204. ret= AVERROR_INVALIDDATA;
  205. goto fail;
  206. }
  207. av_free(header);
  208. /* initialize context members */
  209. fourxm->video_pts = -1; /* first frame will push to 0 */
  210. return 0;
  211. fail:
  212. av_freep(&fourxm->tracks);
  213. av_free(header);
  214. return ret;
  215. }
  216. static int fourxm_read_packet(AVFormatContext *s,
  217. AVPacket *pkt)
  218. {
  219. FourxmDemuxContext *fourxm = s->priv_data;
  220. AVIOContext *pb = s->pb;
  221. unsigned int fourcc_tag;
  222. unsigned int size;
  223. int ret = 0;
  224. unsigned int track_number;
  225. int packet_read = 0;
  226. unsigned char header[8];
  227. int audio_frame_count;
  228. while (!packet_read) {
  229. if ((ret = avio_read(s->pb, header, 8)) < 0)
  230. return ret;
  231. fourcc_tag = AV_RL32(&header[0]);
  232. size = AV_RL32(&header[4]);
  233. if (pb->eof_reached)
  234. return AVERROR(EIO);
  235. switch (fourcc_tag) {
  236. case LIST_TAG:
  237. /* this is a good time to bump the video pts */
  238. fourxm->video_pts ++;
  239. /* skip the LIST-* tag and move on to the next fourcc */
  240. avio_rl32(pb);
  241. break;
  242. case ifrm_TAG:
  243. case pfrm_TAG:
  244. case cfrm_TAG:
  245. case ifr2_TAG:
  246. case pfr2_TAG:
  247. case cfr2_TAG:
  248. /* allocate 8 more bytes than 'size' to account for fourcc
  249. * and size */
  250. if (size + 8 < size || av_new_packet(pkt, size + 8))
  251. return AVERROR(EIO);
  252. pkt->stream_index = fourxm->video_stream_index;
  253. pkt->pts = fourxm->video_pts;
  254. pkt->pos = avio_tell(s->pb);
  255. memcpy(pkt->data, header, 8);
  256. ret = avio_read(s->pb, &pkt->data[8], size);
  257. if (ret < 0){
  258. av_free_packet(pkt);
  259. }else
  260. packet_read = 1;
  261. break;
  262. case snd__TAG:
  263. track_number = avio_rl32(pb);
  264. avio_skip(pb, 4);
  265. size-=8;
  266. if (track_number < fourxm->track_count && fourxm->tracks[track_number].channels>0) {
  267. ret= av_get_packet(s->pb, pkt, size);
  268. if(ret<0)
  269. return AVERROR(EIO);
  270. pkt->stream_index =
  271. fourxm->tracks[track_number].stream_index;
  272. pkt->pts = fourxm->tracks[track_number].audio_pts;
  273. packet_read = 1;
  274. /* pts accounting */
  275. audio_frame_count = size;
  276. if (fourxm->tracks[track_number].adpcm)
  277. audio_frame_count -=
  278. 2 * (fourxm->tracks[track_number].channels);
  279. audio_frame_count /=
  280. fourxm->tracks[track_number].channels;
  281. if (fourxm->tracks[track_number].adpcm){
  282. audio_frame_count *= 2;
  283. }else
  284. audio_frame_count /=
  285. (fourxm->tracks[track_number].bits / 8);
  286. fourxm->tracks[track_number].audio_pts += audio_frame_count;
  287. } else {
  288. avio_skip(pb, size);
  289. }
  290. break;
  291. default:
  292. avio_skip(pb, size);
  293. break;
  294. }
  295. }
  296. return ret;
  297. }
  298. static int fourxm_read_close(AVFormatContext *s)
  299. {
  300. FourxmDemuxContext *fourxm = s->priv_data;
  301. av_freep(&fourxm->tracks);
  302. return 0;
  303. }
  304. AVInputFormat ff_fourxm_demuxer = {
  305. "4xm",
  306. NULL_IF_CONFIG_SMALL("4X Technologies format"),
  307. sizeof(FourxmDemuxContext),
  308. fourxm_probe,
  309. fourxm_read_header,
  310. fourxm_read_packet,
  311. fourxm_read_close,
  312. };