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