segafilm.c 11.1 KB
Newer Older
1 2
/*
 * Sega FILM Format (CPK) Demuxer
3
 * Copyright (c) 2003 The FFmpeg project
4
 *
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
 * Sega FILM (.cpk) file demuxer
 * by Mike Melanson (melanson@pcisys.net)
 * For more information regarding the Sega FILM file format, visit:
 *   http://www.pcisys.net/~melanson/codecs/
 */

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

35 36 37 38
#define FILM_TAG MKBETAG('F', 'I', 'L', 'M')
#define FDSC_TAG MKBETAG('F', 'D', 'S', 'C')
#define STAB_TAG MKBETAG('S', 'T', 'A', 'B')
#define CVID_TAG MKBETAG('c', 'v', 'i', 'd')
39
#define RAW_TAG  MKBETAG('r', 'a', 'w', ' ')
40

41
typedef struct film_sample {
42
  int stream;
43
  int64_t sample_offset;
44 45 46
  unsigned int sample_size;
  int64_t pts;
  int keyframe;
47
} film_sample;
48 49 50 51 52

typedef struct FilmDemuxContext {
    int video_stream_index;
    int audio_stream_index;

53
    enum AVCodecID audio_type;
54 55 56 57
    unsigned int audio_samplerate;
    unsigned int audio_bits;
    unsigned int audio_channels;

58
    enum AVCodecID video_type;
59
    unsigned int sample_count;
60
    film_sample *sample_table;
61 62 63 64 65 66
    unsigned int current_sample;

    unsigned int base_clock;
    unsigned int version;
} FilmDemuxContext;

67
static int film_probe(const AVProbeData *p)
68
{
69
    if (AV_RB32(&p->buf[0]) != FILM_TAG)
70 71
        return 0;

72 73 74
    if (AV_RB32(&p->buf[16]) != FDSC_TAG)
        return 0;

75 76 77
    return AVPROBE_SCORE_MAX;
}

78 79 80 81 82 83 84 85 86
static int film_read_close(AVFormatContext *s)
{
    FilmDemuxContext *film = s->priv_data;

    av_freep(&film->sample_table);

    return 0;
}

87
static int film_read_header(AVFormatContext *s)
88
{
89
    FilmDemuxContext *film = s->priv_data;
90
    AVIOContext *pb = s->pb;
91 92
    AVStream *st;
    unsigned char scratch[256];
93
    int i, ret;
94 95
    unsigned int data_offset;
    unsigned int audio_frame_counter;
96
    unsigned int video_frame_counter;
97 98 99 100

    film->sample_table = NULL;

    /* load the main FILM header */
101
    if (avio_read(pb, scratch, 16) != 16)
102
        return AVERROR(EIO);
103 104
    data_offset = AV_RB32(&scratch[4]);
    film->version = AV_RB32(&scratch[8]);
105 106 107 108

    /* load the FDSC chunk */
    if (film->version == 0) {
        /* special case for Lemmings .film files; 20-byte header */
109
        if (avio_read(pb, scratch, 20) != 20)
110
            return AVERROR(EIO);
111
        /* make some assumptions about the audio parameters */
112
        film->audio_type = AV_CODEC_ID_PCM_S8;
113 114 115 116 117
        film->audio_samplerate = 22050;
        film->audio_channels = 1;
        film->audio_bits = 8;
    } else {
        /* normal Saturn .cpk files; 32-byte header */
118
        if (avio_read(pb, scratch, 32) != 32)
119
            return AVERROR(EIO);
Michael Niedermayer's avatar
Michael Niedermayer committed
120
        film->audio_samplerate = AV_RB16(&scratch[24]);
121 122
        film->audio_channels = scratch[21];
        film->audio_bits = scratch[22];
123
        if (scratch[23] == 2 && film->audio_channels > 0)
124
            film->audio_type = AV_CODEC_ID_ADPCM_ADX;
125 126
        else if (film->audio_channels > 0) {
            if (film->audio_bits == 8)
127
                film->audio_type = AV_CODEC_ID_PCM_S8_PLANAR;
128
            else if (film->audio_bits == 16)
129
                film->audio_type = AV_CODEC_ID_PCM_S16BE_PLANAR;
130
            else
131
                film->audio_type = AV_CODEC_ID_NONE;
132
        } else
133
            film->audio_type = AV_CODEC_ID_NONE;
134 135
    }

136
    if (AV_RB32(&scratch[0]) != FDSC_TAG)
137 138
        return AVERROR_INVALIDDATA;

139
    if (AV_RB32(&scratch[8]) == CVID_TAG) {
140
        film->video_type = AV_CODEC_ID_CINEPAK;
141
    } else if (AV_RB32(&scratch[8]) == RAW_TAG) {
142
        film->video_type = AV_CODEC_ID_RAWVIDEO;
143
    } else {
144
        film->video_type = AV_CODEC_ID_NONE;
145
    }
146 147 148

    /* initialize the decoder streams */
    if (film->video_type) {
149
        st = avformat_new_stream(s, NULL);
150
        if (!st)
151
            return AVERROR(ENOMEM);
152
        film->video_stream_index = st->index;
153 154 155 156 157
        st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
        st->codecpar->codec_id = film->video_type;
        st->codecpar->codec_tag = 0;  /* no fourcc */
        st->codecpar->width = AV_RB32(&scratch[16]);
        st->codecpar->height = AV_RB32(&scratch[12]);
158

159
        if (film->video_type == AV_CODEC_ID_RAWVIDEO) {
160
            if (scratch[20] == 24) {
161
                st->codecpar->format = AV_PIX_FMT_RGB24;
162 163 164 165 166
            } else {
                av_log(s, AV_LOG_ERROR, "raw video is using unhandled %dbpp\n", scratch[20]);
                return -1;
            }
        }
167 168 169
    }

    if (film->audio_type) {
170
        st = avformat_new_stream(s, NULL);
171
        if (!st)
172
            return AVERROR(ENOMEM);
173
        film->audio_stream_index = st->index;
174 175 176 177 178
        st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
        st->codecpar->codec_id = film->audio_type;
        st->codecpar->codec_tag = 1;
        st->codecpar->channels = film->audio_channels;
        st->codecpar->sample_rate = film->audio_samplerate;
179

180
        if (film->audio_type == AV_CODEC_ID_ADPCM_ADX) {
181 182
            st->codecpar->bits_per_coded_sample = 18 * 8 / 32;
            st->codecpar->block_align = st->codecpar->channels * 18;
Justin Ruggles's avatar
Justin Ruggles committed
183
            st->need_parsing = AVSTREAM_PARSE_FULL;
184
        } else {
185 186 187
            st->codecpar->bits_per_coded_sample = film->audio_bits;
            st->codecpar->block_align = st->codecpar->channels *
                st->codecpar->bits_per_coded_sample / 8;
188 189
        }

190 191
        st->codecpar->bit_rate = st->codecpar->channels * st->codecpar->sample_rate *
            st->codecpar->bits_per_coded_sample;
192 193 194
    }

    /* load the sample table */
195
    if (avio_read(pb, scratch, 16) != 16)
196
        return AVERROR(EIO);
197
    if (AV_RB32(&scratch[0]) != STAB_TAG)
198
        return AVERROR_INVALIDDATA;
199 200
    film->base_clock = AV_RB32(&scratch[8]);
    film->sample_count = AV_RB32(&scratch[12]);
201
    if(film->sample_count >= UINT_MAX / sizeof(film_sample))
202
        return -1;
203
    film->sample_table = av_malloc_array(film->sample_count, sizeof(film_sample));
204 205
    if (!film->sample_table)
        return AVERROR(ENOMEM);
206

207 208
    for (i = 0; i < s->nb_streams; i++) {
        st = s->streams[i];
209
        if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO)
210 211 212 213
            avpriv_set_pts_info(st, 33, 1, film->base_clock);
        else
            avpriv_set_pts_info(st, 64, 1, film->audio_samplerate);
    }
214

215
    audio_frame_counter = video_frame_counter = 0;
216 217
    for (i = 0; i < film->sample_count; i++) {
        /* load the next sample record and transfer it to an internal struct */
218
        if (avio_read(pb, scratch, 16) != 16) {
219 220
            ret = AVERROR(EIO);
            goto fail;
221
        }
222
        film->sample_table[i].sample_offset =
223 224
            data_offset + AV_RB32(&scratch[0]);
        film->sample_table[i].sample_size = AV_RB32(&scratch[4]);
225 226 227 228
        if (film->sample_table[i].sample_size > INT_MAX / 4) {
            ret = AVERROR_INVALIDDATA;
            goto fail;
        }
229
        if (AV_RB32(&scratch[8]) == 0xFFFFFFFF) {
230 231 232
            film->sample_table[i].stream = film->audio_stream_index;
            film->sample_table[i].pts = audio_frame_counter;

233
            if (film->audio_type == AV_CODEC_ID_ADPCM_ADX)
234 235
                audio_frame_counter += (film->sample_table[i].sample_size * 32 /
                    (18 * film->audio_channels));
236
            else if (film->audio_type != AV_CODEC_ID_NONE)
237 238
                audio_frame_counter += (film->sample_table[i].sample_size /
                    (film->audio_channels * film->audio_bits / 8));
239 240
        } else {
            film->sample_table[i].stream = film->video_stream_index;
241
            film->sample_table[i].pts = AV_RB32(&scratch[8]) & 0x7FFFFFFF;
242
            film->sample_table[i].keyframe = (scratch[8] & 0x80) ? 0 : AVINDEX_KEYFRAME;
243
            video_frame_counter++;
244 245 246 247 248 249
            if (film->video_type)
                av_add_index_entry(s->streams[film->video_stream_index],
                                   film->sample_table[i].sample_offset,
                                   film->sample_table[i].pts,
                                   film->sample_table[i].sample_size, 0,
                                   film->sample_table[i].keyframe);
250 251 252
        }
    }

253 254 255
    if (film->audio_type)
        s->streams[film->audio_stream_index]->duration = audio_frame_counter;

256 257 258
    if (film->video_type)
        s->streams[film->video_stream_index]->duration = video_frame_counter;

259 260 261
    film->current_sample = 0;

    return 0;
262 263 264
fail:
    film_read_close(s);
    return ret;
265 266 267 268 269
}

static int film_read_packet(AVFormatContext *s,
                            AVPacket *pkt)
{
270
    FilmDemuxContext *film = s->priv_data;
271
    AVIOContext *pb = s->pb;
272
    film_sample *sample;
273 274
    film_sample *next_sample = NULL;
    int next_sample_id;
275 276 277
    int ret = 0;

    if (film->current_sample >= film->sample_count)
Piotr Bandurski's avatar
Piotr Bandurski committed
278
        return AVERROR_EOF;
279 280 281

    sample = &film->sample_table[film->current_sample];

282 283 284 285 286 287 288 289 290 291 292 293 294 295
    /* Find the next sample from the same stream, assuming there is one;
     * this is used to calculate the duration below */
    next_sample_id = film->current_sample + 1;
    while (next_sample == NULL) {
        if (next_sample_id >= film->sample_count)
            break;

        next_sample = &film->sample_table[next_sample_id];
        if (next_sample->stream != sample->stream) {
            next_sample = NULL;
            next_sample_id++;
        }
    }

296
    /* position the stream (will probably be there anyway) */
297
    avio_seek(pb, sample->sample_offset, SEEK_SET);
298

299
    ret = av_get_packet(pb, pkt, sample->sample_size);
300 301
    if (ret != sample->sample_size)
        ret = AVERROR(EIO);
302 303

    pkt->stream_index = sample->stream;
304
    pkt->dts = sample->pts;
305
    pkt->pts = sample->pts;
306
    pkt->flags |= sample->keyframe ? AV_PKT_FLAG_KEY : 0;
307 308
    if (next_sample != NULL)
        pkt->duration = next_sample->pts - sample->pts;
309 310 311 312 313 314

    film->current_sample++;

    return ret;
}

315 316 317 318
static int film_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
{
    FilmDemuxContext *film = s->priv_data;
    AVStream *st = s->streams[stream_index];
319
    int64_t pos;
320 321 322 323
    int ret = av_index_search_timestamp(st, timestamp, flags);
    if (ret < 0)
        return ret;

324 325 326
    pos = avio_seek(s->pb, st->index_entries[ret].pos, SEEK_SET);
    if (pos < 0)
        return pos;
327

328
    film->current_sample = ret;
329 330 331 332

    return 0;
}

333
AVInputFormat ff_segafilm_demuxer = {
334
    .name           = "film_cpk",
335
    .long_name      = NULL_IF_CONFIG_SMALL("Sega FILM / CPK"),
336 337 338 339 340
    .priv_data_size = sizeof(FilmDemuxContext),
    .read_probe     = film_probe,
    .read_header    = film_read_header,
    .read_packet    = film_read_packet,
    .read_close     = film_read_close,
341
    .read_seek      = film_read_seek,
342
};