bethsoftvid.c 7.77 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * Bethsoft VID format Demuxer
 * Copyright (c) 2007 Nicholas Tung
 *
 * 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
 */

/**
23
 * @file
24 25
 * @brief Bethesda Softworks VID (.vid) file demuxer
 * @author Nicholas Tung [ntung (at. ntung com] (2007-03)
26 27
 * @see http://wiki.multimedia.cx/index.php?title=Bethsoft_VID
 * @see http://www.svatopluk.com/andux/docs/dfvid.html
28 29
 */

30
#include "libavutil/intreadwrite.h"
31
#include "avformat.h"
32
#include "libavcodec/bethsoftvideo.h"
33 34 35 36 37 38 39 40 41 42 43

typedef struct BVID_DemuxContext
{
    int nframes;
    /** delay value between frames, added to individual frame delay.
     * custom units, which will be added to other custom units (~=16ms according
     * to free, unofficial documentation) */
    int bethsoft_global_delay;

    /** video presentation time stamp.
     * delay = 16 milliseconds * (global_delay + per_frame_delay) */
44
    int video_pts;
45 46 47 48 49 50 51 52

    int is_finished;

} BVID_DemuxContext;

static int vid_probe(AVProbeData *p)
{
    // little endian VID tag, file starts with "VID\0"
53
    if (AV_RL32(p->buf) != MKTAG('V', 'I', 'D', 0))
54 55 56 57 58 59 60 61
        return 0;

    return AVPROBE_SCORE_MAX;
}

static int vid_read_header(AVFormatContext *s,
                            AVFormatParameters *ap)
{
62
    BVID_DemuxContext *vid = s->priv_data;
63
    AVIOContext *pb = s->pb;
64 65 66 67 68 69
    AVStream *stream;

    /* load main header. Contents:
    *    bytes: 'V' 'I' 'D'
    *    int16s: always_512, nframes, width, height, delay, always_14
    */
70
    avio_skip(pb, 5);
71
    vid->nframes = avio_rl16(pb);
72

73
    stream = avformat_new_stream(s, NULL);
74
    if (!stream)
75
        return AVERROR(ENOMEM);
76
    av_set_pts_info(stream, 32, 1, 60);     // 16 ms increments, i.e. 60 fps
77
    stream->codec->codec_type = AVMEDIA_TYPE_VIDEO;
78
    stream->codec->codec_id = CODEC_ID_BETHSOFTVID;
79 80
    stream->codec->width = avio_rl16(pb);
    stream->codec->height = avio_rl16(pb);
81
    stream->codec->pix_fmt = PIX_FMT_PAL8;
82 83
    vid->bethsoft_global_delay = avio_rl16(pb);
    avio_rl16(pb);
84 85

    // done with video codec, set up audio codec
86
    stream = avformat_new_stream(s, NULL);
87
    if (!stream)
88
        return AVERROR(ENOMEM);
89
    stream->codec->codec_type = AVMEDIA_TYPE_AUDIO;
90 91 92
    stream->codec->codec_id = CODEC_ID_PCM_U8;
    stream->codec->channels = 1;
    stream->codec->sample_rate = 11025;
93 94
    stream->codec->bits_per_coded_sample = 8;
    stream->codec->bit_rate = stream->codec->channels * stream->codec->sample_rate * stream->codec->bits_per_coded_sample;
95 96 97 98 99

    return 0;
}

#define BUFFER_PADDING_SIZE 1000
100
static int read_frame(BVID_DemuxContext *vid, AVIOContext *pb, AVPacket *pkt,
101 102 103 104
                      uint8_t block_type, AVFormatContext *s, int npixels)
{
    uint8_t * vidbuf_start = NULL;
    int vidbuf_nbytes = 0;
105
    int code;
106 107
    int bytes_copied = 0;
    int position;
108
    unsigned int vidbuf_capacity;
109 110

    vidbuf_start = av_malloc(vidbuf_capacity = BUFFER_PADDING_SIZE);
111
    if(!vidbuf_start)
112
        return AVERROR(ENOMEM);
113 114

    // save the file position for the packet, include block type
115
    position = avio_tell(pb) - 1;
116 117 118 119

    vidbuf_start[vidbuf_nbytes++] = block_type;

    // get the video delay (next int16), and set the presentation time
120
    vid->video_pts += vid->bethsoft_global_delay + avio_rl16(pb);
121 122

    // set the y offset if it exists (decoder header data should be in data section)
123
    if(block_type == VIDEO_YOFF_P_FRAME){
124
        if(avio_read(pb, &vidbuf_start[vidbuf_nbytes], 2) != 2)
125
            goto fail;
126 127 128
        vidbuf_nbytes += 2;
    }

129
    do{
130
        vidbuf_start = av_fast_realloc(vidbuf_start, &vidbuf_capacity, vidbuf_nbytes + BUFFER_PADDING_SIZE);
131
        if(!vidbuf_start)
132
            return AVERROR(ENOMEM);
133

134
        code = avio_r8(pb);
135
        vidbuf_start[vidbuf_nbytes++] = code;
136

137
        if(code >= 0x80){ // rle sequence
138
            if(block_type == VIDEO_I_FRAME)
139
                vidbuf_start[vidbuf_nbytes++] = avio_r8(pb);
140
        } else if(code){ // plain sequence
141
            if(avio_read(pb, &vidbuf_start[vidbuf_nbytes], code) != code)
142
                goto fail;
143
            vidbuf_nbytes += code;
144
        }
145
        bytes_copied += code & 0x7F;
146
        if(bytes_copied == npixels){ // sometimes no stop character is given, need to keep track of bytes copied
147
            // may contain a 0 byte even if read all pixels
148
            if(avio_r8(pb))
149
                avio_seek(pb, -1, SEEK_CUR);
150 151
            break;
        }
152
        if(bytes_copied > npixels)
153
            goto fail;
154
    } while(code);
155 156

    // copy data into packet
157 158
    if(av_new_packet(pkt, vidbuf_nbytes) < 0)
        goto fail;
159 160 161 162 163 164 165 166 167
    memcpy(pkt->data, vidbuf_start, vidbuf_nbytes);
    av_free(vidbuf_start);

    pkt->pos = position;
    pkt->stream_index = 0;  // use the video decoder, which was initialized as the first stream
    pkt->pts = vid->video_pts;

    vid->nframes--;  // used to check if all the frames were read
    return vidbuf_nbytes;
168 169 170
fail:
    av_free(vidbuf_start);
    return -1;
171 172 173 174 175
}

static int vid_read_packet(AVFormatContext *s,
                           AVPacket *pkt)
{
176
    BVID_DemuxContext *vid = s->priv_data;
177
    AVIOContext *pb = s->pb;
178
    unsigned char block_type;
179 180 181
    int audio_length;
    int ret_value;

182
    if(vid->is_finished || url_feof(pb))
183
        return AVERROR(EIO);
184

185
    block_type = avio_r8(pb);
186
    switch(block_type){
187
        case PALETTE_BLOCK:
188
            avio_seek(pb, -1, SEEK_CUR);     // include block type
189 190
            ret_value = av_get_packet(pb, pkt, 3 * 256 + 1);
            if(ret_value != 3 * 256 + 1){
191
                av_free_packet(pkt);
192
                return AVERROR(EIO);
193
            }
194 195 196 197
            pkt->stream_index = 0;
            return ret_value;

        case FIRST_AUDIO_BLOCK:
198
            avio_rl16(pb);
199
            // soundblaster DAC used for sample rate, as on specification page (link above)
200
            s->streams[1]->codec->sample_rate = 1000000 / (256 - avio_r8(pb));
201
            s->streams[1]->codec->bit_rate = s->streams[1]->codec->channels * s->streams[1]->codec->sample_rate * s->streams[1]->codec->bits_per_coded_sample;
202
        case AUDIO_BLOCK:
203
            audio_length = avio_rl16(pb);
204 205
            ret_value = av_get_packet(pb, pkt, audio_length);
            pkt->stream_index = 1;
206
            return ret_value != audio_length ? AVERROR(EIO) : ret_value;
207

208 209 210
        case VIDEO_P_FRAME:
        case VIDEO_YOFF_P_FRAME:
        case VIDEO_I_FRAME:
211 212 213
            return read_frame(vid, pb, pkt, block_type, s,
                              s->streams[0]->codec->width * s->streams[0]->codec->height);

214
        case EOF_BLOCK:
215 216 217
            if(vid->nframes != 0)
                av_log(s, AV_LOG_VERBOSE, "reached terminating character but not all frames read.\n");
            vid->is_finished = 1;
218
            return AVERROR(EIO);
219 220 221 222 223 224
        default:
            av_log(s, AV_LOG_ERROR, "unknown block (character = %c, decimal = %d, hex = %x)!!!\n",
                   block_type, block_type, block_type); return -1;
    }
}

225
AVInputFormat ff_bethsoftvid_demuxer = {
226 227 228 229 230 231
    .name           = "bethsoftvid",
    .long_name      = NULL_IF_CONFIG_SMALL("Bethesda Softworks VID format"),
    .priv_data_size = sizeof(BVID_DemuxContext),
    .read_probe     = vid_probe,
    .read_header    = vid_read_header,
    .read_packet    = vid_read_packet,
232
};