paf.c 7.88 KB
Newer Older
Paul B Mahol's avatar
Paul B Mahol committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * Packed Animation File demuxer
 * Copyright (c) 2012 Paul B Mahol
 *
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * FFmpeg is distributed in the hope that it will be useful,
 * 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
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

Paul B Mahol's avatar
Paul B Mahol committed
22
#include "libavutil/channel_layout.h"
Paul B Mahol's avatar
Paul B Mahol committed
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
#include "libavcodec/paf.h"
#include "avformat.h"
#include "internal.h"

#define MAGIC "Packed Animation File V1.0\n(c) 1992-96 Amazing Studio\x0a\x1a"

typedef struct {
    uint32_t buffer_size;
    uint32_t frame_blks;
    uint32_t nb_frames;
    uint32_t start_offset;
    uint32_t preload_count;
    uint32_t max_video_blks;
    uint32_t max_audio_blks;

    uint32_t current_frame;
    uint32_t current_frame_count;
    uint32_t current_frame_block;

    uint32_t *blocks_count_table;
    uint32_t *frames_offset_table;
    uint32_t *blocks_offset_table;

    uint8_t  *video_frame;
Paul B Mahol's avatar
Paul B Mahol committed
47
    int video_size;
Paul B Mahol's avatar
Paul B Mahol committed
48 49 50

    uint8_t  *audio_frame;
    uint8_t  *temp_audio_frame;
Paul B Mahol's avatar
Paul B Mahol committed
51
    int audio_size;
Paul B Mahol's avatar
Paul B Mahol committed
52

Paul B Mahol's avatar
Paul B Mahol committed
53
    int got_audio;
Paul B Mahol's avatar
Paul B Mahol committed
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
} PAFDemuxContext;

static int read_probe(AVProbeData *p)
{
    if ((p->buf_size >= strlen(MAGIC)) &&
        !memcmp(p->buf, MAGIC, strlen(MAGIC)))
        return AVPROBE_SCORE_MAX;
    return 0;
}

static int read_close(AVFormatContext *s)
{
    PAFDemuxContext *p = s->priv_data;

    av_freep(&p->blocks_count_table);
    av_freep(&p->frames_offset_table);
    av_freep(&p->blocks_offset_table);
    av_freep(&p->video_frame);
    av_freep(&p->audio_frame);
    av_freep(&p->temp_audio_frame);

    return 0;
}

static void read_table(AVFormatContext *s, uint32_t *table, uint32_t count)
{
    int i;

    for (i = 0; i < count; i++)
        table[i] = avio_rl32(s->pb);

    avio_skip(s->pb, 4 * (FFALIGN(count, 512) - count));
}

static int read_header(AVFormatContext *s)
{
Paul B Mahol's avatar
Paul B Mahol committed
90
    PAFDemuxContext *p  = s->priv_data;
Paul B Mahol's avatar
Paul B Mahol committed
91 92
    AVIOContext     *pb = s->pb;
    AVStream        *ast, *vst;
Paul B Mahol's avatar
Paul B Mahol committed
93
    int ret = 0;
Paul B Mahol's avatar
Paul B Mahol committed
94 95 96 97 98 99 100 101 102 103

    avio_skip(pb, 132);

    vst = avformat_new_stream(s, 0);
    if (!vst)
        return AVERROR(ENOMEM);

    vst->start_time = 0;
    vst->nb_frames  =
    vst->duration   =
Paul B Mahol's avatar
Paul B Mahol committed
104
    p->nb_frames    = avio_rl32(pb);
Paul B Mahol's avatar
Paul B Mahol committed
105
    avio_skip(pb, 4);
Paul B Mahol's avatar
Paul B Mahol committed
106

Paul B Mahol's avatar
Paul B Mahol committed
107 108 109
    vst->codec->width  = avio_rl32(pb);
    vst->codec->height = avio_rl32(pb);
    avio_skip(pb, 4);
Paul B Mahol's avatar
Paul B Mahol committed
110

Paul B Mahol's avatar
Paul B Mahol committed
111 112
    vst->codec->codec_type = AVMEDIA_TYPE_VIDEO;
    vst->codec->codec_tag  = 0;
113
    vst->codec->codec_id   = AV_CODEC_ID_PAF_VIDEO;
Paul B Mahol's avatar
Paul B Mahol committed
114 115 116 117 118 119
    avpriv_set_pts_info(vst, 64, 1, 10);

    ast = avformat_new_stream(s, 0);
    if (!ast)
        return AVERROR(ENOMEM);

Paul B Mahol's avatar
Paul B Mahol committed
120 121 122 123 124
    ast->start_time            = 0;
    ast->codec->codec_type     = AVMEDIA_TYPE_AUDIO;
    ast->codec->codec_tag      = 0;
    ast->codec->codec_id       = AV_CODEC_ID_PAF_AUDIO;
    ast->codec->channels       = 2;
Paul B Mahol's avatar
Paul B Mahol committed
125
    ast->codec->channel_layout = AV_CH_LAYOUT_STEREO;
Paul B Mahol's avatar
Paul B Mahol committed
126
    ast->codec->sample_rate    = 22050;
Paul B Mahol's avatar
Paul B Mahol committed
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
    avpriv_set_pts_info(ast, 64, 1, 22050);

    p->buffer_size    = avio_rl32(pb);
    p->preload_count  = avio_rl32(pb);
    p->frame_blks     = avio_rl32(pb);
    p->start_offset   = avio_rl32(pb);
    p->max_video_blks = avio_rl32(pb);
    p->max_audio_blks = avio_rl32(pb);
    if (p->buffer_size    < 175  ||
        p->max_audio_blks < 2    ||
        p->max_video_blks < 1    ||
        p->frame_blks     < 1    ||
        p->nb_frames      < 1    ||
        p->preload_count  < 1    ||
        p->buffer_size    > 2048 ||
        p->max_video_blks > 2048 ||
        p->max_audio_blks > 2048 ||
        p->nb_frames      > INT_MAX / sizeof(uint32_t) ||
        p->frame_blks     > INT_MAX / sizeof(uint32_t))
        return AVERROR_INVALIDDATA;

Paul B Mahol's avatar
Paul B Mahol committed
148 149 150 151 152 153
    p->blocks_count_table  = av_mallocz(p->nb_frames *
                                        sizeof(*p->blocks_count_table));
    p->frames_offset_table = av_mallocz(p->nb_frames *
                                        sizeof(*p->frames_offset_table));
    p->blocks_offset_table = av_mallocz(p->frame_blks *
                                        sizeof(*p->blocks_offset_table));
Paul B Mahol's avatar
Paul B Mahol committed
154

Paul B Mahol's avatar
Paul B Mahol committed
155 156
    p->video_size  = p->max_video_blks * p->buffer_size;
    p->video_frame = av_mallocz(p->video_size);
Paul B Mahol's avatar
Paul B Mahol committed
157

Paul B Mahol's avatar
Paul B Mahol committed
158 159 160
    p->audio_size       = p->max_audio_blks * p->buffer_size;
    p->audio_frame      = av_mallocz(p->audio_size);
    p->temp_audio_frame = av_mallocz(p->audio_size);
Paul B Mahol's avatar
Paul B Mahol committed
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193

    if (!p->blocks_count_table  ||
        !p->frames_offset_table ||
        !p->blocks_offset_table ||
        !p->video_frame         ||
        !p->audio_frame         ||
        !p->temp_audio_frame) {
        ret = AVERROR(ENOMEM);
        goto fail;
    }

    avio_seek(pb, p->buffer_size, SEEK_SET);

    read_table(s, p->blocks_count_table,  p->nb_frames);
    read_table(s, p->frames_offset_table, p->nb_frames);
    read_table(s, p->blocks_offset_table, p->frame_blks);

    p->got_audio = 0;
    p->current_frame = 0;
    p->current_frame_block = 0;

    avio_seek(pb, p->start_offset, SEEK_SET);

    return 0;

fail:
    read_close(s);

    return ret;
}

static int read_packet(AVFormatContext *s, AVPacket *pkt)
{
Paul B Mahol's avatar
Paul B Mahol committed
194
    PAFDemuxContext *p  = s->priv_data;
Paul B Mahol's avatar
Paul B Mahol committed
195 196 197 198 199 200 201
    AVIOContext     *pb = s->pb;
    uint32_t        count, offset;
    int             size, i;

    if (p->current_frame >= p->nb_frames)
        return AVERROR_EOF;

202
    if (avio_feof(pb))
Paul B Mahol's avatar
Paul B Mahol committed
203 204 205 206 207 208 209
        return AVERROR_EOF;

    if (p->got_audio) {
        if (av_new_packet(pkt, p->audio_size) < 0)
            return AVERROR(ENOMEM);

        memcpy(pkt->data, p->temp_audio_frame, p->audio_size);
210
        pkt->duration     = PAF_SOUND_SAMPLES * (p->audio_size / PAF_SOUND_FRAME_SIZE);
Paul B Mahol's avatar
Paul B Mahol committed
211 212 213 214 215 216
        pkt->flags       |= AV_PKT_FLAG_KEY;
        pkt->stream_index = 1;
        p->got_audio      = 0;
        return pkt->size;
    }

Paul B Mahol's avatar
Paul B Mahol committed
217 218
    count = (p->current_frame == 0) ? p->preload_count
                                    : p->blocks_count_table[p->current_frame - 1];
Paul B Mahol's avatar
Paul B Mahol committed
219 220 221 222
    for (i = 0; i < count; i++) {
        if (p->current_frame_block >= p->frame_blks)
            return AVERROR_INVALIDDATA;

223 224
        offset = p->blocks_offset_table[p->current_frame_block] & ~(1U << 31);
        if (p->blocks_offset_table[p->current_frame_block] & (1U << 31)) {
Paul B Mahol's avatar
Paul B Mahol committed
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
            if (offset > p->audio_size - p->buffer_size)
                return AVERROR_INVALIDDATA;

            avio_read(pb, p->audio_frame + offset, p->buffer_size);
            if (offset == (p->max_audio_blks - 2) * p->buffer_size) {
                memcpy(p->temp_audio_frame, p->audio_frame, p->audio_size);
                p->got_audio = 1;
            }
        } else {
            if (offset > p->video_size - p->buffer_size)
                return AVERROR_INVALIDDATA;

            avio_read(pb, p->video_frame + offset, p->buffer_size);
        }
        p->current_frame_block++;
    }

242
    if (p->frames_offset_table[p->current_frame] >= p->video_size)
Paul B Mahol's avatar
Paul B Mahol committed
243 244
        return AVERROR_INVALIDDATA;

245 246
    size = p->video_size - p->frames_offset_table[p->current_frame];

Paul B Mahol's avatar
Paul B Mahol committed
247 248 249 250 251 252
    if (av_new_packet(pkt, size) < 0)
        return AVERROR(ENOMEM);

    pkt->stream_index = 0;
    pkt->duration     = 1;
    memcpy(pkt->data, p->video_frame + p->frames_offset_table[p->current_frame], size);
253
    if (pkt->data[0] & 0x20)
Paul B Mahol's avatar
Paul B Mahol committed
254
        pkt->flags |= AV_PKT_FLAG_KEY;
Paul B Mahol's avatar
Paul B Mahol committed
255 256 257 258 259 260 261 262 263 264 265 266 267 268
    p->current_frame++;

    return pkt->size;
}

AVInputFormat ff_paf_demuxer = {
    .name           = "paf",
    .long_name      = NULL_IF_CONFIG_SMALL("Amazing Studio Packed Animation File"),
    .priv_data_size = sizeof(PAFDemuxContext),
    .read_probe     = read_probe,
    .read_header    = read_header,
    .read_packet    = read_packet,
    .read_close     = read_close,
};