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.

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