2007-04-07 20:51:58 +00:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2009-02-01 02:00:19 +00:00
|
|
|
* @file libavformat/bethsoftvid.c
|
2007-04-07 20:51:58 +00:00
|
|
|
* @brief Bethesda Softworks VID (.vid) file demuxer
|
|
|
|
* @author Nicholas Tung [ntung (at. ntung com] (2007-03)
|
|
|
|
* @sa http://wiki.multimedia.cx/index.php?title=Bethsoft_VID
|
|
|
|
* @sa http://www.svatopluk.com/andux/docs/dfvid.html
|
|
|
|
*/
|
|
|
|
|
2009-01-11 22:19:48 +00:00
|
|
|
#include "libavutil/intreadwrite.h"
|
2007-04-07 20:51:58 +00:00
|
|
|
#include "avformat.h"
|
2008-05-09 11:56:36 +00:00
|
|
|
#include "libavcodec/bethsoftvideo.h"
|
2007-04-07 20:51:58 +00:00
|
|
|
|
|
|
|
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) */
|
2007-04-07 22:57:04 +00:00
|
|
|
int video_pts;
|
2007-04-07 20:51:58 +00:00
|
|
|
|
|
|
|
int is_finished;
|
|
|
|
|
|
|
|
} BVID_DemuxContext;
|
|
|
|
|
|
|
|
static int vid_probe(AVProbeData *p)
|
|
|
|
{
|
|
|
|
// little endian VID tag, file starts with "VID\0"
|
2007-04-08 11:34:15 +00:00
|
|
|
if (AV_RL32(p->buf) != MKTAG('V', 'I', 'D', 0))
|
2007-04-07 20:51:58 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return AVPROBE_SCORE_MAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vid_read_header(AVFormatContext *s,
|
|
|
|
AVFormatParameters *ap)
|
|
|
|
{
|
2007-04-07 22:55:15 +00:00
|
|
|
BVID_DemuxContext *vid = s->priv_data;
|
2007-11-21 07:41:00 +00:00
|
|
|
ByteIOContext *pb = s->pb;
|
2007-04-07 20:51:58 +00:00
|
|
|
AVStream *stream;
|
|
|
|
|
|
|
|
/* load main header. Contents:
|
|
|
|
* bytes: 'V' 'I' 'D'
|
|
|
|
* int16s: always_512, nframes, width, height, delay, always_14
|
|
|
|
*/
|
|
|
|
url_fseek(pb, 5, SEEK_CUR);
|
|
|
|
vid->nframes = get_le16(pb);
|
|
|
|
|
|
|
|
stream = av_new_stream(s, 0);
|
2007-04-07 22:41:45 +00:00
|
|
|
if (!stream)
|
2007-07-19 15:21:30 +00:00
|
|
|
return AVERROR(ENOMEM);
|
2007-04-07 20:51:58 +00:00
|
|
|
av_set_pts_info(stream, 32, 1, 60); // 16 ms increments, i.e. 60 fps
|
|
|
|
stream->codec->codec_type = CODEC_TYPE_VIDEO;
|
|
|
|
stream->codec->codec_id = CODEC_ID_BETHSOFTVID;
|
|
|
|
stream->codec->width = get_le16(pb);
|
|
|
|
stream->codec->height = get_le16(pb);
|
|
|
|
stream->codec->pix_fmt = PIX_FMT_PAL8;
|
|
|
|
vid->bethsoft_global_delay = get_le16(pb);
|
|
|
|
get_le16(pb);
|
|
|
|
|
|
|
|
// done with video codec, set up audio codec
|
|
|
|
stream = av_new_stream(s, 0);
|
2007-04-07 22:41:45 +00:00
|
|
|
if (!stream)
|
2007-07-19 15:21:30 +00:00
|
|
|
return AVERROR(ENOMEM);
|
2007-04-07 20:51:58 +00:00
|
|
|
stream->codec->codec_type = CODEC_TYPE_AUDIO;
|
|
|
|
stream->codec->codec_id = CODEC_ID_PCM_U8;
|
|
|
|
stream->codec->channels = 1;
|
|
|
|
stream->codec->sample_rate = 11025;
|
2008-09-08 14:24:59 +00:00
|
|
|
stream->codec->bits_per_coded_sample = 8;
|
|
|
|
stream->codec->bit_rate = stream->codec->channels * stream->codec->sample_rate * stream->codec->bits_per_coded_sample;
|
2007-04-07 20:51:58 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define BUFFER_PADDING_SIZE 1000
|
|
|
|
static int read_frame(BVID_DemuxContext *vid, ByteIOContext *pb, AVPacket *pkt,
|
|
|
|
uint8_t block_type, AVFormatContext *s, int npixels)
|
|
|
|
{
|
|
|
|
uint8_t * vidbuf_start = NULL;
|
|
|
|
int vidbuf_nbytes = 0;
|
2007-04-07 23:32:55 +00:00
|
|
|
int code;
|
2007-04-07 20:51:58 +00:00
|
|
|
int bytes_copied = 0;
|
|
|
|
int position;
|
2007-07-08 13:42:42 +00:00
|
|
|
unsigned int vidbuf_capacity;
|
2007-04-07 20:51:58 +00:00
|
|
|
|
|
|
|
vidbuf_start = av_malloc(vidbuf_capacity = BUFFER_PADDING_SIZE);
|
2007-04-07 22:41:45 +00:00
|
|
|
if(!vidbuf_start)
|
2007-07-19 15:21:30 +00:00
|
|
|
return AVERROR(ENOMEM);
|
2007-04-07 20:51:58 +00:00
|
|
|
|
|
|
|
// save the file position for the packet, include block type
|
|
|
|
position = url_ftell(pb) - 1;
|
|
|
|
|
|
|
|
vidbuf_start[vidbuf_nbytes++] = block_type;
|
|
|
|
|
|
|
|
// get the video delay (next int16), and set the presentation time
|
|
|
|
vid->video_pts += vid->bethsoft_global_delay + get_le16(pb);
|
|
|
|
|
|
|
|
// set the y offset if it exists (decoder header data should be in data section)
|
2007-04-07 23:10:22 +00:00
|
|
|
if(block_type == VIDEO_YOFF_P_FRAME){
|
2007-04-07 22:41:45 +00:00
|
|
|
if(get_buffer(pb, &vidbuf_start[vidbuf_nbytes], 2) != 2)
|
2007-04-07 22:47:55 +00:00
|
|
|
goto fail;
|
2007-04-07 20:51:58 +00:00
|
|
|
vidbuf_nbytes += 2;
|
|
|
|
}
|
|
|
|
|
2007-04-07 22:41:45 +00:00
|
|
|
do{
|
2007-04-07 20:51:58 +00:00
|
|
|
vidbuf_start = av_fast_realloc(vidbuf_start, &vidbuf_capacity, vidbuf_nbytes + BUFFER_PADDING_SIZE);
|
2007-04-07 22:41:45 +00:00
|
|
|
if(!vidbuf_start)
|
2007-07-19 15:21:30 +00:00
|
|
|
return AVERROR(ENOMEM);
|
2007-04-07 20:51:58 +00:00
|
|
|
|
2007-04-07 23:32:55 +00:00
|
|
|
code = get_byte(pb);
|
|
|
|
vidbuf_start[vidbuf_nbytes++] = code;
|
2007-04-07 20:51:58 +00:00
|
|
|
|
2007-04-07 23:32:55 +00:00
|
|
|
if(code >= 0x80){ // rle sequence
|
2007-04-07 23:10:22 +00:00
|
|
|
if(block_type == VIDEO_I_FRAME)
|
2007-04-07 22:41:45 +00:00
|
|
|
vidbuf_start[vidbuf_nbytes++] = get_byte(pb);
|
2007-04-07 23:32:55 +00:00
|
|
|
} else if(code){ // plain sequence
|
|
|
|
if(get_buffer(pb, &vidbuf_start[vidbuf_nbytes], code) != code)
|
2007-04-07 22:47:55 +00:00
|
|
|
goto fail;
|
2007-04-07 23:32:55 +00:00
|
|
|
vidbuf_nbytes += code;
|
2007-04-07 20:51:58 +00:00
|
|
|
}
|
2007-04-07 23:32:55 +00:00
|
|
|
bytes_copied += code & 0x7F;
|
2007-04-07 22:41:45 +00:00
|
|
|
if(bytes_copied == npixels){ // sometimes no stop character is given, need to keep track of bytes copied
|
2007-04-07 20:51:58 +00:00
|
|
|
// may contain a 0 byte even if read all pixels
|
2007-04-07 22:41:45 +00:00
|
|
|
if(get_byte(pb))
|
|
|
|
url_fseek(pb, -1, SEEK_CUR);
|
2007-04-07 20:51:58 +00:00
|
|
|
break;
|
|
|
|
}
|
2007-04-07 22:41:45 +00:00
|
|
|
if(bytes_copied > npixels)
|
2007-04-07 22:47:55 +00:00
|
|
|
goto fail;
|
2007-04-07 23:32:55 +00:00
|
|
|
} while(code);
|
2007-04-07 20:51:58 +00:00
|
|
|
|
|
|
|
// copy data into packet
|
2007-04-07 22:47:55 +00:00
|
|
|
if(av_new_packet(pkt, vidbuf_nbytes) < 0)
|
|
|
|
goto fail;
|
2007-04-07 20:51:58 +00:00
|
|
|
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;
|
2007-04-07 22:47:55 +00:00
|
|
|
fail:
|
|
|
|
av_free(vidbuf_start);
|
|
|
|
return -1;
|
2007-04-07 20:51:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int vid_read_packet(AVFormatContext *s,
|
|
|
|
AVPacket *pkt)
|
|
|
|
{
|
2007-04-07 22:55:15 +00:00
|
|
|
BVID_DemuxContext *vid = s->priv_data;
|
2007-11-21 07:41:00 +00:00
|
|
|
ByteIOContext *pb = s->pb;
|
2007-04-07 22:55:15 +00:00
|
|
|
unsigned char block_type;
|
2007-04-07 20:51:58 +00:00
|
|
|
int audio_length;
|
|
|
|
int ret_value;
|
|
|
|
|
2007-04-07 22:41:45 +00:00
|
|
|
if(vid->is_finished || url_feof(pb))
|
2007-07-19 15:23:32 +00:00
|
|
|
return AVERROR(EIO);
|
2007-04-07 20:51:58 +00:00
|
|
|
|
|
|
|
block_type = get_byte(pb);
|
2007-04-07 22:41:45 +00:00
|
|
|
switch(block_type){
|
2007-04-07 20:51:58 +00:00
|
|
|
case PALETTE_BLOCK:
|
|
|
|
url_fseek(pb, -1, SEEK_CUR); // include block type
|
2007-04-07 23:10:22 +00:00
|
|
|
ret_value = av_get_packet(pb, pkt, 3 * 256 + 1);
|
|
|
|
if(ret_value != 3 * 256 + 1){
|
2007-04-07 22:41:45 +00:00
|
|
|
av_free_packet(pkt);
|
2007-07-19 15:23:32 +00:00
|
|
|
return AVERROR(EIO);
|
2007-04-07 22:41:45 +00:00
|
|
|
}
|
2007-04-07 20:51:58 +00:00
|
|
|
pkt->stream_index = 0;
|
|
|
|
return ret_value;
|
|
|
|
|
|
|
|
case FIRST_AUDIO_BLOCK:
|
2007-04-07 22:55:15 +00:00
|
|
|
get_le16(pb);
|
2007-04-07 20:51:58 +00:00
|
|
|
// soundblaster DAC used for sample rate, as on specification page (link above)
|
|
|
|
s->streams[1]->codec->sample_rate = 1000000 / (256 - get_byte(pb));
|
2008-09-08 14:24:59 +00:00
|
|
|
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;
|
2007-04-07 20:51:58 +00:00
|
|
|
case AUDIO_BLOCK:
|
|
|
|
audio_length = get_le16(pb);
|
|
|
|
ret_value = av_get_packet(pb, pkt, audio_length);
|
|
|
|
pkt->stream_index = 1;
|
2008-05-06 09:16:36 +00:00
|
|
|
return ret_value != audio_length ? AVERROR(EIO) : ret_value;
|
2007-04-07 20:51:58 +00:00
|
|
|
|
2007-04-07 23:10:22 +00:00
|
|
|
case VIDEO_P_FRAME:
|
|
|
|
case VIDEO_YOFF_P_FRAME:
|
|
|
|
case VIDEO_I_FRAME:
|
2007-04-07 20:51:58 +00:00
|
|
|
return read_frame(vid, pb, pkt, block_type, s,
|
|
|
|
s->streams[0]->codec->width * s->streams[0]->codec->height);
|
|
|
|
|
2007-04-07 23:10:22 +00:00
|
|
|
case EOF_BLOCK:
|
2007-04-07 20:51:58 +00:00
|
|
|
if(vid->nframes != 0)
|
|
|
|
av_log(s, AV_LOG_VERBOSE, "reached terminating character but not all frames read.\n");
|
|
|
|
vid->is_finished = 1;
|
2007-07-19 15:23:32 +00:00
|
|
|
return AVERROR(EIO);
|
2007-04-07 20:51:58 +00:00
|
|
|
default:
|
|
|
|
av_log(s, AV_LOG_ERROR, "unknown block (character = %c, decimal = %d, hex = %x)!!!\n",
|
|
|
|
block_type, block_type, block_type); return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
AVInputFormat bethsoftvid_demuxer = {
|
|
|
|
"bethsoftvid",
|
2008-06-03 16:20:54 +00:00
|
|
|
NULL_IF_CONFIG_SMALL("Bethesda Softworks VID format"),
|
2007-04-07 20:51:58 +00:00
|
|
|
sizeof(BVID_DemuxContext),
|
|
|
|
vid_probe,
|
|
|
|
vid_read_header,
|
|
|
|
vid_read_packet,
|
|
|
|
};
|