4xm.c 12.4 KB
Newer Older
1 2 3 4
/*
 * 4X Technologies .4xm File Demuxer (no muxer)
 * Copyright (c) 2003  The ffmpeg Project
 *
5 6 7
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
8 9
 * modify it under the terms of the GNU Lesser General Public
 * 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 14 15 16 17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * 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 25 26 27 28 29
 * 4X Technologies file demuxer
 * by Mike Melanson (melanson@pcisys.net)
 * for more information on the .4xm file format, visit:
 *   http://www.pcisys.net/~melanson/codecs/
 */

30
#include "libavutil/intreadwrite.h"
31
#include "libavutil/intfloat.h"
32
#include "avformat.h"
33
#include "internal.h"
34

Diego Biurrun's avatar
Diego Biurrun committed
35
#define     RIFF_TAG MKTAG('R', 'I', 'F', 'F')
36
#define  FOURXMV_TAG MKTAG('4', 'X', 'M', 'V')
Diego Biurrun's avatar
Diego Biurrun committed
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
#define     LIST_TAG MKTAG('L', 'I', 'S', 'T')
#define     HEAD_TAG MKTAG('H', 'E', 'A', 'D')
#define     TRK__TAG MKTAG('T', 'R', 'K', '_')
#define     MOVI_TAG MKTAG('M', 'O', 'V', 'I')
#define     VTRK_TAG MKTAG('V', 'T', 'R', 'K')
#define     STRK_TAG MKTAG('S', 'T', 'R', 'K')
#define     std__TAG MKTAG('s', 't', 'd', '_')
#define     name_TAG MKTAG('n', 'a', 'm', 'e')
#define     vtrk_TAG MKTAG('v', 't', 'r', 'k')
#define     strk_TAG MKTAG('s', 't', 'r', 'k')
#define     ifrm_TAG MKTAG('i', 'f', 'r', 'm')
#define     pfrm_TAG MKTAG('p', 'f', 'r', 'm')
#define     cfrm_TAG MKTAG('c', 'f', 'r', 'm')
#define     ifr2_TAG MKTAG('i', 'f', 'r', '2')
#define     pfr2_TAG MKTAG('p', 'f', 'r', '2')
#define     cfr2_TAG MKTAG('c', 'f', 'r', '2')
#define     snd__TAG MKTAG('s', 'n', 'd', '_')
54 55 56 57 58

#define vtrk_SIZE 0x44
#define strk_SIZE 0x28

#define GET_LIST_HEADER() \
59 60
    fourcc_tag = avio_rl32(pb); \
    size = avio_rl32(pb); \
61 62
    if (fourcc_tag != LIST_TAG) \
        return AVERROR_INVALIDDATA; \
63
    fourcc_tag = avio_rl32(pb);
64 65 66 67 68

typedef struct AudioTrack {
    int sample_rate;
    int bits;
    int channels;
69
    int stream_index;
Michael Niedermayer's avatar
Michael Niedermayer committed
70
    int adpcm;
71
    int64_t audio_pts;
72 73 74 75 76
} AudioTrack;

typedef struct FourxmDemuxContext {
    int width;
    int height;
77
    int video_stream_index;
78 79
    int track_count;
    AudioTrack *tracks;
80

81
    int64_t video_pts;
82
    float fps;
83 84 85 86
} FourxmDemuxContext;

static int fourxm_probe(AVProbeData *p)
{
87
    if ((AV_RL32(&p->buf[0]) != RIFF_TAG) ||
88
        (AV_RL32(&p->buf[8]) != FOURXMV_TAG))
89 90 91 92 93
        return 0;

    return AVPROBE_SCORE_MAX;
}

94
static int fourxm_read_header(AVFormatContext *s)
95
{
96
    AVIOContext *pb = s->pb;
97 98 99
    unsigned int fourcc_tag;
    unsigned int size;
    int header_size;
100
    FourxmDemuxContext *fourxm = s->priv_data;
101
    unsigned char *header;
102
    int i, ret;
103 104 105 106
    AVStream *st;

    fourxm->track_count = 0;
    fourxm->tracks = NULL;
107
    fourxm->fps = 1.0;
108 109

    /* skip the first 3 32-bit numbers */
110
    avio_skip(pb, 12);
111 112 113 114

    /* check for LIST-HEAD */
    GET_LIST_HEADER();
    header_size = size - 4;
115
    if (fourcc_tag != HEAD_TAG || header_size < 0)
116 117 118 119 120
        return AVERROR_INVALIDDATA;

    /* allocate space for the header and load the whole thing */
    header = av_malloc(header_size);
    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 128

    /* take the lazy approach and search for any and all vtrk and strk chunks */
    for (i = 0; i < header_size - 8; i++) {
129 130
        fourcc_tag = AV_RL32(&header[i]);
        size = AV_RL32(&header[i + 4]);
131 132 133 134
        if (size > header_size - i - 8 && (fourcc_tag == vtrk_TAG || fourcc_tag == strk_TAG)) {
            av_log(s, AV_LOG_ERROR, "chunk larger than array %d>%d\n", size, header_size - i - 8);
            return AVERROR_INVALIDDATA;
        }
135

136
        if (fourcc_tag == std__TAG) {
137 138 139 140
            if (header_size < i + 16) {
                av_log(s, AV_LOG_ERROR, "std TAG truncated\n");
                return AVERROR_INVALIDDATA;
            }
141
            fourxm->fps = av_int2float(AV_RL32(&header[i + 12]));
142
        } else if (fourcc_tag == vtrk_TAG) {
143 144
            /* check that there is enough data */
            if (size != vtrk_SIZE) {
145 146
                ret= AVERROR_INVALIDDATA;
                goto fail;
147
            }
Michael Niedermayer's avatar
Michael Niedermayer committed
148
            fourxm->width  = AV_RL32(&header[i + 36]);
149
            fourxm->height = AV_RL32(&header[i + 40]);
150 151

            /* allocate a new AVStream */
152
            st = avformat_new_stream(s, NULL);
153
            if (!st){
154 155
                ret= AVERROR(ENOMEM);
                goto fail;
156
            }
157
            avpriv_set_pts_info(st, 60, 1, fourxm->fps);
158 159 160

            fourxm->video_stream_index = st->index;

161
            st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
162
            st->codec->codec_id = AV_CODEC_ID_4XM;
163 164 165
            st->codec->extradata_size = 4;
            st->codec->extradata = av_malloc(4);
            AV_WL32(st->codec->extradata, AV_RL32(&header[i + 16]));
Michael Niedermayer's avatar
Michael Niedermayer committed
166
            st->codec->width  = fourxm->width;
167
            st->codec->height = fourxm->height;
168

169
            i += 8 + size;
170
        } else if (fourcc_tag == strk_TAG) {
171
            int current_track;
172 173
            /* check that there is enough data */
            if (size != strk_SIZE) {
174 175
                ret= AVERROR_INVALIDDATA;
                goto fail;
176
            }
177
            current_track = AV_RL32(&header[i + 8]);
178 179
            if((unsigned)current_track >= UINT_MAX / sizeof(AudioTrack) - 1){
                av_log(s, AV_LOG_ERROR, "current_track too large\n");
180
                ret = AVERROR_INVALIDDATA;
181 182
                goto fail;
            }
183
            if (current_track + 1 > fourxm->track_count) {
184 185
                fourxm->tracks = av_realloc_f(fourxm->tracks,
                                              sizeof(AudioTrack),
186
                                              current_track + 1);
187
                if (!fourxm->tracks) {
188
                    ret = AVERROR(ENOMEM);
189
                    goto fail;
190
                }
191 192 193
                memset(&fourxm->tracks[fourxm->track_count], 0,
                       sizeof(AudioTrack) * (current_track + 1 - fourxm->track_count));
                fourxm->track_count = current_track + 1;
194
            }
Michael Niedermayer's avatar
Michael Niedermayer committed
195 196
            fourxm->tracks[current_track].adpcm       = AV_RL32(&header[i + 12]);
            fourxm->tracks[current_track].channels    = AV_RL32(&header[i + 36]);
197
            fourxm->tracks[current_track].sample_rate = AV_RL32(&header[i + 40]);
Michael Niedermayer's avatar
Michael Niedermayer committed
198
            fourxm->tracks[current_track].bits        = AV_RL32(&header[i + 44]);
199
            fourxm->tracks[current_track].audio_pts   = 0;
200 201 202 203
            if(   fourxm->tracks[current_track].channels    <= 0
               || fourxm->tracks[current_track].sample_rate <= 0
               || fourxm->tracks[current_track].bits        <  0){
                av_log(s, AV_LOG_ERROR, "audio header invalid\n");
204
                ret = AVERROR_INVALIDDATA;
205 206
                goto fail;
            }
207 208 209 210 211
            if(!fourxm->tracks[current_track].adpcm && fourxm->tracks[current_track].bits<8){
                av_log(s, AV_LOG_ERROR, "bits unspecified for non ADPCM\n");
                ret = AVERROR_INVALIDDATA;
                goto fail;
            }
212
            i += 8 + size;
213 214

            /* allocate a new AVStream */
215
            st = avformat_new_stream(s, NULL);
216
            if (!st){
217 218
                ret= AVERROR(ENOMEM);
                goto fail;
219
            }
220

221
            st->id = current_track;
222
            avpriv_set_pts_info(st, 60, 1, fourxm->tracks[current_track].sample_rate);
223

224 225
            fourxm->tracks[current_track].stream_index = st->index;

226
            st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
227
            st->codec->codec_tag = 0;
Michael Niedermayer's avatar
Michael Niedermayer committed
228 229
            st->codec->channels              = fourxm->tracks[current_track].channels;
            st->codec->sample_rate           = fourxm->tracks[current_track].sample_rate;
230
            st->codec->bits_per_coded_sample = fourxm->tracks[current_track].bits;
Michael Niedermayer's avatar
Michael Niedermayer committed
231
            st->codec->bit_rate              = st->codec->channels * st->codec->sample_rate *
232 233
                st->codec->bits_per_coded_sample;
            st->codec->block_align = st->codec->channels * st->codec->bits_per_coded_sample;
234
            if (fourxm->tracks[current_track].adpcm){
235
                st->codec->codec_id = AV_CODEC_ID_ADPCM_4XM;
236
            }else if (st->codec->bits_per_coded_sample == 8){
237
                st->codec->codec_id = AV_CODEC_ID_PCM_U8;
238
            }else
239
                st->codec->codec_id = AV_CODEC_ID_PCM_S16LE;
240 241 242 243 244
        }
    }

    /* skip over the LIST-MOVI chunk (which is where the stream should be */
    GET_LIST_HEADER();
245 246 247 248
    if (fourcc_tag != MOVI_TAG){
        ret= AVERROR_INVALIDDATA;
        goto fail;
    }
249

250
    av_free(header);
251
    /* initialize context members */
252
    fourxm->video_pts = -1;  /* first frame will push to 0 */
253

254
    return 0;
255 256 257 258
fail:
    av_freep(&fourxm->tracks);
    av_free(header);
    return ret;
259 260 261
}

static int fourxm_read_packet(AVFormatContext *s,
262
                              AVPacket *pkt)
263 264
{
    FourxmDemuxContext *fourxm = s->priv_data;
265
    AVIOContext *pb = s->pb;
266
    unsigned int fourcc_tag;
Mans Rullgard's avatar
Mans Rullgard committed
267
    unsigned int size;
268
    int ret = 0;
269
    unsigned int track_number;
270
    int packet_read = 0;
271
    unsigned char header[8];
272
    int audio_frame_count;
273 274 275

    while (!packet_read) {

276
        if ((ret = avio_read(s->pb, header, 8)) < 0)
277
            return ret;
278 279
        fourcc_tag = AV_RL32(&header[0]);
        size = AV_RL32(&header[4]);
280
        if (url_feof(pb))
281
            return AVERROR(EIO);
282 283
        switch (fourcc_tag) {

284
        case LIST_TAG:
285
            /* this is a good time to bump the video pts */
286
            fourxm->video_pts ++;
287

288
            /* skip the LIST-* tag and move on to the next fourcc */
289
            avio_rl32(pb);
290 291
            break;

292 293
        case ifrm_TAG:
        case pfrm_TAG:
294 295 296 297
        case cfrm_TAG:
        case ifr2_TAG:
        case pfr2_TAG:
        case cfr2_TAG:
298 299
            /* allocate 8 more bytes than 'size' to account for fourcc
             * and size */
300
            if (size + 8 < size || av_new_packet(pkt, size + 8))
301
                return AVERROR(EIO);
302
            pkt->stream_index = fourxm->video_stream_index;
303
            pkt->pts = fourxm->video_pts;
304
            pkt->pos = avio_tell(s->pb);
305
            memcpy(pkt->data, header, 8);
306
            ret = avio_read(s->pb, &pkt->data[8], size);
307

308
            if (ret < 0){
309
                av_free_packet(pkt);
310
            }else
311
                packet_read = 1;
312
            break;
313

314
        case snd__TAG:
315
            track_number = avio_rl32(pb);
Mans Rullgard's avatar
Mans Rullgard committed
316
            avio_skip(pb, 4);
Michael Niedermayer's avatar
Michael Niedermayer committed
317 318
            size-=8;

319
            if (track_number < fourxm->track_count && fourxm->tracks[track_number].channels>0) {
320
                ret= av_get_packet(s->pb, pkt, size);
Michael Niedermayer's avatar
Michael Niedermayer committed
321
                if(ret<0)
322
                    return AVERROR(EIO);
323
                pkt->stream_index =
324 325
                    fourxm->tracks[track_number].stream_index;
                pkt->pts = fourxm->tracks[track_number].audio_pts;
Michael Niedermayer's avatar
Michael Niedermayer committed
326
                packet_read = 1;
327

328 329
                /* pts accounting */
                audio_frame_count = size;
330
                if (fourxm->tracks[track_number].adpcm)
331
                    audio_frame_count -=
332
                        2 * (fourxm->tracks[track_number].channels);
333
                audio_frame_count /=
334
                      fourxm->tracks[track_number].channels;
335
                if (fourxm->tracks[track_number].adpcm){
336
                    audio_frame_count *= 2;
337
                }else
338
                    audio_frame_count /=
339 340
                    (fourxm->tracks[track_number].bits / 8);
                fourxm->tracks[track_number].audio_pts += audio_frame_count;
341

342
            } else {
343
                avio_skip(pb, size);
344 345 346 347
            }
            break;

        default:
348
            avio_skip(pb, size);
349 350 351 352 353 354 355 356
            break;
        }
    }
    return ret;
}

static int fourxm_read_close(AVFormatContext *s)
{
357
    FourxmDemuxContext *fourxm = s->priv_data;
358

359
    av_freep(&fourxm->tracks);
360 361 362 363

    return 0;
}

364
AVInputFormat ff_fourxm_demuxer = {
365
    .name           = "4xm",
366
    .long_name      = NULL_IF_CONFIG_SMALL("4X Technologies"),
367 368 369 370 371
    .priv_data_size = sizeof(FourxmDemuxContext),
    .read_probe     = fourxm_probe,
    .read_header    = fourxm_read_header,
    .read_packet    = fourxm_read_packet,
    .read_close     = fourxm_read_close,
372
};