avs.c 6.96 KB
Newer Older
1 2 3 4
/*
 * AVS demuxer.
 * Copyright (c) 2006  Aurelien Jacobs <aurel@gnuage.org>
 *
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
 */

#include "avformat.h"
#include "voc.h"


typedef struct avs_format {
27
    VocDecContext voc;
28 29 30 31 32 33 34 35 36
    AVStream *st_video;
    AVStream *st_audio;
    int width;
    int height;
    int bits_per_sample;
    int fps;
    int nb_frames;
    int remaining_frame_size;
    int remaining_audio_size;
37
} AvsFormat;
38 39

typedef enum avs_block_type {
40
    AVS_NONE      = 0x00,
41 42 43 44
    AVS_VIDEO     = 0x01,
    AVS_AUDIO     = 0x02,
    AVS_PALETTE   = 0x03,
    AVS_GAME_DATA = 0x04,
45
} AvsBlockType;
46 47 48 49 50 51 52

static int avs_probe(AVProbeData * p)
{
    const uint8_t *d;

    d = p->buf;
    if (d[0] == 'w' && d[1] == 'W' && d[2] == 0x10 && d[3] == 0)
53 54
        /* Ensure the buffer probe scores higher than the extension probe.
         * This avoids problems with misdetection as AviSynth scripts. */
55
        return AVPROBE_SCORE_EXTENSION + 5;
56 57 58 59

    return 0;
}

60
static int avs_read_header(AVFormatContext * s)
61
{
62
    AvsFormat *avs = s->priv_data;
63 64 65

    s->ctx_flags |= AVFMTCTX_NOHEADER;

66
    avio_skip(s->pb, 4);
67 68 69 70 71
    avs->width = avio_rl16(s->pb);
    avs->height = avio_rl16(s->pb);
    avs->bits_per_sample = avio_rl16(s->pb);
    avs->fps = avio_rl16(s->pb);
    avs->nb_frames = avio_rl32(s->pb);
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
    avs->remaining_frame_size = 0;
    avs->remaining_audio_size = 0;

    avs->st_video = avs->st_audio = NULL;

    if (avs->width != 318 || avs->height != 198)
        av_log(s, AV_LOG_ERROR, "This avs pretend to be %dx%d "
               "when the avs format is supposed to be 318x198 only.\n",
               avs->width, avs->height);

    return 0;
}

static int
avs_read_video_packet(AVFormatContext * s, AVPacket * pkt,
87
                      AvsBlockType type, int sub_type, int size,
88 89
                      uint8_t * palette, int palette_size)
{
90
    AvsFormat *avs = s->priv_data;
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
    int ret;

    ret = av_new_packet(pkt, size + palette_size);
    if (ret < 0)
        return ret;

    if (palette_size) {
        pkt->data[0] = 0x00;
        pkt->data[1] = 0x03;
        pkt->data[2] = palette_size & 0xFF;
        pkt->data[3] = (palette_size >> 8) & 0xFF;
        memcpy(pkt->data + 4, palette, palette_size - 4);
    }

    pkt->data[palette_size + 0] = sub_type;
    pkt->data[palette_size + 1] = type;
    pkt->data[palette_size + 2] = size & 0xFF;
    pkt->data[palette_size + 3] = (size >> 8) & 0xFF;
109
    ret = avio_read(s->pb, pkt->data + palette_size + 4, size - 4) + 4;
110 111
    if (ret < size) {
        av_free_packet(pkt);
112
        return AVERROR(EIO);
113 114 115 116 117
    }

    pkt->size = ret + palette_size;
    pkt->stream_index = avs->st_video->index;
    if (sub_type == 0)
118
        pkt->flags |= AV_PKT_FLAG_KEY;
119 120 121 122 123 124

    return 0;
}

static int avs_read_audio_packet(AVFormatContext * s, AVPacket * pkt)
{
125
    AvsFormat *avs = s->priv_data;
126 127
    int ret, size;

128
    size = avio_tell(s->pb);
129
    ret = ff_voc_get_packet(s, pkt, avs->st_audio, avs->remaining_audio_size);
130
    size = avio_tell(s->pb) - size;
131 132
    avs->remaining_audio_size -= size;

133
    if (ret == AVERROR(EIO))
134 135 136 137 138
        return 0;    /* this indicate EOS */
    if (ret < 0)
        return ret;

    pkt->stream_index = avs->st_audio->index;
139
    pkt->flags |= AV_PKT_FLAG_KEY;
140 141 142 143 144 145

    return size;
}

static int avs_read_packet(AVFormatContext * s, AVPacket * pkt)
{
146
    AvsFormat *avs = s->priv_data;
147
    int sub_type = 0, size = 0;
148
    AvsBlockType type = AVS_NONE;
149 150 151 152 153 154 155 156 157 158
    int palette_size = 0;
    uint8_t palette[4 + 3 * 256];
    int ret;

    if (avs->remaining_audio_size > 0)
        if (avs_read_audio_packet(s, pkt) > 0)
            return 0;

    while (1) {
        if (avs->remaining_frame_size <= 0) {
159
            if (!avio_rl16(s->pb))    /* found EOF */
160
                return AVERROR(EIO);
161
            avs->remaining_frame_size = avio_rl16(s->pb) - 4;
162 163 164
        }

        while (avs->remaining_frame_size > 0) {
165 166 167
            sub_type = avio_r8(s->pb);
            type = avio_r8(s->pb);
            size = avio_rl16(s->pb);
168 169
            if (size < 4)
                return AVERROR_INVALIDDATA;
170 171 172 173
            avs->remaining_frame_size -= size;

            switch (type) {
            case AVS_PALETTE:
174 175
                if (size - 4 > sizeof(palette))
                    return AVERROR_INVALIDDATA;
176
                ret = avio_read(s->pb, palette, size - 4);
177
                if (ret < size - 4)
178
                    return AVERROR(EIO);
179 180 181 182 183
                palette_size = size;
                break;

            case AVS_VIDEO:
                if (!avs->st_video) {
184
                    avs->st_video = avformat_new_stream(s, NULL);
185
                    if (!avs->st_video)
186
                        return AVERROR(ENOMEM);
187
                    avs->st_video->codec->codec_type = AVMEDIA_TYPE_VIDEO;
188
                    avs->st_video->codec->codec_id = AV_CODEC_ID_AVS;
189 190
                    avs->st_video->codec->width = avs->width;
                    avs->st_video->codec->height = avs->height;
191
                    avs->st_video->codec->bits_per_coded_sample=avs->bits_per_sample;
192
                    avs->st_video->nb_frames = avs->nb_frames;
193 194 195 196
#if FF_API_R_FRAME_RATE
                    avs->st_video->r_frame_rate =
#endif
                    avs->st_video->avg_frame_rate = (AVRational){avs->fps, 1};
197 198 199 200 201 202
                }
                return avs_read_video_packet(s, pkt, type, sub_type, size,
                                             palette, palette_size);

            case AVS_AUDIO:
                if (!avs->st_audio) {
203
                    avs->st_audio = avformat_new_stream(s, NULL);
204
                    if (!avs->st_audio)
205
                        return AVERROR(ENOMEM);
206
                    avs->st_audio->codec->codec_type = AVMEDIA_TYPE_AUDIO;
207 208 209 210 211 212 213 214
                }
                avs->remaining_audio_size = size - 4;
                size = avs_read_audio_packet(s, pkt);
                if (size != 0)
                    return size;
                break;

            default:
215
                avio_skip(s->pb, size - 4);
216 217 218 219 220 221 222 223 224 225
            }
        }
    }
}

static int avs_read_close(AVFormatContext * s)
{
    return 0;
}

226
AVInputFormat ff_avs_demuxer = {
227
    .name           = "avs",
228
    .long_name      = NULL_IF_CONFIG_SMALL("AVS"),
229 230 231 232 233
    .priv_data_size = sizeof(AvsFormat),
    .read_probe     = avs_probe,
    .read_header    = avs_read_header,
    .read_packet    = avs_read_packet,
    .read_close     = avs_read_close,
234
};