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