segafilm.c 9.25 KB
Newer Older
1 2 3 4
/*
 * Sega FILM Format (CPK) Demuxer
 * 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 24 25 26 27 28 29 30 31
 */

/**
 * @file segafilm.c
 * 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/
 */

#include "avformat.h"

32 33 34 35
#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')
36 37 38

typedef struct {
  int stream;
39
  offset_t sample_offset;
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
  unsigned int sample_size;
  int64_t pts;
  int keyframe;
} film_sample_t;

typedef struct FilmDemuxContext {
    int video_stream_index;
    int audio_stream_index;

    unsigned int audio_type;
    unsigned int audio_samplerate;
    unsigned int audio_bits;
    unsigned int audio_channels;

    unsigned int video_type;
    unsigned int sample_count;
    film_sample_t *sample_table;
    unsigned int current_sample;

    unsigned int base_clock;
    unsigned int version;

    /* buffer used for interleaving stereo PCM data */
    unsigned char *stereo_buffer;
    int stereo_buffer_size;
} FilmDemuxContext;

static int film_probe(AVProbeData *p)
{
69
    if (AV_RB32(&p->buf[0]) != FILM_TAG)
70 71 72 73 74 75 76 77
        return 0;

    return AVPROBE_SCORE_MAX;
}

static int film_read_header(AVFormatContext *s,
                            AVFormatParameters *ap)
{
78
    FilmDemuxContext *film = s->priv_data;
79 80 81 82 83 84 85 86 87 88 89 90 91
    ByteIOContext *pb = &s->pb;
    AVStream *st;
    unsigned char scratch[256];
    int i;
    unsigned int data_offset;
    unsigned int audio_frame_counter;

    film->sample_table = NULL;
    film->stereo_buffer = NULL;
    film->stereo_buffer_size = 0;

    /* load the main FILM header */
    if (get_buffer(pb, scratch, 16) != 16)
92
        return AVERROR(EIO);
93 94
    data_offset = AV_RB32(&scratch[4]);
    film->version = AV_RB32(&scratch[8]);
95 96 97 98 99

    /* load the FDSC chunk */
    if (film->version == 0) {
        /* special case for Lemmings .film files; 20-byte header */
        if (get_buffer(pb, scratch, 20) != 20)
100
            return AVERROR(EIO);
101 102 103 104 105 106 107 108
        /* make some assumptions about the audio parameters */
        film->audio_type = CODEC_ID_PCM_S8;
        film->audio_samplerate = 22050;
        film->audio_channels = 1;
        film->audio_bits = 8;
    } else {
        /* normal Saturn .cpk files; 32-byte header */
        if (get_buffer(pb, scratch, 32) != 32)
109
            return AVERROR(EIO);
110
        film->audio_samplerate = AV_RB16(&scratch[24]);;
111 112 113 114 115 116 117 118 119 120
        film->audio_channels = scratch[21];
        film->audio_bits = scratch[22];
        if (film->audio_bits == 8)
            film->audio_type = CODEC_ID_PCM_S8;
        else if (film->audio_bits == 16)
            film->audio_type = CODEC_ID_PCM_S16BE;
        else
            film->audio_type = 0;
    }

121
    if (AV_RB32(&scratch[0]) != FDSC_TAG)
122 123
        return AVERROR_INVALIDDATA;

124
    if (AV_RB32(&scratch[8]) == CVID_TAG) {
125 126 127 128 129 130 131 132
        film->video_type = CODEC_ID_CINEPAK;
    } else
        film->video_type = 0;

    /* initialize the decoder streams */
    if (film->video_type) {
        st = av_new_stream(s, 0);
        if (!st)
133
            return AVERROR(ENOMEM);
134
        film->video_stream_index = st->index;
135 136 137
        st->codec->codec_type = CODEC_TYPE_VIDEO;
        st->codec->codec_id = film->video_type;
        st->codec->codec_tag = 0;  /* no fourcc */
138 139
        st->codec->width = AV_RB32(&scratch[16]);
        st->codec->height = AV_RB32(&scratch[12]);
140 141 142 143 144
    }

    if (film->audio_type) {
        st = av_new_stream(s, 0);
        if (!st)
145
            return AVERROR(ENOMEM);
146
        film->audio_stream_index = st->index;
147 148 149 150 151 152 153 154
        st->codec->codec_type = CODEC_TYPE_AUDIO;
        st->codec->codec_id = film->audio_type;
        st->codec->codec_tag = 1;
        st->codec->channels = film->audio_channels;
        st->codec->bits_per_sample = film->audio_bits;
        st->codec->sample_rate = film->audio_samplerate;
        st->codec->bit_rate = st->codec->channels * st->codec->sample_rate *
            st->codec->bits_per_sample;
155
        st->codec->block_align = st->codec->channels *
156
            st->codec->bits_per_sample / 8;
157 158 159 160
    }

    /* load the sample table */
    if (get_buffer(pb, scratch, 16) != 16)
161
        return AVERROR(EIO);
162
    if (AV_RB32(&scratch[0]) != STAB_TAG)
163
        return AVERROR_INVALIDDATA;
164 165
    film->base_clock = AV_RB32(&scratch[8]);
    film->sample_count = AV_RB32(&scratch[12]);
166 167
    if(film->sample_count >= UINT_MAX / sizeof(film_sample_t))
        return -1;
168
    film->sample_table = av_malloc(film->sample_count * sizeof(film_sample_t));
169

170 171
    for(i=0; i<s->nb_streams; i++)
        av_set_pts_info(s->streams[i], 33, 1, film->base_clock);
172

173 174 175 176 177
    audio_frame_counter = 0;
    for (i = 0; i < film->sample_count; i++) {
        /* load the next sample record and transfer it to an internal struct */
        if (get_buffer(pb, scratch, 16) != 16) {
            av_free(film->sample_table);
178
            return AVERROR(EIO);
179
        }
180
        film->sample_table[i].sample_offset =
181 182 183
            data_offset + AV_RB32(&scratch[0]);
        film->sample_table[i].sample_size = AV_RB32(&scratch[4]);
        if (AV_RB32(&scratch[8]) == 0xFFFFFFFF) {
184 185 186 187 188 189 190 191 192
            film->sample_table[i].stream = film->audio_stream_index;
            film->sample_table[i].pts = audio_frame_counter;
            film->sample_table[i].pts *= film->base_clock;
            film->sample_table[i].pts /= film->audio_samplerate;

            audio_frame_counter += (film->sample_table[i].sample_size /
                (film->audio_channels * film->audio_bits / 8));
        } else {
            film->sample_table[i].stream = film->video_stream_index;
193
            film->sample_table[i].pts = AV_RB32(&scratch[8]) & 0x7FFFFFFF;
194 195 196 197 198 199 200 201 202 203 204 205
            film->sample_table[i].keyframe = (scratch[8] & 0x80) ? 0 : 1;
        }
    }

    film->current_sample = 0;

    return 0;
}

static int film_read_packet(AVFormatContext *s,
                            AVPacket *pkt)
{
206
    FilmDemuxContext *film = s->priv_data;
207 208 209 210 211 212 213
    ByteIOContext *pb = &s->pb;
    film_sample_t *sample;
    int ret = 0;
    int i;
    int left, right;

    if (film->current_sample >= film->sample_count)
214
        return AVERROR(EIO);
215 216 217 218 219 220 221

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

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

    /* do a special song and dance when loading FILM Cinepak chunks */
222
    if ((sample->stream == film->video_stream_index) &&
223
        (film->video_type == CODEC_ID_CINEPAK)) {
Michael Niedermayer's avatar
Michael Niedermayer committed
224
        pkt->pos= url_ftell(pb);
225
        if (av_new_packet(pkt, sample->sample_size))
226
            return AVERROR(ENOMEM);
227
        get_buffer(pb, pkt->data, sample->sample_size);
228 229 230 231 232
    } else if ((sample->stream == film->audio_stream_index) &&
        (film->audio_channels == 2)) {
        /* stereo PCM needs to be interleaved */

        if (av_new_packet(pkt, sample->sample_size))
233
            return AVERROR(ENOMEM);
234 235 236 237 238 239 240 241

        /* make sure the interleave buffer is large enough */
        if (sample->sample_size > film->stereo_buffer_size) {
            av_free(film->stereo_buffer);
            film->stereo_buffer_size = sample->sample_size;
            film->stereo_buffer = av_malloc(film->stereo_buffer_size);
        }

Michael Niedermayer's avatar
Michael Niedermayer committed
242
        pkt->pos= url_ftell(pb);
243 244
        ret = get_buffer(pb, film->stereo_buffer, sample->sample_size);
        if (ret != sample->sample_size)
245
            ret = AVERROR(EIO);
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260

        left = 0;
        right = sample->sample_size / 2;
        for (i = 0; i < sample->sample_size; ) {
            if (film->audio_bits == 8) {
                pkt->data[i++] = film->stereo_buffer[left++];
                pkt->data[i++] = film->stereo_buffer[right++];
            } else {
                pkt->data[i++] = film->stereo_buffer[left++];
                pkt->data[i++] = film->stereo_buffer[left++];
                pkt->data[i++] = film->stereo_buffer[right++];
                pkt->data[i++] = film->stereo_buffer[right++];
            }
        }
    } else {
Michael Niedermayer's avatar
Michael Niedermayer committed
261
        ret= av_get_packet(pb, pkt, sample->sample_size);
262
        if (ret != sample->sample_size)
263
            ret = AVERROR(EIO);
264 265 266 267 268 269 270 271 272 273 274 275
    }

    pkt->stream_index = sample->stream;
    pkt->pts = sample->pts;

    film->current_sample++;

    return ret;
}

static int film_read_close(AVFormatContext *s)
{
276
    FilmDemuxContext *film = s->priv_data;
277 278 279 280 281 282 283

    av_free(film->sample_table);
    av_free(film->stereo_buffer);

    return 0;
}

284
AVInputFormat segafilm_demuxer = {
285 286 287 288 289 290 291 292
    "film_cpk",
    "Sega FILM/CPK format",
    sizeof(FilmDemuxContext),
    film_probe,
    film_read_header,
    film_read_packet,
    film_read_close,
};