]> git.sesse.net Git - ffmpeg/blob - libavformat/4xm.c
flvdec: follow packets backward until a valid last timestamp is found
[ffmpeg] / libavformat / 4xm.c
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 /**
23  * @file
24  * 4X Technologies file demuxer
25  * by Mike Melanson (melanson@pcisys.net)
26  * for more information on the .4xm file format, visit:
27  *   http://www.pcisys.net/~melanson/codecs/
28  */
29
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 {
66     int sample_rate;
67     int bits;
68     int channels;
69     int stream_index;
70     int adpcm;
71     int64_t audio_pts;
72 } AudioTrack;
73
74 typedef struct FourxmDemuxContext {
75     int width;
76     int height;
77     int video_stream_index;
78     int track_count;
79     AudioTrack *tracks;
80
81     int64_t video_pts;
82     float fps;
83 } FourxmDemuxContext;
84
85 static int fourxm_probe(AVProbeData *p)
86 {
87     if ((AV_RL32(&p->buf[0]) != RIFF_TAG) ||
88         (AV_RL32(&p->buf[8]) != FOURXMV_TAG))
89         return 0;
90
91     return AVPROBE_SCORE_MAX;
92 }
93
94 static int fourxm_read_header(AVFormatContext *s)
95 {
96     AVIOContext *pb = s->pb;
97     unsigned int fourcc_tag;
98     unsigned int size;
99     int header_size;
100     FourxmDemuxContext *fourxm = s->priv_data;
101     unsigned char *header;
102     int i, ret;
103     AVStream *st;
104
105     fourxm->track_count = 0;
106     fourxm->tracks = NULL;
107     fourxm->fps = 1.0;
108
109     /* skip the first 3 32-bit numbers */
110     avio_skip(pb, 12);
111
112     /* check for LIST-HEAD */
113     GET_LIST_HEADER();
114     header_size = size - 4;
115     if (fourcc_tag != HEAD_TAG || header_size < 0)
116         return AVERROR_INVALIDDATA;
117
118     /* allocate space for the header and load the whole thing */
119     header = av_malloc(header_size);
120     if (!header)
121         return AVERROR(ENOMEM);
122     if (avio_read(pb, header, header_size) != header_size){
123         av_free(header);
124         return AVERROR(EIO);
125     }
126
127     /* take the lazy approach and search for any and all vtrk and strk chunks */
128     for (i = 0; i < header_size - 8; i++) {
129         fourcc_tag = AV_RL32(&header[i]);
130         size = AV_RL32(&header[i + 4]);
131         if (size > header_size - i - 8 && (fourcc_tag == vtrk_TAG || fourcc_tag == strk_TAG)) {
132             av_log(s, AV_LOG_ERROR, "chunk larger than array %d>%d\n", size, header_size - i - 8);
133             return AVERROR_INVALIDDATA;
134         }
135
136         if (fourcc_tag == std__TAG) {
137             fourxm->fps = av_int2float(AV_RL32(&header[i + 12]));
138         } else if (fourcc_tag == vtrk_TAG) {
139             /* check that there is enough data */
140             if (size != vtrk_SIZE) {
141                 ret= AVERROR_INVALIDDATA;
142                 goto fail;
143             }
144             fourxm->width  = AV_RL32(&header[i + 36]);
145             fourxm->height = AV_RL32(&header[i + 40]);
146
147             /* allocate a new AVStream */
148             st = avformat_new_stream(s, NULL);
149             if (!st){
150                 ret= AVERROR(ENOMEM);
151                 goto fail;
152             }
153             avpriv_set_pts_info(st, 60, 1, fourxm->fps);
154
155             fourxm->video_stream_index = st->index;
156
157             st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
158             st->codec->codec_id = CODEC_ID_4XM;
159             st->codec->extradata_size = 4;
160             st->codec->extradata = av_malloc(4);
161             AV_WL32(st->codec->extradata, AV_RL32(&header[i + 16]));
162             st->codec->width  = fourxm->width;
163             st->codec->height = fourxm->height;
164
165             i += 8 + size;
166         } else if (fourcc_tag == strk_TAG) {
167             int current_track;
168             /* check that there is enough data */
169             if (size != strk_SIZE) {
170                 ret= AVERROR_INVALIDDATA;
171                 goto fail;
172             }
173             current_track = AV_RL32(&header[i + 8]);
174             if((unsigned)current_track >= UINT_MAX / sizeof(AudioTrack) - 1){
175                 av_log(s, AV_LOG_ERROR, "current_track too large\n");
176                 ret = AVERROR_INVALIDDATA;
177                 goto fail;
178             }
179             if (current_track + 1 > fourxm->track_count) {
180                 fourxm->tracks = av_realloc_f(fourxm->tracks,
181                                               sizeof(AudioTrack),
182                                               current_track + 1);
183                 if (!fourxm->tracks) {
184                     ret = AVERROR(ENOMEM);
185                     goto fail;
186                 }
187                 memset(&fourxm->tracks[fourxm->track_count], 0,
188                        sizeof(AudioTrack) * (current_track + 1 - fourxm->track_count));
189                 fourxm->track_count = current_track + 1;
190             }
191             fourxm->tracks[current_track].adpcm       = AV_RL32(&header[i + 12]);
192             fourxm->tracks[current_track].channels    = AV_RL32(&header[i + 36]);
193             fourxm->tracks[current_track].sample_rate = AV_RL32(&header[i + 40]);
194             fourxm->tracks[current_track].bits        = AV_RL32(&header[i + 44]);
195             fourxm->tracks[current_track].audio_pts   = 0;
196             if(   fourxm->tracks[current_track].channels    <= 0
197                || fourxm->tracks[current_track].sample_rate <= 0
198                || fourxm->tracks[current_track].bits        <  0){
199                 av_log(s, AV_LOG_ERROR, "audio header invalid\n");
200                 ret = AVERROR_INVALIDDATA;
201                 goto fail;
202             }
203             if(!fourxm->tracks[current_track].adpcm && fourxm->tracks[current_track].bits<8){
204                 av_log(s, AV_LOG_ERROR, "bits unspecified for non ADPCM\n");
205                 ret = AVERROR_INVALIDDATA;
206                 goto fail;
207             }
208             i += 8 + size;
209
210             /* allocate a new AVStream */
211             st = avformat_new_stream(s, NULL);
212             if (!st){
213                 ret= AVERROR(ENOMEM);
214                 goto fail;
215             }
216
217             st->id = current_track;
218             avpriv_set_pts_info(st, 60, 1, fourxm->tracks[current_track].sample_rate);
219
220             fourxm->tracks[current_track].stream_index = st->index;
221
222             st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
223             st->codec->codec_tag = 0;
224             st->codec->channels              = fourxm->tracks[current_track].channels;
225             st->codec->sample_rate           = fourxm->tracks[current_track].sample_rate;
226             st->codec->bits_per_coded_sample = fourxm->tracks[current_track].bits;
227             st->codec->bit_rate              = st->codec->channels * st->codec->sample_rate *
228                 st->codec->bits_per_coded_sample;
229             st->codec->block_align = st->codec->channels * st->codec->bits_per_coded_sample;
230             if (fourxm->tracks[current_track].adpcm){
231                 st->codec->codec_id = CODEC_ID_ADPCM_4XM;
232             }else if (st->codec->bits_per_coded_sample == 8){
233                 st->codec->codec_id = CODEC_ID_PCM_U8;
234             }else
235                 st->codec->codec_id = CODEC_ID_PCM_S16LE;
236         }
237     }
238
239     /* skip over the LIST-MOVI chunk (which is where the stream should be */
240     GET_LIST_HEADER();
241     if (fourcc_tag != MOVI_TAG){
242         ret= AVERROR_INVALIDDATA;
243         goto fail;
244     }
245
246     av_free(header);
247     /* initialize context members */
248     fourxm->video_pts = -1;  /* first frame will push to 0 */
249
250     return 0;
251 fail:
252     av_freep(&fourxm->tracks);
253     av_free(header);
254     return ret;
255 }
256
257 static int fourxm_read_packet(AVFormatContext *s,
258                               AVPacket *pkt)
259 {
260     FourxmDemuxContext *fourxm = s->priv_data;
261     AVIOContext *pb = s->pb;
262     unsigned int fourcc_tag;
263     unsigned int size;
264     int ret = 0;
265     unsigned int track_number;
266     int packet_read = 0;
267     unsigned char header[8];
268     int audio_frame_count;
269
270     while (!packet_read) {
271
272         if ((ret = avio_read(s->pb, header, 8)) < 0)
273             return ret;
274         fourcc_tag = AV_RL32(&header[0]);
275         size = AV_RL32(&header[4]);
276         if (url_feof(pb))
277             return AVERROR(EIO);
278         switch (fourcc_tag) {
279
280         case LIST_TAG:
281             /* this is a good time to bump the video pts */
282             fourxm->video_pts ++;
283
284             /* skip the LIST-* tag and move on to the next fourcc */
285             avio_rl32(pb);
286             break;
287
288         case ifrm_TAG:
289         case pfrm_TAG:
290         case cfrm_TAG:
291         case ifr2_TAG:
292         case pfr2_TAG:
293         case cfr2_TAG:
294             /* allocate 8 more bytes than 'size' to account for fourcc
295              * and size */
296             if (size + 8 < size || av_new_packet(pkt, size + 8))
297                 return AVERROR(EIO);
298             pkt->stream_index = fourxm->video_stream_index;
299             pkt->pts = fourxm->video_pts;
300             pkt->pos = avio_tell(s->pb);
301             memcpy(pkt->data, header, 8);
302             ret = avio_read(s->pb, &pkt->data[8], size);
303
304             if (ret < 0){
305                 av_free_packet(pkt);
306             }else
307                 packet_read = 1;
308             break;
309
310         case snd__TAG:
311             track_number = avio_rl32(pb);
312             avio_skip(pb, 4);
313             size-=8;
314
315             if (track_number < fourxm->track_count && fourxm->tracks[track_number].channels>0) {
316                 ret= av_get_packet(s->pb, pkt, size);
317                 if(ret<0)
318                     return AVERROR(EIO);
319                 pkt->stream_index =
320                     fourxm->tracks[track_number].stream_index;
321                 pkt->pts = fourxm->tracks[track_number].audio_pts;
322                 packet_read = 1;
323
324                 /* pts accounting */
325                 audio_frame_count = size;
326                 if (fourxm->tracks[track_number].adpcm)
327                     audio_frame_count -=
328                         2 * (fourxm->tracks[track_number].channels);
329                 audio_frame_count /=
330                       fourxm->tracks[track_number].channels;
331                 if (fourxm->tracks[track_number].adpcm){
332                     audio_frame_count *= 2;
333                 }else
334                     audio_frame_count /=
335                     (fourxm->tracks[track_number].bits / 8);
336                 fourxm->tracks[track_number].audio_pts += audio_frame_count;
337
338             } else {
339                 avio_skip(pb, size);
340             }
341             break;
342
343         default:
344             avio_skip(pb, size);
345             break;
346         }
347     }
348     return ret;
349 }
350
351 static int fourxm_read_close(AVFormatContext *s)
352 {
353     FourxmDemuxContext *fourxm = s->priv_data;
354
355     av_freep(&fourxm->tracks);
356
357     return 0;
358 }
359
360 AVInputFormat ff_fourxm_demuxer = {
361     .name           = "4xm",
362     .long_name      = NULL_IF_CONFIG_SMALL("4X Technologies"),
363     .priv_data_size = sizeof(FourxmDemuxContext),
364     .read_probe     = fourxm_probe,
365     .read_header    = fourxm_read_header,
366     .read_packet    = fourxm_read_packet,
367     .read_close     = fourxm_read_close,
368 };